Skip to content

Commit

Permalink
chore: replace run-s with pnpm run
Browse files Browse the repository at this point in the history
  • Loading branch information
hi-ogawa committed Sep 24, 2023
1 parent 9b2fa8c commit 78b8232
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 111 deletions.
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"test": "pnpm -r test",
"tsc": "tsc -b",
"dev:tsc": "tsc -b --watch --preserveWatchOutput",
"lint": "run-s lint:*",
"lint-check": "run-s lint-check:*",
"lint": "pnpm run --seq /^lint:/",
"lint-check": "pnpm run --seq /^lint-check:/",
"lint-check:icheck": "icheck-ts --cache $(git grep -l --untracked --exclude-standard . 'packages/app/src/*.ts' 'packages/app/src/*.tsx' 'packages/app-solid/src/*.ts' 'packages/app-solid/src/*.tsx')",
"lint:isort": "pnpm lint-check:isort --fix",
"lint-check:isort": "isort-ts --cache --git",
Expand All @@ -31,7 +31,6 @@
"esbuild": "^0.19.3",
"esbuild-register": "^3.5.0",
"happy-dom": "^11.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/app-solid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"private": true,
"scripts": {
"dev": "vite --no-clearScreen",
"build": "run-s build:*",
"build": "pnpm run --seq /^build:/",
"build:vite": "vite build",
"build:vercel": "bash misc/vercel/build.sh",
"preview": "vite preview",
Expand Down
2 changes: 1 addition & 1 deletion packages/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"private": true,
"scripts": {
"dev": "vite --no-clearScreen",
"build": "run-s build:*",
"build": "pnpm run --seq /^build:/",
"build:vite": "vite build",
"build:vercel": "bash misc/vercel/build.sh",
"preview": "vite preview",
Expand Down
106 changes: 0 additions & 106 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 78b8232

Please sign in to comment.