@dao-style/core 1.36.1 → 1.36.2-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -19,29 +19,29 @@ See [Vite Configuration Reference](https://vitejs.dev/config/).
19
19
  ## Project Setup
20
20
 
21
21
  ```sh
22
- npm i
22
+ pnpm install
23
23
  ```
24
24
 
25
25
  ### Type-Check, Compile and Minify for Production
26
26
 
27
27
  ```sh
28
- npm run build
28
+ pnpm run build
29
29
  ```
30
30
 
31
31
  #### Type-Check only
32
32
 
33
33
  ```sh
34
- npm run typecheck
34
+ pnpm run typecheck
35
35
  ```
36
36
 
37
37
  ### Run Unit Tests with Jest
38
38
 
39
39
  ```sh
40
- npm run test # or `npm t`
40
+ pnpm run test
41
41
  ```
42
42
 
43
43
  ### Run Documents with Vitepress
44
44
 
45
45
  ```sh
46
- npm run doc:dev
46
+ pnpm run dev:docs
47
47
  ```