File tree 9 files changed +9
-9
lines changed
9 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 93
93
"clean" : " rimraf build dist-awslambda-layer coverage sentry-serverless-*.tgz" ,
94
94
"fix" : " eslint . --format stylish --fix" ,
95
95
"lint" : " eslint . --format stylish" ,
96
- "lint:es-compatibility" : " es-check es2020 ./build/npm/cjs/*.js && es-check es2020 ./build/npm/esm/*.js --module" ,
96
+ "lint:es-compatibility" : " es-check es2022 ./build/npm/cjs/*.js && es-check es2022 ./build/npm/esm/*.js --module" ,
97
97
"test" : " vitest run" ,
98
98
"test:watch" : " vitest --watch" ,
99
99
"yalc:publish" : " yalc publish --push --sig"
Original file line number Diff line number Diff line change 62
62
"clean" : " rimraf build coverage sentry-bun-*.tgz" ,
63
63
"fix" : " eslint . --format stylish --fix" ,
64
64
"lint" : " eslint . --format stylish" ,
65
- "lint:es-compatibility" : " es-check es2020 ./build/cjs/*.js && es-check es2020 ./build/esm/*.js --module" ,
65
+ "lint:es-compatibility" : " es-check es2022 ./build/cjs/*.js && es-check es2022 ./build/esm/*.js --module" ,
66
66
"install:bun" : " node ./scripts/install-bun.js" ,
67
67
"test" : " run-s install:bun test:bun" ,
68
68
"test:bun" : " bun test" ,
Original file line number Diff line number Diff line change 80
80
"clean" : " rimraf build coverage sentry-cloudflare-*.tgz" ,
81
81
"fix" : " eslint . --format stylish --fix" ,
82
82
"lint" : " eslint . --format stylish" ,
83
- "lint:es-compatibility" : " es-check es2020 ./build/cjs/*.js && es-check es2020 ./build/esm/*.js --module" ,
83
+ "lint:es-compatibility" : " es-check es2022 ./build/cjs/*.js && es-check es2022 ./build/esm/*.js --module" ,
84
84
"test" : " yarn test:unit" ,
85
85
"test:unit" : " vitest run" ,
86
86
"test:watch" : " vitest --watch" ,
Original file line number Diff line number Diff line change 39
39
"fix" : " eslint . --format stylish --fix" ,
40
40
"prelint" : " yarn deno-types" ,
41
41
"lint" : " eslint . --format stylish" ,
42
- "lint:es-compatibility" : " es-check es2020 ./build/esm/*.js --module" ,
42
+ "lint:es-compatibility" : " es-check es2022 ./build/esm/*.js --module" ,
43
43
"install:deno" : " node ./scripts/install-deno.mjs" ,
44
44
"test" : " run-s install:deno deno-types test:unit" ,
45
45
"test:unit" : " deno test --allow-read --allow-run --no-check" ,
Original file line number Diff line number Diff line change 74
74
"clean" : " rimraf build coverage sentry-google-cloud-*.tgz" ,
75
75
"fix" : " eslint . --format stylish --fix" ,
76
76
"lint" : " eslint . --format stylish" ,
77
- "lint:es-compatibility" : " es-check es2020 ./build/cjs/*.js && es-check es2020 ./build/esm/*.js --module" ,
77
+ "lint:es-compatibility" : " es-check es2022 ./build/cjs/*.js && es-check es2022 ./build/esm/*.js --module" ,
78
78
"test" : " vitest run" ,
79
79
"test:watch" : " vitest --watch" ,
80
80
"yalc:publish" : " yalc publish --push --sig"
Original file line number Diff line number Diff line change 77
77
"clean" : " rimraf build coverage sentry-nestjs-*.tgz ./*.d.ts ./*.d.ts.map" ,
78
78
"fix" : " eslint . --format stylish --fix" ,
79
79
"lint" : " eslint . --format stylish" ,
80
- "lint:es-compatibility" : " es-check es2020 ./build/cjs/*.js && es-check es2020 ./build/esm/*.js --module" ,
80
+ "lint:es-compatibility" : " es-check es2022 ./build/cjs/*.js && es-check es2022 ./build/esm/*.js --module" ,
81
81
"test" : " vitest run" ,
82
82
"test:watch" : " vitest --watch" ,
83
83
"yalc:publish" : " yalc publish --push --sig"
Original file line number Diff line number Diff line change 119
119
"clean" : " rimraf build coverage sentry-node-*.tgz" ,
120
120
"fix" : " eslint . --format stylish --fix" ,
121
121
"lint" : " eslint . --format stylish" ,
122
- "lint:es-compatibility" : " es-check es2020 ./build/cjs/*.js && es-check es2020 ./build/esm/*.js --module" ,
122
+ "lint:es-compatibility" : " es-check es2022 ./build/cjs/*.js && es-check es2022 ./build/esm/*.js --module" ,
123
123
"test" : " yarn test:unit" ,
124
124
"test:unit" : " vitest run" ,
125
125
"test:watch" : " vitest --watch" ,
Original file line number Diff line number Diff line change 73
73
"clean" : " rimraf build coverage sentry-opentelemetry-*.tgz" ,
74
74
"fix" : " eslint . --format stylish --fix" ,
75
75
"lint" : " eslint . --format stylish" ,
76
- "lint:es-compatibility" : " es-check es2020 ./build/cjs/*.js && es-check es2020 ./build/esm/*.js --module" ,
76
+ "lint:es-compatibility" : " es-check es2022 ./build/cjs/*.js && es-check es2022 ./build/esm/*.js --module" ,
77
77
"test" : " yarn test:unit" ,
78
78
"test:unit" : " vitest run" ,
79
79
"test:watch" : " vitest --watch" ,
Original file line number Diff line number Diff line change 46
46
"scripts" : {
47
47
"clean" : " rm -rf build && rm -rf lib" ,
48
48
"lint" : " eslint . --format stylish" ,
49
- "lint:es-compatibility" : " es-check es2020 ./lib/cjs/*.js && es-check es2020 ./lib/esm/*.js --module" ,
49
+ "lint:es-compatibility" : " es-check es2022 ./lib/cjs/*.js && es-check es2022 ./lib/esm/*.js --module" ,
50
50
"fix" : " eslint . --format stylish --fix" ,
51
51
"build" : " yarn build:lib" ,
52
52
"build:lib" : " yarn build:types && rollup -c rollup.npm.config.mjs" ,
You can’t perform that action at this time.
0 commit comments