🔥 Remove npx prefix on package.json scripts

This commit is contained in:
Andrey Antukh
2025-12-29 14:29:25 +01:00
parent 9bbeb657f8
commit b7b68eeb47

View File

@@ -5,30 +5,30 @@
"license": "MIT",
"scripts": {
"start": "npm run start:app:runtime",
"start:app:runtime": "concurrently --kill-others --names build,server \"npx nx run plugins-runtime:build --watch --mode development\" \"npx nx run plugins-runtime:preview\"",
"start:app:styles-example": "npx nx run example-styles:serve --host 0.0.0.0 --port 4201",
"start:app:runtime": "concurrently --kill-others --names build,server \"nx run plugins-runtime:build --watch --mode development\" \"nx run plugins-runtime:preview\"",
"start:app:styles-example": "nx run example-styles:serve --host 0.0.0.0 --port 4201",
"start:plugin:all": "concurrently --kill-others \"npm:start:plugin:*(!all)\"",
"start:plugin:poc-state": "npx nx run poc-state-plugin:init",
"start:plugin:contrast": "npx nx run contrast-plugin:init",
"start:plugin:icons": "npx nx run icons-plugin:init",
"start:plugin:loremipsum": "npx nx run lorem-ipsum-plugin:init",
"start:plugin:palette": "npx nx run create-palette-plugin:build --watch & npx nx run create-palette-plugin:preview",
"start:plugin:table": "npx nx run table-plugin:init",
"start:plugin:renamelayers": "npx nx run rename-layers-plugin:init",
"start:plugin:colors-to-tokens": "npx nx run colors-to-tokens-plugin:init",
"build": "npx nx build plugins-runtime --emptyOutDir=true",
"build:plugins": "npx nx run-many -t build --parallel -p tag:type:plugin --exclude=poc-state-plugin",
"build:styles-example": "npx nx run example-styles:build",
"start:plugin:poc-state": "nx run poc-state-plugin:init",
"start:plugin:contrast": "nx run contrast-plugin:init",
"start:plugin:icons": "nx run icons-plugin:init",
"start:plugin:loremipsum": "nx run lorem-ipsum-plugin:init",
"start:plugin:palette": "nx run create-palette-plugin:build --watch & nx run create-palette-plugin:preview",
"start:plugin:table": "nx run table-plugin:init",
"start:plugin:renamelayers": "nx run rename-layers-plugin:init",
"start:plugin:colors-to-tokens": "nx run colors-to-tokens-plugin:init",
"build": "nx build plugins-runtime --emptyOutDir=true",
"build:plugins": "nx run-many -t build --parallel -p tag:type:plugin --exclude=poc-state-plugin",
"build:styles-example": "nx run example-styles:build",
"lint": "nx run-many --all --target=lint --parallel",
"format": "npx nx format:write --libs-and-apps",
"format:check": "npx nx format:check --libs-and-apps",
"lint:affected": "npx nx affected --target=lint",
"format": "nx format:write --libs-and-apps",
"format:check": "nx format:check --libs-and-apps",
"lint:affected": "nx affected --target=lint",
"test": "nx run-many -t test --parallel -p plugins-runtime lorem-ipsum-plugin colors-to-tokens-plugin",
"test:e2e": "npx nx test e2e",
"test:e2e": "nx test e2e",
"registry": "nx local-registry",
"prepare": "husky",
"create:api-docs": "npx typedoc --tsconfig libs/plugins-runtime/tsconfig.lib.json --customCss ./tools/typedoc.css",
"release": "npx tsx ./tools/scripts/publish.ts"
"create:api-docs": "typedoc --tsconfig libs/plugins-runtime/tsconfig.lib.json --customCss ./tools/typedoc.css",
"release": "tsx ./tools/scripts/publish.ts"
},
"private": true,
"devDependencies": {