Skip to content

Commit 2082f6f

Browse files
authored
chore: Use package, not build (#69)
chore: use package not build Signed-off-by: Todd Baert <[email protected]>
1 parent 5847db4 commit 2082f6f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/release-please.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
if: ${{ steps.release.outputs.releases_created }}
3131
run: |
3232
npm install
33-
npm run build
33+
npm run package
3434
3535
# Release Please has already incremented versions and published tags, so we just
3636
# need to publish all unpublished versions to NPM here

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"generate-hook": "nx workspace-generator open-feature hook",
77
"generate-provider": "nx workspace-generator open-feature provider",
88
"test": "nx run-many --all --target=test",
9-
"build": "npx nx run-many --all --target=build",
9+
"package": "npx nx run-many --all --target=package",
1010
"publish": "npx nx run-many --all --target=publish"
1111
},
1212
"private": true,

0 commit comments

Comments
 (0)