Skip to content

Commit 0d348ab

Browse files
committed
fix: delete unnecessary pnpx
1 parent efa7510 commit 0d348ab

File tree

19 files changed

+3944
-4802
lines changed

19 files changed

+3944
-4802
lines changed

chrome-extension/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"type": "module",
66
"scripts": {
77
"clean:node_modules": "pnpx rimraf node_modules",
8-
"clean:turbo": "pnpx rimraf .turbo",
9-
"clean": "pnpm clean:node_modules && pnpm clean:turbo",
8+
"clean:turbo": "rimraf .turbo",
9+
"clean": "pnpm clean:turbo && pnpm clean:node_modules",
1010
"build": "vite build",
1111
"dev": "cross-env __DEV__=true vite build --mode development",
1212
"test": "vitest run",

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
},
1010
"type": "module",
1111
"scripts": {
12-
"clean:bundle": "pnpx rimraf dist && pnpx rimraf dist-zip && pnpx turbo clean:bundle",
13-
"clean:node_modules": "pnpx turbo daemon stop && pnpx rimraf node_modules && pnpx turbo clean:node_modules",
14-
"clean:turbo": "pnpx turbo daemon stop && pnpx rimraf .turbo && pnpx turbo clean:turbo",
15-
"clean": "pnpm clean:bundle && pnpm clean:node_modules && pnpm clean:turbo",
12+
"clean:bundle": "rimraf dist && rimraf dist-zip && turbo clean:bundle",
13+
"clean:node_modules": "turbo daemon stop && pnpx rimraf node_modules && pnpx turbo clean:node_modules",
14+
"clean:turbo": "turbo daemon stop && rimraf .turbo && turbo clean:turbo",
15+
"clean": "pnpm clean:bundle && pnpm clean:turbo && pnpm clean:node_modules",
1616
"clean:install": "pnpm clean:node_modules && pnpm install --frozen-lockfile",
1717
"build": "pnpm clean:bundle && turbo ready && turbo build",
1818
"build:firefox": "pnpm clean:bundle && turbo ready && cross-env __FIREFOX__=true turbo build",

packages/dev-utils/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
"module": "dist/index.js",
1212
"types": "index.ts",
1313
"scripts": {
14-
"clean:bundle": "pnpx rimraf dist",
14+
"clean:bundle": "rimraf dist",
1515
"clean:node_modules": "pnpx rimraf node_modules",
16-
"clean:turbo": "pnpx rimraf .turbo",
16+
"clean:turbo": "rimraf .turbo",
1717
"clean": "pnpm clean:bundle && pnpm clean:node_modules && pnpm clean:turbo",
1818
"ready": "tsc",
1919
"lint": "eslint . --ext .ts,.tsx",

packages/hmr/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
"module": "dist/index.js",
1212
"types": "index.ts",
1313
"scripts": {
14-
"clean:bundle": "pnpx rimraf dist && pnpx rimraf build",
14+
"clean:bundle": "rimraf dist && pnpx rimraf build",
1515
"clean:node_modules": "pnpx rimraf node_modules",
16-
"clean:turbo": "pnpx rimraf .turbo",
16+
"clean:turbo": "rimraf .turbo",
1717
"clean": "pnpm clean:bundle && pnpm clean:node_modules && pnpm clean:turbo",
1818
"build:tsc": "tsc -b tsconfig.build.json",
1919
"build:rollup": "rollup --config rollup.config.mjs",

packages/i18n/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"types": "index.ts",
1111
"main": "./dist/index.js",
1212
"scripts": {
13-
"clean:bundle": "pnpx rimraf dist",
13+
"clean:bundle": "rimraf dist",
1414
"clean:node_modules": "pnpx rimraf node_modules",
15-
"clean:turbo": "pnpx rimraf .turbo",
15+
"clean:turbo": "rimraf .turbo",
1616
"clean": "pnpm clean:bundle && pnpm clean:node_modules && pnpm clean:turbo",
1717
"genenrate-i8n": "node genenrate-i18n.mjs",
1818
"ready": "pnpm genenrate-i8n && node build.dev.mjs",

packages/shared/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"types": "index.ts",
1111
"main": "./dist/index.js",
1212
"scripts": {
13-
"clean:bundle": "pnpx rimraf dist",
13+
"clean:bundle": "rimraf dist",
1414
"clean:node_modules": "pnpx rimraf node_modules",
15-
"clean:turbo": "pnpx rimraf .turbo",
15+
"clean:turbo": "rimraf .turbo",
1616
"clean": "pnpm clean:bundle && pnpm clean:node_modules && pnpm clean:turbo",
1717
"ready": "node build.mjs",
1818
"lint": "eslint . --ext .ts,.tsx",

packages/storage/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"main": "./dist/index.js",
1111
"types": "index.ts",
1212
"scripts": {
13-
"clean:bundle": "pnpx rimraf dist",
13+
"clean:bundle": "rimraf dist",
1414
"clean:node_modules": "pnpx rimraf node_modules",
15-
"clean:turbo": "pnpx rimraf .turbo",
15+
"clean:turbo": "rimraf .turbo",
1616
"clean": "pnpm clean:bundle && pnpm clean:node_modules && pnpm clean:turbo",
1717
"ready": "node build.mjs",
1818
"lint": "eslint . --ext .ts,.tsx",

packages/ui/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
"types": "index.ts",
1313
"main": "./dist/index.js",
1414
"scripts": {
15-
"clean:bundle": "pnpx rimraf dist",
15+
"clean:bundle": "rimraf dist",
1616
"clean:node_modules": "pnpx rimraf node_modules",
17-
"clean:turbo": "pnpx rimraf .turbo",
17+
"clean:turbo": "rimraf .turbo",
1818
"clean": "pnpm clean:bundle && pnpm clean:node_modules && pnpm clean:turbo",
1919
"ready": "node build.mjs",
2020
"lint": "eslint . --ext .ts,.tsx",

packages/zipper/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
"module": "dist/index.js",
1212
"types": "index.ts",
1313
"scripts": {
14-
"clean:bundle": "pnpx rimraf dist",
14+
"clean:bundle": "rimraf dist",
1515
"clean:node_modules": "pnpx rimraf node_modules",
16-
"clean:turbo": "pnpx rimraf .turbo",
16+
"clean:turbo": "rimraf .turbo",
1717
"clean": "pnpm clean:bundle && pnpm clean:node_modules && pnpm clean:turbo",
1818
"zip": "tsx index.ts",
1919
"ready": "tsc",

pages/content-runtime/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
],
1010
"scripts": {
1111
"clean:node_modules": "pnpx rimraf node_modules",
12-
"clean:turbo": "pnpx rimraf .turbo",
13-
"clean": "pnpm clean:node_modules && pnpm clean:turbo",
12+
"clean:turbo": "rimraf .turbo",
13+
"clean": "pnpm clean:turbo && pnpm clean:node_modules",
1414
"build": "vite build",
1515
"dev": "cross-env __DEV__=true vite build --mode development",
1616
"lint": "eslint . --ext .ts,.tsx",

0 commit comments

Comments
 (0)