Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
JB AUBREE committed May 22, 2024
1 parent aca7407 commit 91ee1db
Show file tree
Hide file tree
Showing 8 changed files with 1,929 additions and 1,482 deletions.
3 changes: 0 additions & 3 deletions .eslintignore

This file was deleted.

3 changes: 0 additions & 3 deletions .eslintrc

This file was deleted.

14 changes: 6 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,20 @@ on:
jobs:
lint:
runs-on: ubuntu-latest
name: "Lint: node-16, ubuntu-latest"
name: "Lint: node-20, ubuntu-latest"
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 6
uses: pnpm/action-setup@v4

- name: Set node version to 16
uses: actions/setup-node@v3
- name: Set node version to 20
uses: actions/setup-node@v4
with:
node-version: 16
node-version: 20
cache: pnpm

- name: Install deps
Expand Down
5 changes: 3 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"eslint.experimental.useFlatConfig": true,
"prettier.enable": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.eslint": "explicit"
},
"editor.formatOnSave": false,
"editor.formatOnSave": false
}
8 changes: 8 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// @ts-check
import antfu from '@antfu/eslint-config'

export default antfu(
{
formatters: true,
},
)
10 changes: 5 additions & 5 deletions example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
"vue-router": "4.2.5"
},
"devDependencies": {
"@vitejs/plugin-vue": "4.5.0",
"typescript": "5.2.2",
"vite": "4.5.0",
"vite-plugin-pages": "0.31.0",
"vite-ssg": "0.23.5",
"@vitejs/plugin-vue": "^5.0.4",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-plugin-pages": "^0.32.1",
"vite-ssg": "^0.23.7",
"vite-ssg-sitemap": "workspace:*"
}
}
25 changes: 14 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"name": "vite-ssg-sitemap",
"type": "module",
"version": "0.6.1",
"packageManager": "pnpm@8.10.5",
"packageManager": "pnpm@9.1.2",
"description": "sitemap generator working with vite-ssg",
"license": "MIT",
"main": "dist/index.js",
Expand All @@ -16,17 +17,19 @@
"example:build": "pnpm -C example run build",
"lint": "eslint \"**/*.{vue,ts,js}\"",
"release": "npx bumpp --commit --tag --push && npm publish",
"typecheck": "vue-tsc --noEmit"
"typecheck": "vue-tsc --noEmit",
"up": "taze major -r -I"
},
"devDependencies": {
"@antfu/eslint-config": "0.43.1",
"@types/node": "20.9.1",
"eslint": "8.53.0",
"pkgroll": "2.0.1",
"pnpm": "8.10.5",
"sitemap-ts": "1.6.1",
"typescript": "5.2.2",
"vite": "4.5.0",
"vue-tsc": "1.8.22"
"@antfu/eslint-config": "^2.18.1",
"@types/node": "^20.12.12",
"eslint": "^9.3.0",
"pkgroll": "^2.1.1",
"pnpm": "^9.1.2",
"sitemap-ts": "^1.7.1",
"taze": "^0.13.8",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vue-tsc": "^2.0.19"
}
}
Loading

0 comments on commit 91ee1db

Please sign in to comment.