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",
|
"org": "cd sites/org && npm run start",
|
||||||
"dev": "cd sites/dev && npm run start",
|
"dev": "cd sites/dev && npm run start",
|
||||||
"kickstart": "npm install && husky && npm run buildall && npm run tips",
|
"kickstart": "npm install && husky && npm run buildall && npm run tips",
|
||||||
"cleanall": "nx run-many --target=clean",
|
"cleanall": "npx nx run-many --target=clean",
|
||||||
"test": "nx run-many --target=test",
|
"test": "npx nx run-many --target=test",
|
||||||
"e2e": "nx run-many --target=e2e",
|
"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'",
|
"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",
|
"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",
|
"sitebuildconfigure": "SITEBUILD=1 node --experimental-json-modules --no-warnings scripts/reconfigure.mjs",
|
||||||
"buildall": "nx run-many --target=build:all",
|
"buildall": "npx nx run-many --target=build:all",
|
||||||
"build": "nx run-many --target=buildall",
|
"build": "npx nx run-many --target=buildall",
|
||||||
"wbuild": "nx run-many --target=wbuild:all",
|
"wbuild": "npx nx run-many --target=wbuild:all",
|
||||||
"testall": "node scripts/testall.js",
|
"testall": "node scripts/testall.js",
|
||||||
"lint": "LINTER=1 nx run-many --target=lint -- ",
|
"lint": "LINTER=1 nx run-many --target=lint -- ",
|
||||||
"qa": "npm run qa:prettier && npm run qa:lint",
|
"qa": "npm run qa:prettier && npm run qa:lint",
|
||||||
|
@ -42,7 +42,7 @@
|
||||||
"checkdocs": "remark markdown --quiet --frail",
|
"checkdocs": "remark markdown --quiet --frail",
|
||||||
"strapi:translate": "node scripts/strapi-en-to-other.mjs",
|
"strapi:translate": "node scripts/strapi-en-to-other.mjs",
|
||||||
"fixdocs": "remark markdown --quiet --frail --output",
|
"fixdocs": "remark markdown --quiet --frail --output",
|
||||||
"wbuildall": "nx run-many --target=wbuildall"
|
"wbuildall": "npx nx run-many --target=wbuildall"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue