From b7b68eeb47b154bc786b0cea4316cd3f3d33732c Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Mon, 29 Dec 2025 14:29:25 +0100 Subject: [PATCH] :fire: Remove `npx` prefix on package.json scripts --- plugins/package.json | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/plugins/package.json b/plugins/package.json index 4399a9ab68..fb87a5d91f 100644 --- a/plugins/package.json +++ b/plugins/package.json @@ -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": {