File tree Expand file tree Collapse file tree 6 files changed +3929
-3663
lines changed Expand file tree Collapse file tree 6 files changed +3929
-3663
lines changed Original file line number Diff line number Diff line change
1
+ name : ci
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+ pull_request :
8
+ branches :
9
+ - main
10
+
11
+ jobs :
12
+ ci :
13
+ runs-on : ubuntu-latest
14
+ steps :
15
+ - uses : actions/checkout@v3
16
+ - run : corepack enable
17
+ - uses : actions/setup-node@v3
18
+ with :
19
+ node-version : 16
20
+ cache : " pnpm"
21
+ - run : pnpm install
22
+ - run : pnpm lint
23
+ - run : pnpm build
24
+ - run : pnpm vitest --coverage
25
+ - uses : codecov/codecov-action@v3
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 6
6
[ ![ Dependencies] [ david-dm-src ]] [ david-dm-href ]
7
7
<!-- [![Codecov][codecov-src]][codecov-href] -->
8
8
9
- SSR Bundle Renderer for Vue 3.
9
+ SSR Bundle Renderer for [ Vue 3] ( https://vuejs.org/ ) .
10
10
11
11
## Install
12
12
13
13
``` sh
14
14
yarn add vue-bundle-renderer
15
15
16
16
npm install vue-bundle-renderer
17
+
18
+ pnpm add vue-bundle-renderer
17
19
```
18
20
19
21
## Usage
Original file line number Diff line number Diff line change 23
23
],
24
24
"scripts" : {
25
25
"build" : " unbuild" ,
26
+ "dev" : " vitest" ,
26
27
"lint" : " eslint --ext .ts src" ,
27
- "release" : " yarn test && yarn build && standard-version && git push --follow-tags && npm publish" ,
28
- "test" : " yarn lint && yarn test:unit" ,
29
- "test:unit" : " vitest"
28
+ "release" : " pnpm test && pnpm build && standard-version && git push --follow-tags && pnpm publish" ,
29
+ "test" : " pnpm lint && pnpm vitest run --coverage"
30
30
},
31
31
"dependencies" : {
32
32
"ufo" : " ^0.8.3"
33
33
},
34
34
"devDependencies" : {
35
35
"@nuxtjs/eslint-config-typescript" : " latest" ,
36
- "@rollup/plugin-typescript" : " latest" ,
37
- "@vue/server-renderer" : " latest" ,
36
+ "c8" : " ^7.12.0" ,
38
37
"eslint" : " latest" ,
39
- "rollup" : " latest" ,
40
- "rollup-plugin-babel" : " latest" ,
41
- "rollup-plugin-node-resolve" : " latest" ,
42
38
"standard-version" : " latest" ,
43
39
"typescript" : " latest" ,
44
40
"unbuild" : " latest" ,
45
41
"vite" : " ^3.0.3" ,
46
- "vitest" : " 0.19.1"
47
- }
42
+ "vitest" : " 0.19.1" ,
43
+ "vue" : " 3"
44
+ },
45
+ "packageManager" :
" [email protected] "
48
46
}
You can’t perform that action at this time.
0 commit comments