@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 +5 -5
- package/dist/dao-style.js +7 -7
- package/dist/dao-style.mjs +4333 -4304
- package/package.json +7 -9
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
|
-
|
|
22
|
+
pnpm install
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
### Type-Check, Compile and Minify for Production
|
|
26
26
|
|
|
27
27
|
```sh
|
|
28
|
-
|
|
28
|
+
pnpm run build
|
|
29
29
|
```
|
|
30
30
|
|
|
31
31
|
#### Type-Check only
|
|
32
32
|
|
|
33
33
|
```sh
|
|
34
|
-
|
|
34
|
+
pnpm run typecheck
|
|
35
35
|
```
|
|
36
36
|
|
|
37
37
|
### Run Unit Tests with Jest
|
|
38
38
|
|
|
39
39
|
```sh
|
|
40
|
-
|
|
40
|
+
pnpm run test
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
### Run Documents with Vitepress
|
|
44
44
|
|
|
45
45
|
```sh
|
|
46
|
-
|
|
46
|
+
pnpm run dev:docs
|
|
47
47
|
```
|