Skip to content

Commit 8c5709a

Browse files
committed
chore(scripts): Add dev:pkg
1 parent 331ee33 commit 8c5709a

File tree

8 files changed

+8
-0
lines changed

8 files changed

+8
-0
lines changed

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"clean:cache": "rm -rf \"./node_modules/.cache\" ",
1313
"clean:docs": "rm -rf \"./docs\" ",
1414
"dev": "pnpm run --reporter=append-only --workspace-root \"/^dev:.*/\" ",
15+
"dev:pkg": "pnpm run --parallel --recursive --stream dev:pkg ",
1516
"dev:test": "vitest --ui",
1617
"fix": "pnpm run --reporter=append-only --workspace-root \"/^fix:.*/\" ",
1718
"fix:biome": "biome check . --verbose --write",

pkgs/js-ast-analyze/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
"clean:doc": "rm -rf \"./docs\" ",
5656
"clean:test": "rm -rf \"./coverage\" ",
5757
"dev": "pnpm run \"/^dev:.*/\" ",
58+
"dev:pkg": "pnpm run build:pkg --watch",
5859
"dev:doc": "typedoc --watch",
5960
"dev:test": "pnpm vitest watch --passWithNoTests --ui",
6061
"fix": "pnpm run \"/^fix:.*/\" ",

pkgs/js-ast-build/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
"clean:doc": "rm -rf \"./docs\" ",
5656
"clean:test": "rm -rf \"./coverage\" ",
5757
"dev": "pnpm run \"/^dev:.*/\" ",
58+
"dev:pkg": "pnpm run build:pkg --watch",
5859
"dev:doc": "typedoc --watch",
5960
"dev:test": "pnpm vitest watch --passWithNoTests --ui",
6061
"fix": "pnpm run \"/^fix:.*/\" ",

pkgs/svelte-ast-analyze/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@
8585
"clean:doc": "rm -rf \"./docs\" ",
8686
"clean:test": "rm -rf \"./coverage\" ",
8787
"dev": "pnpm run \"/^dev:.*/\" ",
88+
"dev:pkg": "pnpm run build:pkg --watch",
8889
"dev:doc": "typedoc --watch",
8990
"dev:test": "pnpm vitest watch --passWithNoTests --ui",
9091
"fix": "pnpm run \"/^fix:.*/\" ",

pkgs/svelte-ast-build/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
"clean:doc": "rm -rf \"./docs\" ",
5656
"clean:test": "rm -rf \"./coverage\" ",
5757
"dev": "pnpm run \"/^dev:.*/\" ",
58+
"dev:pkg": "pnpm run build:pkg --watch",
5859
"dev:doc": "typedoc --watch",
5960
"dev:test": "pnpm vitest watch --passWithNoTests --ui",
6061
"fix": "pnpm run \"/^fix:.*/\" ",

pkgs/svelte-ast-print/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
"clean:doc": "rm -rf \"./docs\" ",
5353
"clean:test": "rm -rf \"./coverage\" ",
5454
"dev": "pnpm run \"/^dev:.*/\" ",
55+
"dev:pkg": "pnpm run build:pkg --watch",
5556
"dev:doc": "typedoc --watch",
5657
"dev:test": "pnpm vitest watch --passWithNoTests --ui",
5758
"fix": "pnpm run \"/^fix:.*/\" ",

pkgs/ts-ast-analyze/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
"clean:doc": "rm -rf \"./docs\" ",
5252
"clean:test": "rm -rf \"./coverage\" ",
5353
"dev": "pnpm run \"/^dev:.*/\" ",
54+
"dev:pkg": "pnpm run build:pkg --watch",
5455
"dev:doc": "typedoc --watch",
5556
"dev:test": "pnpm vitest watch --passWithNoTests --ui",
5657
"fix": "pnpm run \"/^fix:.*/\" ",

pkgs/ts-ast-build/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
"clean:doc": "rm -rf \"./docs\" ",
5252
"clean:test": "rm -rf \"./coverage\" ",
5353
"dev": "pnpm run \"/^dev:.*/\" ",
54+
"dev:pkg": "pnpm run build:pkg --watch",
5455
"dev:doc": "typedoc --watch",
5556
"dev:test": "pnpm vitest watch --passWithNoTests --ui",
5657
"fix": "pnpm run \"/^fix:.*/\" ",

0 commit comments

Comments
 (0)