Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Mister-Hope committed Nov 21, 2023
1 parent 3e43072 commit 2ccf1f4
Show file tree
Hide file tree
Showing 9 changed files with 4,331 additions and 2,204 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
run_install: true

- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: pnpm

- name: Build docs
Expand Down
5 changes: 5 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules/
.vuepress/.cache/
.vuepress/.temp/

pnpm-lock.yaml
8 changes: 4 additions & 4 deletions config/crawler.js
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ export default {
([name, { sitemap }]) =>
`${getUrl(name)}/${
typeof sitemap === "string" ? sitemap : "sitemap.xml"
}}`
}}`,
),
],
ignoreCanonicalTo: false,
Expand All @@ -244,7 +244,7 @@ export default {
: recordExtractorMap[recordExtractor] ||
recordExtractorMap["vuepress/default"],
};
}
},
),
],
initialIndexSettings: {
Expand All @@ -254,8 +254,8 @@ export default {
([name, { initialIndexSettings = {} }]) => [
name,
{ ...commonInitialIndexSettings, ...initialIndexSettings },
]
)
],
),
),
},
};
4 changes: 2 additions & 2 deletions config/generateCrawler.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ let content = `new Crawler(${JSON.stringify(
return value;
},
2
2,
)})`;

functionStore.forEach((func) => {
content = content.replaceAll(
JSON.stringify(func.toString()),
func.toString()
func.toString(),
);
});

Expand Down
42 changes: 21 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,27 @@
"lint:md": "markdownlint **/*.md"
},
"license": "CC0",
"packageManager": "pnpm@8.10.3",
"packageManager": "pnpm@8.10.5",
"dependencies": {
"@vuepress/client": "2.0.0-rc.0",
"@vuepress/shared": "2.0.0-rc.0",
"@vuepress/utils": "2.0.0-rc.0",
"vue": "3.3.8",
"vuepress": "2.0.0-rc.0",
"vuepress-shared": "2.0.0-rc.0",
"vuepress-theme-hope": "2.0.0-rc.0"
},
"devDependencies": {
"husky": "8.0.3",
"markdownlint-cli": "0.37.0",
"nano-staged": "0.8.0",
"prettier": "3.1.0"
},
"pnpm": {
"overrides": {
"vue": "3.3.8"
}
},
"nano-staged": {
"*.vue": [
"prettier --write"
Expand All @@ -30,25 +50,5 @@
"*.scss": [
"prettier --write"
]
},
"dependencies": {
"@vuepress/client": "2.0.0-beta.68",
"@vuepress/shared": "2.0.0-beta.68",
"@vuepress/utils": "2.0.0-beta.68",
"vue": "3.3.8",
"vuepress": "2.0.0-beta.68",
"vuepress-shared": "2.0.0-beta.250",
"vuepress-theme-hope": "2.0.0-beta.250"
},
"devDependencies": {
"husky": "8.0.3",
"markdownlint-cli": "0.37.0",
"nano-staged": "0.8.0",
"prettier": "3.0.3"
},
"pnpm": {
"overrides": {
"vue": "3.3.8"
}
}
}
Loading

0 comments on commit 2ccf1f4

Please sign in to comment.