fix: Invoke nx with npx
This commit is contained in:
parent
e3b16097ac
commit
1861d30b30
1 changed files with 7 additions and 7 deletions
14
package.json
14
package.json
|
@ -17,15 +17,15 @@
|
|||
"org": "cd sites/org && npm run start",
|
||||
"dev": "cd sites/dev && npm run start",
|
||||
"kickstart": "npm install && husky && npm run buildall && npm run tips",
|
||||
"cleanall": "nx run-many --target=clean",
|
||||
"test": "nx run-many --target=test",
|
||||
"e2e": "nx run-many --target=e2e",
|
||||
"cleanall": "npx nx run-many --target=clean",
|
||||
"test": "npx nx run-many --target=test",
|
||||
"e2e": "npx nx run-many --target=e2e",
|
||||
"prettier": "npx prettier --write 'config/*' 'config/**/*' 'packages/**/src/*.mjs' 'packages/i18n/src/locales/**/*.*' 'packages/**/tests/*.mjs' 'packages/react-components/src/**/*.mjs'",
|
||||
"reconfigure": "all-contributors generate && node --experimental-json-modules --no-warnings scripts/reconfigure.mjs",
|
||||
"sitebuildconfigure": "SITEBUILD=1 node --experimental-json-modules --no-warnings scripts/reconfigure.mjs",
|
||||
"buildall": "nx run-many --target=build:all",
|
||||
"build": "nx run-many --target=buildall",
|
||||
"wbuild": "nx run-many --target=wbuild:all",
|
||||
"buildall": "npx nx run-many --target=build:all",
|
||||
"build": "npx nx run-many --target=buildall",
|
||||
"wbuild": "npx nx run-many --target=wbuild:all",
|
||||
"testall": "node scripts/testall.js",
|
||||
"lint": "LINTER=1 nx run-many --target=lint -- ",
|
||||
"qa": "npm run qa:prettier && npm run qa:lint",
|
||||
|
@ -42,7 +42,7 @@
|
|||
"checkdocs": "remark markdown --quiet --frail",
|
||||
"strapi:translate": "node scripts/strapi-en-to-other.mjs",
|
||||
"fixdocs": "remark markdown --quiet --frail --output",
|
||||
"wbuildall": "nx run-many --target=wbuildall"
|
||||
"wbuildall": "npx nx run-many --target=wbuildall"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue