1
0
Fork 0

fix: Invoke nx with npx

This commit is contained in:
joostdecock 2024-12-10 13:57:57 +01:00
parent e3b16097ac
commit 1861d30b30

View file

@ -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",