Skip to content

Commit ffe6f4f

Browse files
committed
ref(build): rename package to createTarball
1 parent 6a478ef commit ffe6f4f

File tree

22 files changed

+22
-22
lines changed

22 files changed

+22
-22
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ jobs:
296296
path: ${{ env.CACHED_BUILD_PATHS }}
297297
key: ${{ env.BUILD_CACHE_KEY }}
298298
- name: Pack
299-
run: yarn package:changed
299+
run: yarn createTarball:changed
300300
- name: Archive artifacts
301301
uses: actions/upload-artifact@v2
302302
with:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"link:yarn": "lerna run --stream --concurrency 1 link:yarn",
1818
"lint": "lerna run --parallel lint",
1919
"lint:eslint": "lerna run --parallel lint:eslint",
20-
"package:changed": "lerna run package --since",
20+
"createTarball:changed": "lerna run createTarball --since",
2121
"prepublishOnly": "lerna run --stream --concurrency 1 prepublishOnly",
2222
"postpublish": "make publish-docs && lerna run --stream --concurrency 1 postpublish",
2323
"test": "lerna run --ignore @sentry-internal/browser-integration-tests --stream --concurrency 1 --sort test"

packages/angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"lint": "run-s lint:prettier lint:eslint",
5353
"lint:eslint": "eslint . --cache --cache-location '../../eslintcache/' --format stylish",
5454
"lint:prettier": "prettier --check \"{src,test}/**/*.ts\"",
55-
"package": "npm pack"
55+
"createTarball": "npm pack"
5656
},
5757
"volta": {
5858
"extends": "../../package.json"

packages/browser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
"lint": "run-s lint:prettier lint:eslint",
6666
"lint:eslint": "eslint . --cache --cache-location '../../eslintcache/' --format stylish",
6767
"lint:prettier": "prettier --check \"{src,test}/**/*.ts\"",
68-
"package": "npm pack",
68+
"createTarball": "npm pack",
6969
"size:check": "run-p size:check:es5 size:check:es6",
7070
"size:check:es5": "cat build/bundle.min.js | gzip -9 | wc -c | awk '{$1=$1/1024; print \"ES5: \",$1,\"kB\";}'",
7171
"size:check:es6": "cat build/bundle.es6.min.js | gzip -9 | wc -c | awk '{$1=$1/1024; print \"ES6: \",$1,\"kB\";}'",

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"lint": "run-s lint:prettier lint:eslint",
4343
"lint:eslint": "eslint . --cache --cache-location '../../eslintcache/' --format stylish",
4444
"lint:prettier": "prettier --check \"{src,test}/**/*.ts\"",
45-
"package": "npm pack",
45+
"createTarball": "npm pack",
4646
"test": "jest",
4747
"test:watch": "jest --watch",
4848
"version": "node ../../scripts/versionbump.js src/version.ts"

packages/ember/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel lint:*",
2323
"lint:hbs": "ember-template-lint .",
2424
"lint:js": "eslint . --cache --cache-location '../../eslintcache/'",
25-
"package": "run-s prepack && npm pack && run-s postpack",
25+
"createTarball": "run-s prepack && npm pack && run-s postpack",
2626
"prepack": "ember ts:precompile",
2727
"postpack": "ember ts:clean",
2828
"start": "ember serve",

packages/eslint-config-sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"link:yarn": "yarn link",
4040
"lint": "prettier --check \"**/*.js\"",
4141
"fix": "prettier --write \"**/*.js\"",
42-
"package": "npm pack",
42+
"createTarball": "npm pack",
4343
"circularDepCheck": "madge --circular src/index.js"
4444
},
4545
"volta": {

packages/eslint-plugin-sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"lint:eslint": "eslint . --cache --cache-location '../../eslintcache/' --format stylish",
3434
"lint:prettier": "prettier --check \"{src,test}/**/*.js\"",
3535
"test": "mocha test --recursive",
36-
"package": "npm pack",
36+
"createTarball": "npm pack",
3737
"circularDepCheck": "madge --circular src/index.js"
3838
},
3939
"volta": {

packages/gatsby/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
"lint": "run-s lint:prettier lint:eslint",
6060
"lint:eslint": "eslint . --cache --cache-location '../../eslintcache/' --format stylish",
6161
"lint:prettier": "prettier --check \"{src,test}/**/*.ts\"",
62-
"package": "npm pack",
62+
"createTarball": "npm pack",
6363
"test": "jest",
6464
"test:watch": "jest --watch"
6565
},

packages/hub/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"lint": "run-s lint:prettier lint:eslint",
4141
"lint:eslint": "eslint . --cache --cache-location '../../eslintcache/' --format stylish",
4242
"lint:prettier": "prettier --check \"{src,test}/**/*.ts\"",
43-
"package": "npm pack",
43+
"createTarball": "npm pack",
4444
"test": "jest",
4545
"test:watch": "jest --watch"
4646
},

packages/integrations/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"lint": "run-s lint:prettier lint:eslint",
4646
"lint:eslint": "eslint . --cache --cache-location '../../eslintcache/' --format stylish",
4747
"lint:prettier": "prettier --check \"{src,test}/**/*.ts\"",
48-
"package": "npm pack",
48+
"createTarball": "npm pack",
4949
"test": "jest",
5050
"test:watch": "jest --watch"
5151
},

packages/minimal/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"lint": "run-s lint:prettier lint:eslint",
4141
"lint:eslint": "eslint . --cache --cache-location '../../eslintcache/' --format stylish",
4242
"lint:prettier": "prettier --check \"{src,test}/**/*.ts\"",
43-
"package": "npm pack",
43+
"createTarball": "npm pack",
4444
"test": "jest",
4545
"test:watch": "jest --watch"
4646
},

packages/nextjs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
"lint": "run-s lint:prettier lint:eslint",
6363
"lint:eslint": "eslint . --cache --cache-location '../../eslintcache/' --format stylish",
6464
"lint:prettier": "prettier --check \"{src,test}/**/*.ts\"",
65-
"package": "npm pack",
65+
"createTarball": "npm pack",
6666
"test": "run-s test:unit",
6767
"test:all": "run-s test:unit test:integration",
6868
"test:unit": "jest",

packages/node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"lint": "run-s lint:prettier lint:eslint",
5454
"lint:eslint": "eslint . --cache --cache-location '../../eslintcache/' --format stylish",
5555
"lint:prettier": "prettier --check \"{src,test}/**/*.ts\"",
56-
"package": "npm pack",
56+
"createTarball": "npm pack",
5757
"test": "run-s test:jest test:express test:webpack test:release-health",
5858
"test:express": "node test/manual/express-scope-separation/start.js",
5959
"test:jest": "jest",

packages/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
"lint": "run-s lint:prettier lint:eslint",
7070
"lint:eslint": "eslint . --cache --cache-location '../../eslintcache/' --format stylish",
7171
"lint:prettier": "prettier --check \"{src,test}/**/*.ts\"",
72-
"package": "npm pack",
72+
"createTarball": "npm pack",
7373
"test": "jest",
7474
"test:watch": "jest --watch"
7575
},

packages/serverless/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
"lint": "run-s lint:prettier lint:eslint",
6060
"lint:eslint": "eslint . --cache --cache-location '../../eslintcache/' --format stylish",
6161
"lint:prettier": "prettier --check \"{src,test}/**/*.ts\"",
62-
"package": "npm pack",
62+
"createTarball": "npm pack",
6363
"test": "jest",
6464
"test:watch": "jest --watch"
6565
},

packages/tracing/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"lint": "run-s lint:prettier lint:eslint",
5151
"lint:eslint": "eslint . --cache --cache-location '../../eslintcache/' --format stylish",
5252
"lint:prettier": "prettier --check \"{src,test}/**/*.ts\"",
53-
"package": "npm pack",
53+
"createTarball": "npm pack",
5454
"test": "jest",
5555
"test:watch": "jest --watch"
5656
},

packages/types/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"fix": "run-s fix:eslint fix:prettier",
3434
"fix:eslint": "eslint . --format stylish --fix",
3535
"fix:prettier": "prettier --write \"{src,test}/**/*.ts\"",
36-
"package": "npm pack"
36+
"createTarball": "npm pack"
3737
},
3838
"volta": {
3939
"extends": "../../package.json"

packages/typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
},
2121
"scripts": {
2222
"link:yarn": "yarn link",
23-
"package": "npm pack"
23+
"createTarball": "npm pack"
2424
},
2525
"volta": {
2626
"extends": "../../package.json"

packages/utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"lint": "run-s lint:prettier lint:eslint",
4444
"lint:eslint": "eslint . --cache --cache-location '../../eslintcache/' --format stylish",
4545
"lint:prettier": "prettier --check \"{src,test}/**/*.ts\"",
46-
"package": "npm pack",
46+
"createTarball": "npm pack",
4747
"test": "jest",
4848
"test:watch": "jest --watch",
4949
"test:package": "node test/types/index.js"

packages/vue/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"lint": "run-s lint:prettier lint:eslint",
5353
"lint:eslint": "eslint . --cache --cache-location '../../eslintcache/' --format stylish",
5454
"lint:prettier": "prettier --check \"{src,test}/**/*.ts\"",
55-
"package": "npm pack",
55+
"createTarball": "npm pack",
5656
"test": "jest",
5757
"test:watch": "jest --watch"
5858
},

packages/wasm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"lint": "run-s lint:prettier lint:eslint",
5050
"lint:eslint": "eslint . --cache --cache-location '../../eslintcache/' --format stylish",
5151
"lint:prettier": "prettier --check \"{src,test}/**/*.ts\"",
52-
"package": "npm pack",
52+
"createTarball": "npm pack",
5353
"test": "node test/scripts/ensure-browser-bundle.js && cross-env PORT=1337 jest",
5454
"test:watch": "jest --watch"
5555
},

0 commit comments

Comments
 (0)