WIP updating dependencies

This commit is contained in:
thepaperpilot 2023-04-05 07:44:37 -05:00
parent 280d712d5b
commit bca77dd6d2
7 changed files with 1304 additions and 1430 deletions

2
.gitignore vendored
View file

@ -1,5 +1,7 @@
node_modules
yarn-error.log
docs/.vitepress/dist
docs/.vitepress/cache
docs/api
components
typedoc-theme

View file

@ -37,7 +37,7 @@ module.exports = {
"/guide/": [
{
text: "Getting Started",
collapsible: true,
collapsed: false,
items: [
{ text: "Introduction", link: "/guide/" },
{ text: "Setting Up", link: "/guide/getting-started/setup" },
@ -47,7 +47,7 @@ module.exports = {
},
{
text: "Creating Your Project",
collapsible: true,
collapsed: false,
items: [
{ text: "Project Info", link: "/guide/creating-your-project/project-info" },
{ text: "Project Entry", link: "/guide/creating-your-project/project-entry" },
@ -58,7 +58,7 @@ module.exports = {
},
{
text: "Important Concepts",
collapsible: true,
collapsed: false,
items: [
{ text: "Layers", link: "/guide/important-concepts/layers" },
{ text: "Features", link: "/guide/important-concepts/features" },
@ -69,14 +69,14 @@ module.exports = {
},
{
text: "Recipes",
collapsible: true,
collapsed: false,
items: [
{ text: "Display Save Progress", link: "/guide/recipes/save-progress" }
]
},
{
text: "Advanced Concepts",
collapsible: true,
collapsed: false,
items: [
{ text: "Creating Features", link: "/guide/advanced-concepts/creating-features" },
{ text: "Dynamic Layers", link: "/guide/advanced-concepts/dynamic-layers" }
@ -93,7 +93,7 @@ function generateAPISidebar() {
const modules = fs.readdirSync("./docs/api/modules");
modules.forEach(file => {
const moduleSidebar = { text: camelToTitle(file), collapsible: true, items: [], collapsed: file === "lib" };
const moduleSidebar = { text: camelToTitle(file), items: [], collapsed: file === "lib" };
sidebar.push(moduleSidebar)
walk(path.join("./docs/api/modules", file), moduleSidebar.items);
});
@ -102,7 +102,6 @@ function generateAPISidebar() {
walk("./docs/api/components", componentFolders);
sidebar.unshift({
text: "Components",
collapsible: true,
collapsed: true,
items: componentFolders
});

View file

@ -3,7 +3,7 @@ body {
}
@media (min-width: 960px) {
.name, .text {
.main .name, .main .text {
font-size: 52px !important;
}
}

View file

@ -7,7 +7,7 @@
"serve": "vitepress serve docs",
"dev": "vitepress dev docs",
"build": "vitepress build docs",
"generate": "tsc --project ./profectus-theme && vue-docgen -c docgen.config.js && cd profectus && vue-typedoc --logLevel Verbose --plugin ../typedoc-theme/index.js --theme profectus --plugin typedoc-plugin-markdown --plugin typedoc-plugin-mdn-links && cd .. && rm docs/api/modules/main.md && node postProcess.js"
"generate": "tsc --project ./profectus-theme && vue-docgen -c docgen.config.js && cd profectus && vue-typedoc --logLevel Verbose --plugin ../typedoc-theme/index.js --theme profectus --plugin typedoc-plugin-markdown --plugin typedoc-plugin-mdn-links --skipErrorChecking && cd .. && rm docs/api/modules/main.md && node postProcess.js"
},
"repository": "git+https://github.com/profectus-engine/profectus-docs.git",
"author": "thepaperpilot",
@ -17,27 +17,34 @@
},
"homepage": "https://github.com/profectus-engine/profectus-docs#readme",
"dependencies": {
"vitepress": "^1.0.0-alpha.4"
"vitepress": "^1.0.0-alpha.65"
},
"private": true,
"devDependencies": {
"@pixi/particle-emitter": "^5.0.5",
"@pixi/app": "~6.3.2",
"@pixi/constants": "~6.3.2",
"@pixi/core": "~6.3.2",
"@pixi/display": "~6.3.2",
"@pixi/math": "~6.3.2",
"@pixi/particle-emitter": "^5.0.7",
"@pixi/sprite": "~6.3.2",
"@pixi/ticker": "~6.3.2",
"@types/lz-string": "^1.3.34",
"is-plain-object": "^5.0.0",
"lz-string": "^1.4.4",
"nanoevents": "^6.0.2",
"pixi.js": "^6.3.0",
"typedoc": "^0.23.7",
"typedoc-plugin-markdown": "^3.13.2",
"typedoc-plugin-mdn-links": "^2.0.0",
"typedoc": "^0.23.28",
"typedoc-plugin-markdown": "^3.14.0",
"typedoc-plugin-mdn-links": "^3.0.3",
"typescript": "^4.7.4",
"vitest": "^0.17.1",
"vue-docgen-cli": "^4.44.17",
"vitest": "^0.29.3",
"vue-docgen-cli": "^4.66.0",
"vue-next-select": "^2.10.2",
"vue-panzoom": "^1.1.6",
"vue-panzoom": "https://github.com/thepaperpilot/vue-panzoom.git",
"vue-textarea-autosize": "^1.1.1",
"vue-toastification": "^2.0.0-rc.1",
"vue-transition-expand": "^0.1.0",
"vue-typedoc": "https://github.com/thepaperpilot/vue-typedoc.git",
"vuedraggable": "^2.24.3"
"vuedraggable": "^4.1.0"
}
}

@ -1 +1 @@
Subproject commit 08a489d99735edc7cceb9f6b2f01fc61bb0997fb
Subproject commit 70cda5fa8ad3d55f1d9376911bd76fbc9c740f87

View file

@ -18,7 +18,7 @@ export class ProfectusTheme extends MarkdownTheme {
this.hideBreadcrumbs = true;
this.hideInPageTOC = true;
registerTypeHelper();
// registerTypeHelper();
}

2684
yarn.lock

File diff suppressed because it is too large Load diff