docusaurus-plugin-docusynx 0.1.4 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/discover.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { access, readFile } from 'node:fs/promises';
2
2
  import path from 'node:path';
3
- import matter from 'gray-matter';
3
+ import matter from '@11ty/gray-matter';
4
4
  export async function discoverDocuments(input) {
5
5
  const documents = new Map();
6
6
  let nextOrder = 0;
package/dist/plugin.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { mkdir, readFile, writeFile } from 'node:fs/promises';
2
2
  import path from 'node:path';
3
- import matter from 'gray-matter';
3
+ import matter from '@11ty/gray-matter';
4
4
  import { AssetCollector } from './assets.js';
5
5
  import { canonicalJson, contentHash } from './canonical.js';
6
6
  import { discoverDocuments, matchesRoutePattern, normalizeRoute, readRenderedRoute, } from './discover.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "docusaurus-plugin-docusynx",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Export a deterministic Docusaurus document bundle for docusynx",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -54,11 +54,11 @@
54
54
  "registry": "https://registry.npmjs.org/"
55
55
  },
56
56
  "dependencies": {
57
+ "@11ty/gray-matter": "1.0.0",
57
58
  "cheerio": "1.0.0",
58
59
  "css-tree": "2.3.1",
59
60
  "domhandler": "5.0.3",
60
61
  "dompurify": "3.4.15",
61
- "gray-matter": "4.0.3",
62
62
  "jsdom": "26.1.0",
63
63
  "mdast-util-to-string": "4.0.0",
64
64
  "mermaid": "11.17.2",