Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:
- run: pnpm test:types
- run: pnpm build
- run: pnpm test:dist
# - run: pnpm vitest --coverage && rm -rf coverage/tmp
# - uses: codecov/codecov-action@v3
- run: pnpm test:unit
- uses: codecov/codecov-action@v3
- name: Release Edge
if: |
github.event_name == 'push' &&
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ dist
.nuxt
nuxt-app
.pnpm-store
coverage
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@
"release": "pnpm test && changelogen --release && npm publish && git push --follow-tags",
"test": "pnpm lint && pnpm test:types && pnpm build && pnpm test:dist",
"test:dist": "node ./bin/nuxi.mjs info ./playground",
"test:types": "tsc --noEmit"
"test:types": "tsc --noEmit",
"test:unit": "vitest --coverage"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.6.0",
Expand All @@ -45,6 +46,7 @@
"@types/node": "^20.16.14",
"@types/semver": "^7.5.8",
"@types/ws": "^8.5.12",
"@vitest/coverage-v8": "^2.1.3",
"c12": "^2.0.1",
"changelogen": "^0.5.7",
"chokidar": "^4.0.1",
Expand Down Expand Up @@ -74,6 +76,7 @@
"unbuild": "^2.0.0",
"unplugin-purge-polyfills": "^0.0.7",
"unws": "^0.2.4",
"vitest": "^2.1.3",
"vue-tsc": "^2.1.6",
"ws": "^8.18.0"
},
Expand Down
Loading
Loading