Skip to content

Commit

Permalink
fix issue with pre-rendering directive pages (#182)
Browse files Browse the repository at this point in the history
  • Loading branch information
pelletier197 authored Dec 10, 2022
1 parent ed1d256 commit 33a6190
Show file tree
Hide file tree
Showing 16 changed files with 877 additions and 615 deletions.
4 changes: 2 additions & 2 deletions docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@magidoc/docs",
"version": "3.0.2",
"version": "3.0.3",
"license": "MIT",
"type": "module",
"keywords": [
Expand All @@ -18,7 +18,7 @@
"release": "gh-pages --dist build --dotfiles true"
},
"devDependencies": {
"cspell": "^6.16.0",
"cspell": "^6.17.0",
"gh-pages": "^4.0.0",
"svelte-sitemap": "^2.5.3"
}
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "magidoc",
"version": "3.0.2",
"version": "3.0.3",
"description": "MagiDoc is a documentation website generator for GraphQL based on Svelte and that allows for infinite customization through plugins.",
"repository": "git@github.com:magidoc-org/magidoc.git",
"author": "Sunny Pelletier",
Expand All @@ -26,18 +26,18 @@
"get-version": "echo $npm_package_version"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"archiver": "^5.3.1",
"eslint": "^8.29.0",
"eslint-plugin-es": "^4.1.0",
"eslint-plugin-svelte3": "^4.0.0",
"husky": "^8.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.0",
"prettier-plugin-svelte": "^2.8.1",
"svelte": "^3.53.1",
"typescript": "^4.9.3"
"prettier": "^2.8.1",
"prettier-plugin-svelte": "^2.9.0",
"svelte": "^3.54.0",
"typescript": "^4.9.4"
},
"engines": {
"pnpm": ">=7.0.0"
Expand Down
20 changes: 10 additions & 10 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@magidoc/cli",
"description": "Magidoc CLI application responsible for generating GraphQL documentation websites.",
"private": false,
"version": "3.0.2",
"version": "3.0.3",
"type": "module",
"license": "MIT",
"main": "./build/index.js",
Expand Down Expand Up @@ -30,9 +30,9 @@
"release": "pnpm publish --no-git-checks --access public"
},
"dependencies": {
"@magidoc/plugin-starter-variables": "workspace:^3.0.2",
"@magidoc/rollup-plugin-gql-schema": "workspace:^3.0.2",
"axios": "^1.2.0",
"@magidoc/plugin-starter-variables": "workspace:^3.0.3",
"@magidoc/rollup-plugin-gql-schema": "workspace:^3.0.3",
"axios": "^1.2.1",
"chokidar": "^3.5.3",
"commander": "^9.4.1",
"extract-zip": "^2.0.1",
Expand All @@ -46,14 +46,14 @@
"@rollup/plugin-typescript": "^10.0.1",
"@types/fs-extra": "^9.0.13",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.10",
"@vitest/coverage-c8": "^0.25.3",
"rollup": "^3.5.1",
"@types/node": "^18.11.12",
"@vitest/coverage-c8": "^0.25.6",
"rollup": "^3.7.2",
"rollup-plugin-preserve-shebang": "^1.0.1",
"tslib": "^2.4.1",
"typescript": "^4.9.3",
"vite": "^3.2.4",
"vitest": "^0.25.3"
"typescript": "^4.9.4",
"vite": "^4.0.0",
"vitest": "^0.25.6"
},
"engines": {
"node": ">=16.14"
Expand Down
18 changes: 9 additions & 9 deletions packages/plugins/fuse-graphql/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@magidoc/plugin-fuse-graphql",
"description": "A plugin used to index a GraphQL schema into a Fuse.js search engine.",
"private": false,
"version": "3.0.2",
"version": "3.0.3",
"type": "module",
"license": "MIT",
"main": "./build/index.js",
Expand All @@ -27,20 +27,20 @@
"release": "pnpm publish --no-git-checks --access public"
},
"dependencies": {
"@magidoc/plugin-fuse-markdown": "workspace:^3.0.2",
"@magidoc/plugin-fuse-markdown": "workspace:^3.0.3",
"fuse.js": "^6.6.2",
"graphql": "^16.6.0",
"marked": "^4.2.3"
"marked": "^4.2.4"
},
"devDependencies": {
"@types/marked": "^4.0.7",
"@types/node": "^18.11.10",
"@types/marked": "^4.0.8",
"@types/node": "^18.11.12",
"@types/prettier": "^2.7.1",
"c8": "^7.12.0",
"rollup": "^3.5.1",
"typescript": "^4.9.3",
"vite": "^3.2.4",
"vitest": "^0.25.3"
"rollup": "^3.7.2",
"typescript": "^4.9.4",
"vite": "^4.0.0",
"vitest": "^0.25.6"
},
"peerDependencies": {
"fuse.js": "^6.6.2"
Expand Down
16 changes: 8 additions & 8 deletions packages/plugins/fuse-markdown/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@magidoc/plugin-fuse-markdown",
"description": "A plugin used to index markdown text into a Fuse.js search engine.",
"private": false,
"version": "3.0.2",
"version": "3.0.3",
"type": "module",
"license": "MIT",
"main": "./build/index.js",
Expand All @@ -28,17 +28,17 @@
},
"dependencies": {
"fuse.js": "^6.6.2",
"marked": "^4.2.3"
"marked": "^4.2.4"
},
"devDependencies": {
"@types/marked": "^4.0.7",
"@types/node": "^18.11.10",
"@types/marked": "^4.0.8",
"@types/node": "^18.11.12",
"@types/prettier": "^2.7.1",
"c8": "^7.12.0",
"rollup": "^3.5.1",
"typescript": "^4.9.3",
"vite": "^3.2.4",
"vitest": "^0.25.3"
"rollup": "^3.7.2",
"typescript": "^4.9.4",
"vite": "^4.0.0",
"vitest": "^0.25.6"
},
"peerDependencies": {
"fuse.js": "^6.6.2"
Expand Down
16 changes: 8 additions & 8 deletions packages/plugins/query-generator/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@magidoc/plugin-query-generator",
"description": "A browser and nodeJS compatible plugin that allows to generate GraphQL Queries and Variables",
"private": false,
"version": "3.0.2",
"version": "3.0.3",
"type": "module",
"license": "MIT",
"main": "./build/index.js",
Expand Down Expand Up @@ -30,18 +30,18 @@
"dependencies": {
"graphql": "^16.6.0",
"lodash": "^4.17.21",
"prettier": "^2.8.0"
"prettier": "^2.8.1"
},
"devDependencies": {
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.10",
"@types/node": "^18.11.12",
"@types/prettier": "^2.7.1",
"@vitest/coverage-c8": "^0.25.3",
"@vitest/coverage-c8": "^0.25.6",
"graphql-query-compress": "^1.2.4",
"rollup": "^3.5.1",
"typescript": "^4.9.3",
"vite": "^3.2.4",
"vitest": "^0.25.3"
"rollup": "^3.7.2",
"typescript": "^4.9.4",
"vite": "^4.0.0",
"vitest": "^0.25.6"
},
"peerDependencies": {
"graphql": "^16.6.0"
Expand Down
14 changes: 7 additions & 7 deletions packages/plugins/reverse-schema-mapper/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@magidoc/plugin-reverse-schema-mapper",
"description": "A library that provides the ability to do a reverse lookup on GraphQL types.",
"private": false,
"version": "3.0.2",
"version": "3.0.3",
"type": "module",
"license": "MIT",
"main": "./build/index.js",
Expand Down Expand Up @@ -30,12 +30,12 @@
"graphql": "^16.6.0"
},
"devDependencies": {
"@types/node": "^18.11.10",
"@vitest/coverage-c8": "^0.25.3",
"rollup": "^3.5.1",
"typescript": "^4.9.3",
"vite": "^3.2.4",
"vitest": "^0.25.3"
"@types/node": "^18.11.12",
"@vitest/coverage-c8": "^0.25.6",
"rollup": "^3.7.2",
"typescript": "^4.9.4",
"vite": "^4.0.0",
"vitest": "^0.25.6"
},
"peerDependencies": {
"graphql": "^16.6.0"
Expand Down
16 changes: 8 additions & 8 deletions packages/plugins/rollup-plugin-gql-schema/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@magidoc/rollup-plugin-gql-schema",
"description": "A Rollup and ViteJS plugin that allows to parse a GraphQL Schema from a target URL and save it to a target output folder, or to parse it from the disk and convert it to a desired format.",
"private": false,
"version": "3.0.2",
"version": "3.0.3",
"type": "module",
"license": "MIT",
"main": "./build/index.js",
Expand All @@ -28,19 +28,19 @@
"release": "pnpm publish --no-git-checks --access public"
},
"dependencies": {
"axios": "^1.2.0",
"axios": "^1.2.1",
"fast-glob": "^3.2.12",
"graphql": "^16.6.0"
},
"devDependencies": {
"@types/node": "^18.11.10",
"@types/node": "^18.11.12",
"@types/prettier": "^2.7.1",
"@vitest/coverage-c8": "^0.25.3",
"@vitest/coverage-c8": "^0.25.6",
"nock": "^13.2.9",
"rollup": "^3.5.1",
"typescript": "^4.9.3",
"vite": "^3.2.4",
"vitest": "^0.25.3"
"rollup": "^3.7.2",
"typescript": "^4.9.4",
"vite": "^4.0.0",
"vitest": "^0.25.6"
},
"files": [
"build"
Expand Down
14 changes: 7 additions & 7 deletions packages/plugins/starter-variables/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@magidoc/plugin-starter-variables",
"description": "A shared library that contains common Magidoc starter environment variables keys.",
"private": false,
"version": "3.0.2",
"version": "3.0.3",
"type": "module",
"license": "MIT",
"main": "./build/index.js",
Expand All @@ -28,14 +28,14 @@
"devDependencies": {
"@rollup/plugin-typescript": "^10.0.1",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.10",
"@vitest/coverage-c8": "^0.25.3",
"@types/node": "^18.11.12",
"@vitest/coverage-c8": "^0.25.6",
"lodash": "^4.17.21",
"rollup": "^3.5.1",
"rollup": "^3.7.2",
"tslib": "^2.4.1",
"typescript": "^4.9.3",
"vite": "^3.2.4",
"vitest": "^0.25.3"
"typescript": "^4.9.4",
"vite": "^4.0.0",
"vitest": "^0.25.6"
},
"optionalDependencies": {
"zod": "^3.19.1"
Expand Down
18 changes: 9 additions & 9 deletions packages/plugins/svelte-marked/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "A markdown parser library that renders to svelte components.",
"type": "module",
"license": "MIT",
"version": "3.0.2",
"version": "3.0.3",
"svelte": "index.js",
"private": false,
"keywords": [
Expand All @@ -27,20 +27,20 @@
"release": "cd package && pnpm publish --no-git-checks --access public"
},
"dependencies": {
"marked": "^4.2.3"
"marked": "^4.2.4"
},
"devDependencies": {
"@sveltejs/adapter-auto": "1.0.0-next.90",
"@sveltejs/kit": "1.0.0-next.571",
"@sveltejs/kit": "1.0.0-next.581",
"@sveltejs/package": "1.0.0-next.6",
"@types/marked": "^4.0.7",
"@types/marked": "^4.0.8",
"@types/prismjs": "^1.26.0",
"svelte": "^3.53.1",
"svelte-check": "^2.10.0",
"svelte": "^3.54.0",
"svelte-check": "^2.10.2",
"svelte-preprocess": "^4.10.7",
"svelte2tsx": "^0.5.21",
"svelte2tsx": "^0.5.22",
"tslib": "^2.4.1",
"typescript": "~4.9.3",
"vite": "^3.2.4"
"typescript": "~4.9.4",
"vite": "^4.0.0"
}
}
14 changes: 7 additions & 7 deletions packages/plugins/svelte-prismjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "A Svelte component library providing an easy to use component to display PrismJS code blocks",
"type": "module",
"license": "MIT",
"version": "3.0.2",
"version": "3.0.3",
"svelte": "index.js",
"private": false,
"keywords": [
Expand Down Expand Up @@ -33,16 +33,16 @@
},
"devDependencies": {
"@sveltejs/adapter-auto": "1.0.0-next.90",
"@sveltejs/kit": "1.0.0-next.571",
"@sveltejs/kit": "1.0.0-next.581",
"@sveltejs/package": "1.0.0-next.6",
"@types/prismjs": "^1.26.0",
"svelte": "^3.53.1",
"svelte-check": "^2.10.0",
"svelte": "^3.54.0",
"svelte-check": "^2.10.2",
"svelte-preprocess": "^4.10.7",
"svelte2tsx": "^0.5.21",
"svelte2tsx": "^0.5.22",
"tslib": "^2.4.1",
"typescript": "~4.9.3",
"vite": "^3.2.4"
"typescript": "~4.9.4",
"vite": "^4.0.0"
},
"peerDependencies": {
"prismjs": "^1.29.0"
Expand Down
Loading

0 comments on commit 33a6190

Please sign in to comment.