We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dece36f commit 697d1f0Copy full SHA for 697d1f0
2 files changed
packages/global/templates/monorepo-lib/README.md
@@ -7,17 +7,17 @@ A starter for creating a TypeScript package.
7
- Install dependencies:
8
9
```bash
10
-npm install
+vite install
11
```
12
13
- Run the unit tests:
14
15
16
-npm run test
+vite run test
17
18
19
- Build the library:
20
21
22
-npm run build
+vite run build
23
packages/global/templates/monorepo-lib/package.json
@@ -29,8 +29,8 @@
29
},
30
"scripts": {
31
"ready": "vite run build && vite run test",
32
- "build": "tsdown",
33
- "dev": "tsdown --watch",
+ "build": "vite lib",
+ "dev": "vite lib --watch",
34
"test": "vite test",
35
"typecheck": "tsc --noEmit",
36
"release": "bumpp && npm publish"
0 commit comments