Skip to content

Commit

Permalink
chore: set dev mode
Browse files Browse the repository at this point in the history
  • Loading branch information
baurine committed Jun 7, 2024
1 parent 4b7c648 commit b05f1bb
Show file tree
Hide file tree
Showing 5 changed files with 69 additions and 0 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
- node.js >18.16.0
- pnpm >8.6.12

### Develop

- `pnpm i`
- `pnpm dev`

### Build

- `pnpm i`
Expand Down
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"main": "index.js",
"scripts": {
"prepare": "husky",
"dev": "pnpm -r --parallel dev",
"build": "pnpm -r build",
"release": "changeset publish"
},
Expand All @@ -18,6 +19,7 @@
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.27.5",
"concurrently": "^8.2.2",
"eslint": "^9.4.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
Expand Down
3 changes: 3 additions & 0 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
"README.md"
],
"scripts": {
"tsc:watch": "tsc --watch",
"rollup:watch": "rollup -c --watch",
"dev": "concurrently --kill-others \"pnpm tsc:watch\" \"pnpm rollup:watch\"",
"build": "tsc && rollup -c"
},
"keywords": [],
Expand Down
3 changes: 3 additions & 0 deletions packages/extensions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
"README.md"
],
"scripts": {
"tsc:watch": "tsc --watch",
"rollup:watch": "rollup -c --watch",
"dev": "concurrently --kill-others \"pnpm tsc:watch\" \"pnpm rollup:watch\"",
"build": "tsc && rollup -c"
},
"keywords": [],
Expand Down
56 changes: 56 additions & 0 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 b05f1bb

Please sign in to comment.