@docusaurus/utils 0.0.0-5983 → 0.0.0-5987
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/lib/tags.d.ts +1 -1
- package/package.json +5 -5
- package/src/tags.ts +1 -1
package/lib/tags.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ export type TagsFile = Record<string, Tag>;
|
|
|
18
18
|
export type TagsPluginOptions = {
|
|
19
19
|
/** Path to the tags file. */
|
|
20
20
|
tags: string | false | null | undefined;
|
|
21
|
-
/** The behavior of Docusaurus when it
|
|
21
|
+
/** The behavior of Docusaurus when it finds inline tags. */
|
|
22
22
|
onInlineTags: 'ignore' | 'log' | 'warn' | 'throw';
|
|
23
23
|
};
|
|
24
24
|
export type TagMetadata = Tag & {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@docusaurus/utils",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-5987",
|
|
4
4
|
"description": "Node utility functions for Docusaurus packages.",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"types": "./lib/index.d.ts",
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
},
|
|
19
19
|
"license": "MIT",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@docusaurus/logger": "0.0.0-
|
|
22
|
-
"@docusaurus/utils-common": "0.0.0-
|
|
21
|
+
"@docusaurus/logger": "0.0.0-5987",
|
|
22
|
+
"@docusaurus/utils-common": "0.0.0-5987",
|
|
23
23
|
"@svgr/webpack": "^8.1.0",
|
|
24
24
|
"escape-string-regexp": "^4.0.0",
|
|
25
25
|
"file-loader": "^6.2.0",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"node": ">=18.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@docusaurus/types": "0.0.0-
|
|
46
|
+
"@docusaurus/types": "0.0.0-5987",
|
|
47
47
|
"@types/dedent": "^0.7.0",
|
|
48
48
|
"@types/github-slugger": "^1.3.0",
|
|
49
49
|
"@types/micromatch": "^4.0.2",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"optional": true
|
|
60
60
|
}
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "89b1afe104ab4f3fb765d2ba875d34753f77efe8"
|
|
63
63
|
}
|
package/src/tags.ts
CHANGED
|
@@ -28,7 +28,7 @@ export type TagsPluginOptions = {
|
|
|
28
28
|
// TODO allow option tags later? | TagsFile;
|
|
29
29
|
/** Path to the tags file. */
|
|
30
30
|
tags: string | false | null | undefined;
|
|
31
|
-
/** The behavior of Docusaurus when it
|
|
31
|
+
/** The behavior of Docusaurus when it finds inline tags. */
|
|
32
32
|
onInlineTags: 'ignore' | 'log' | 'warn' | 'throw';
|
|
33
33
|
};
|
|
34
34
|
|