-
-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix: dependabot security fixes #356
base: main
Are you sure you want to change the base?
Changes from 20 commits
f78da30
3a1173d
e8f48eb
d0314c6
007eaec
dee1c1d
ff4e1b6
c937654
c281a59
e4a2aba
9fb284d
fa924e6
faa19e5
38ddb8e
5ddc33a
9c53a21
cbba980
cac2a4f
722418c
ff9c07e
85a2a8c
44a3e5f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -74,5 +74,8 @@ package-lock.json | |
# Generated Lockfiles | ||
Cartfile.resolved | ||
|
||
# Yarn cache | ||
.yarn | ||
|
||
# Yalc | ||
sample/yalc.lock |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,47 +29,48 @@ | |
"@sentry/hub": "7.119.1", | ||
"@sentry/types": "7.119.1", | ||
"@sentry/utils": "7.119.1", | ||
"@sentry/wizard": "^3.32.0" | ||
"@sentry/wizard": "^3.34.2" | ||
}, | ||
"devDependencies": { | ||
"@jest/types": "^26.0.0", | ||
"@rollup/plugin-commonjs": "^28.0.1", | ||
"@rollup/plugin-node-resolve": "^15.3.0", | ||
"@rollup/plugin-terser": "^0.4.4", | ||
"@rollup/plugin-typescript": "^12.1.1", | ||
Comment on lines
+36
to
+39
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since we upgraded the build tooling, is the built shipped JS still the same or where there any changes introduced? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I did a diff check and no break changes were introduced, the only changes were just the ones made on the PR in regard to code formatting. |
||
"@sentry-internal/eslint-config-sdk": "7.119.1", | ||
"@sentry-internal/typescript": "7.119.1", | ||
"@types/cordova": "0.0.34", | ||
"@types/jest": "^24.0.18", | ||
"@types/jest": "^26.0.24", | ||
"@types/node": "^12.7.5", | ||
"codecov": "^3.5.0", | ||
"eslint": "7.6.0", | ||
"jest": "^24.9.0", | ||
"npm-run-all": "^4.1.5", | ||
"prettier": "^1.18.2", | ||
"@types/prettier": "<2.6.0", | ||
"eslint": "^7.13.0", | ||
"jest": "^26.6.3", | ||
"json-schema": "^0.4.0", | ||
"prettier": "^3.3.3", | ||
"prettier-check": "^2.0.0", | ||
"replace-in-file": "^4.1.3", | ||
"rimraf": "^3.0.0", | ||
"replace-in-file": "^8.2.0", | ||
"rollup": "^2.79.2", | ||
"rollup-plugin-commonjs": "^9.3.4", | ||
"rollup-plugin-node-resolve": "^4.2.3", | ||
"rollup-plugin-terser": "^4.0.4", | ||
"rollup-plugin-typescript2": "^0.21.0", | ||
"ts-jest": "^24.1.0", | ||
"typescript": "^3.6.3" | ||
"ts-jest": "^26.5.0", | ||
"typescript": "^3.6.3", | ||
"yarn": "^1.22.22" | ||
}, | ||
"scripts": { | ||
"build:bundle": "rollup --config", | ||
"build:typescript": "tsc -p tsconfig.build.json", | ||
"build": "run-s clean build:typescript build:bundle", | ||
lucas-zimerman marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"build": "yarn run clean && yarn run build:typescript && yarn run build:bundle", | ||
"clean": "rimraf dist coverage", | ||
"jest": "jest", | ||
"test:watch": "jest --watch", | ||
"test": "jest", | ||
"codecov": "codecov", | ||
"lint": "run-s lint:prettier lint:eslint", | ||
"lint": "yarn run lint:prettier && yarn run lint:eslint", | ||
"lint:prettier": "prettier --check \"{src,test}/**/*.ts\"", | ||
"lint:eslint": "eslint . --cache --format stylish", | ||
"fix": "run-s fix:eslint fix:prettier", | ||
"fix": "yarn run fix:eslint && yarn run fix:prettier", | ||
"fix:prettier": "prettier --write \"{src,test}/**/*.ts\"", | ||
"fix:eslint": "eslint . --format stylish --fix", | ||
"preversion:changelog": "grep -q -F \"## v$npm_package_version\" CHANGELOG.md", | ||
"version:all": "run-s preversion:changelog version:bump test", | ||
"version:all": "yarn run preversion:changelog && yarn run version:bump && yarn run test", | ||
"version:bump": "node ./scripts/versionbump.js && git add -A" | ||
}, | ||
"jest": { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is the dangerfile.js excluded?