Skip to content

Commit 9d0fc94

Browse files
authored
chore: Replace concurrently with a native pnpm feature (#2676)
1 parent 79415cc commit 9d0fc94

File tree

4 files changed

+3
-51
lines changed

4 files changed

+3
-51
lines changed

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@
4848
"@changesets/cli": "^2.26.1",
4949
"@svitejs/changesets-changelog-github-compact": "^1.1.0",
5050
"@types/node": "^20.11.17",
51-
"concurrently": "^8.2.2",
5251
"cspell": "^6.31.1",
5352
"rimraf": "^5.0.5",
5453
"shelljs": "^0.8.5"

packages/skeleton-react/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"dev": "vite",
77
"build": "vite build",
88
"package": "tsc --project tsconfig.package.json",
9-
"package:watch": "tsc --project tsconfig.package.json --watch",
9+
"package:watch": "tsc --project tsconfig.package.json --watch --preserveWatchOutput",
1010
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
1111
"preview": "vite preview",
1212
"test": "vitest run",

pnpm-lock.yaml

-47
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sites/next.skeleton.dev/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
"type": "module",
1111
"version": "0.0.1",
1212
"scripts": {
13-
"dev": "concurrently \"pnpm:start\" \"pnpm:dev:svelte\" \"pnpm:dev:react\"",
13+
"dev": "pnpm run --reporter append-only --color \"/dev:/\"",
1414
"dev:svelte": "pnpm -F @skeletonlabs/skeleton-svelte package:watch",
1515
"dev:react": "pnpm -F @skeletonlabs/skeleton-react package:watch",
16-
"start": "astro dev",
16+
"dev:astro": "astro dev",
1717
"check": "astro check",
1818
"build": "pnpm -F '@skeletonlabs/*' package && astro check && astro build",
1919
"preview": "astro preview",

0 commit comments

Comments
 (0)