Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed May 1, 2022
1 parent 0118cbe commit 42abb64
Show file tree
Hide file tree
Showing 3 changed files with 417 additions and 382 deletions.
41 changes: 14 additions & 27 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,9 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Install pnpm
uses: pnpm/action-setup@v2.2.1

- name: Set node
uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
with:
node-version: 16.x
cache: pnpm
Expand All @@ -33,13 +29,9 @@ jobs:
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Install pnpm
uses: pnpm/action-setup@v2.2.1

- name: Set node
uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
with:
node-version: 16.x
cache: pnpm
Expand All @@ -60,37 +52,32 @@ jobs:
fail-fast: false

steps:
- uses: actions/checkout@v2
- name: Install pnpm
uses: pnpm/action-setup@v2.2.1

- uses: actions/checkout@v3
- name: pnpm/action-setup@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
registry-url: https://registry.npmjs.org/
cache: pnpm

- run: pnpm install

- name: Unit Test
run: pnpm run test:unit
- run: pnpm run test:unit

test-e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/.cache
key: cypress-cache-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }}

- name: Install pnpm
uses: pnpm/action-setup@v2.2.1
- uses: pnpm/action-setup@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
registry-url: https://registry.npmjs.org/
Expand Down
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"private": true,
"packageManager": "pnpm@6.32.3",
"packageManager": "pnpm@7.0.0",
"scripts": {
"build": "vite-ssg build",
"dev": "vite --port 3333 --open",
Expand All @@ -13,7 +13,7 @@
"typecheck": "vue-tsc --noEmit"
},
"dependencies": {
"@vueuse/core": "^8.3.0",
"@vueuse/core": "^8.3.1",
"@vueuse/head": "^0.7.6",
"nprogress": "^0.2.0",
"pinia": "^2.0.13",
Expand All @@ -24,7 +24,7 @@
"vue-router": "^4.0.14"
},
"devDependencies": {
"@antfu/eslint-config": "^0.20.6",
"@antfu/eslint-config": "^0.22.0",
"@iconify-json/carbon": "^1.1.3",
"@intlify/vite-plugin-vue-i18n": "^4.0.0",
"@types/markdown-it-link-attributes": "^3.0.1",
Expand All @@ -33,26 +33,26 @@
"@vue/test-utils": "^2.0.0-rc.21",
"critters": "^0.0.16",
"cross-env": "^7.0.3",
"cypress": "^9.5.4",
"eslint": "^8.13.0",
"cypress": "^9.6.0",
"eslint": "^8.14.0",
"eslint-plugin-cypress": "^2.12.1",
"https-localhost": "^4.7.1",
"markdown-it-link-attributes": "^4.0.0",
"markdown-it-prism": "^2.2.4",
"pnpm": "^6.32.9",
"typescript": "^4.6.3",
"unocss": "^0.31.12",
"pnpm": "^7.0.0",
"typescript": "^4.6.4",
"unocss": "^0.32.7",
"unplugin-auto-import": "^0.7.1",
"unplugin-vue-components": "^0.19.3",
"vite": "^2.9.5",
"vite": "^2.9.6",
"vite-plugin-inspect": "^0.5.0",
"vite-plugin-md": "^0.12.4",
"vite-plugin-md": "^0.13.0",
"vite-plugin-pages": "^0.23.0",
"vite-plugin-pwa": "^0.12.0",
"vite-plugin-vue-layouts": "^0.6.0",
"vite-ssg": "^0.19.2",
"vite-ssg-sitemap": "^0.2.4",
"vitest": "^0.9.3",
"vue-tsc": "^0.34.8"
"vite-ssg-sitemap": "^0.2.5",
"vitest": "^0.10.0",
"vue-tsc": "^0.34.11"
}
}
Loading

0 comments on commit 42abb64

Please sign in to comment.