Skip to content

Commit

Permalink
fix: 修复文件名称错误
Browse files Browse the repository at this point in the history
  • Loading branch information
Tenny committed Jun 24, 2024
1 parent 779c401 commit 839d556
Show file tree
Hide file tree
Showing 6 changed files with 664 additions and 431 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,21 @@ jobs:
with:
fetch-depth: 0

- name: Cache Node Modules
id: cache-node-modules
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-node-
- name: Setup Pnpm
id: setup-pnpm
uses: pnpm/action-setup@v3

- name: Install Dependencies
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: pnpm install

- name: Build Site
Expand Down
File renamed without changes.
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@
"inspect:eslint": "eslint --inspect-config"
},
"devDependencies": {
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"@types/node": "^20.14.8",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@vitejs/plugin-vue": "^5.0.5",
"eslint": "^9.4.0",
"eslint": "^9.5.0",
"eslint-plugin-vue": "^9.26.0",
"globals": "^15.4.0",
"globals": "^15.6.0",
"less": "^4.2.0",
"prettier": "^3.3.2",
"shiki": "^1.6.4",
"typescript": "^5.4.5",
"vite": "^5.2.13",
"shiki": "^1.9.0",
"typescript": "^5.5.2",
"vite": "^5.3.1",
"vite-plugin-dts": "^3.9.1",
"vitepress": "^1.2.3",
"vue-tsc": "^2.0.21"
"vue-tsc": "^2.0.22"
},
"peerDependencies": {
"vue": "^3.3.11"
Expand Down
Loading

0 comments on commit 839d556

Please sign in to comment.