Skip to content

Commit

Permalink
chore: fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
baurine committed Jun 13, 2024
1 parent b7fad88 commit 0a7c85c
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
- node.js >18.16.0
- pnpm >8.6.12

### Develop
### Local Development

- `pnpm i`
- `pnpm dev`

### Build
### Production Build

- `pnpm i`
- `pnpm build`
Expand Down
1 change: 0 additions & 1 deletion packages/extensions/README.md

This file was deleted.

3 changes: 3 additions & 0 deletions packages/extensions/cur-sql/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/lang-sql/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/sql-parser/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
2 changes: 1 addition & 1 deletion pnpm-lock.yaml

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

0 comments on commit 0a7c85c

Please sign in to comment.