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 66[ ![ Dependencies] [ david-dm-src ]] [ david-dm-href ]
77<!-- [![Codecov][codecov-src]][codecov-href] -->
88
9- SSR Bundle Renderer for Vue 3.
9+ SSR Bundle Renderer for [ Vue 3] ( https://vuejs.org/ ) .
1010
1111## Install
1212
1313``` sh
1414yarn add vue-bundle-renderer
1515
1616npm install vue-bundle-renderer
17+
18+ pnpm add vue-bundle-renderer
1719```
1820
1921## Usage
Original file line number Diff line number Diff line change 2323 ],
2424 "scripts" : {
2525 "build" : " unbuild" ,
26+ "dev" : " vitest" ,
2627 "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"
3030 },
3131 "dependencies" : {
3232 "ufo" : " ^0.8.3"
3333 },
3434 "devDependencies" : {
3535 "@nuxtjs/eslint-config-typescript" : " latest" ,
36- "@rollup/plugin-typescript" : " latest" ,
37- "@vue/server-renderer" : " latest" ,
36+ "c8" : " ^7.12.0" ,
3837 "eslint" : " latest" ,
39- "rollup" : " latest" ,
40- "rollup-plugin-babel" : " latest" ,
41- "rollup-plugin-node-resolve" : " latest" ,
4238 "standard-version" : " latest" ,
4339 "typescript" : " latest" ,
4440 "unbuild" : " latest" ,
4541 "vite" : " ^3.0.3" ,
46- "vitest" : " 0.19.1"
47- }
42+ "vitest" : " 0.19.1" ,
43+ "vue" : " 3"
44+ },
45+ "packageManager" : " pnpm@6.32.3"
4846}
You can’t perform that action at this time.
0 commit comments