Skip to content

Commit debc526

Browse files
committed
chore: rename dev script to stub
1 parent e7176a3 commit debc526

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.github/contributing.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ Lay out the reasoning behind it and propose an API for it. Ideally, you should h
2929

3030
## Project Guidelines
3131

32+
After pulling the project code and installing deps with `pnpm i`. run `pnpm run stub` at the root of the project. You can `cd packages/playground` and run `pnpm run dev` to test the playground.
33+
3234
This project uses pnpm workspaces and contains different packages:
3335

3436
### packages/core

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
},
1010
"scripts": {
1111
"release": "node scripts/release.mjs",
12-
"dev": "pnpm run -r --filter './packages/{core,vite-plugin-vue-termui,cli}' dev",
12+
"stub": "pnpm run -r --filter './packages/{core,vite-plugin-vue-termui,cli}' stub",
1313
"build": "pnpm run -r --filter './packages/{core,vite-plugin-vue-termui,cli}' build",
1414
"play:dev": "pnpm run --filter './packages/playground' dev",
1515
"lint": "prettier --check packages README.md",

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"type": "module",
88
"version": "0.0.14",
99
"scripts": {
10-
"dev": "unbuild --stub",
10+
"stub": "unbuild --stub",
1111
"build": "tsup",
1212
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s --commit-path . -l @vue-termui/cli -r 1"
1313
},

packages/vite-plugin-vue-termui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"version": "0.0.9",
66
"sideEffects": false,
77
"scripts": {
8-
"dev": "unbuild --stub",
8+
"stub": "unbuild --stub",
99
"build": "tsup",
1010
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s --commit-path . -l vite-plugin-vue-termui -r 1",
1111
"prepublishOnly": "npm run build"

0 commit comments

Comments
 (0)