Skip to content

Commit 271e28c

Browse files
authored
Merge pull request #5187 from Shopify/rename-bundle-script
Rename bundle to bundle-for-release
2 parents 9a836cc + 564c391 commit 271e28c

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"type-check": "nx run-many --target=type-check --all --skip-nx-cache",
2323
"type-check:affected": "nx affected --target=type-check",
2424
"build": "nx run-many --target=build --all --skip-nx-cache",
25-
"bundle": "nx run-many --target=bundle --all --skip-nx-cache",
25+
"bundle-for-release": "nx run-many --target=bundle --all --skip-nx-cache",
2626
"build:affected": "nx affected --target=build",
2727
"refresh-templates": "nx run-many --target=refresh-templates --all --skip-nx-cache",
2828
"refresh-manifests": "nx run-many --target=refresh-manifests --all --skip-nx-cache && bin/prettify-manifests.js && pnpm refresh-readme",

shipit.nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ deploy:
2222
- bash -i -c "if [ -f '.changeset/pre.json' ]; then npm_config_loglevel=verbose pnpm changeset pre exit; fi"
2323
- bash -i -c "npm_config_loglevel=verbose pnpm changeset version --snapshot nightly"
2424
- bash -i -c "npm_config_loglevel=verbose pnpm changeset-manifests"
25-
- bash -i -c "npm_config_loglevel=verbose NODE_ENV=production pnpm bundle"
25+
- bash -i -c "npm_config_loglevel=verbose NODE_ENV=production pnpm bundle-for-release"
2626
- bash -i -c "npm_config_loglevel=verbose node bin/create-cli-duplicate-package.js"
2727
- bash -i -c "npm_config_loglevel=verbose pnpm changeset publish --tag nightly"
2828
- bash -i -c "./bin/package.js"

shipit.production.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies:
1212
deploy:
1313
override:
1414
- bash -i -c "npm_config_loglevel=verbose pnpm clean"
15-
- bash -i -c "npm_config_loglevel=verbose NODE_ENV=production pnpm bundle"
15+
- bash -i -c "npm_config_loglevel=verbose NODE_ENV=production pnpm bundle-for-release"
1616
- bash -i -c "npm_config_loglevel=verbose node bin/create-cli-duplicate-package.js"
1717
- bash -i -c "npm_config_loglevel=verbose pnpm changeset publish"
1818
- bash -i -c "./bin/package.js"

shipit.stable.yml.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies:
1212
deploy:
1313
override:
1414
- bash -i -c "npm_config_loglevel=verbose pnpm clean"
15-
- bash -i -c "npm_config_loglevel=verbose NODE_ENV=production pnpm bundle"
15+
- bash -i -c "npm_config_loglevel=verbose NODE_ENV=production pnpm bundle-for-release"
1616
- bash -i -c "npm_config_loglevel=verbose node bin/create-cli-duplicate-package.js"
1717
- bash -i -c "npm_config_loglevel=verbose pnpm changeset publish"
1818
# When this is no longer the latest stable version, do 2 things:

shipit.stable_3_71.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies:
1212
deploy:
1313
override:
1414
- bash -i -c "npm_config_loglevel=verbose pnpm clean"
15-
- bash -i -c "npm_config_loglevel=verbose NODE_ENV=production pnpm bundle"
15+
- bash -i -c "npm_config_loglevel=verbose NODE_ENV=production pnpm bundle-for-release"
1616
- bash -i -c "npm_config_loglevel=verbose node bin/create-cli-duplicate-package.js"
1717
- bash -i -c "npm_config_loglevel=verbose pnpm changeset publish"
1818
# When this is no longer the latest stable version, do 2 things:

0 commit comments

Comments
 (0)