vuepress-plugin-md-power 1.0.0-rc.171 → 1.0.0-rc.173
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/node/index.js +2 -3
- package/package.json +12 -13
package/lib/node/index.js
CHANGED
|
@@ -6,9 +6,8 @@ import http from "node:https";
|
|
|
6
6
|
import { URL, URLSearchParams } from "node:url";
|
|
7
7
|
import { camelCase, isBoolean, isEmptyObject, isNull, isNumber, isPlainObject as isPlainObject$1, isString, isUndefined, kebabCase, notNullish, omit, toArray, uniqueBy, withTimeout } from "@pengzhanbo/utils";
|
|
8
8
|
import imageSize from "image-size";
|
|
9
|
-
import { colors, fs, getDirname, logger, ora, path } from "vuepress/utils";
|
|
9
|
+
import { colors, fs, getDirname, logger, ora, path, tinyglobby } from "vuepress/utils";
|
|
10
10
|
import path$1 from "node:path";
|
|
11
|
-
import { globSync } from "tinyglobby";
|
|
12
11
|
import { isLinkHttp as isLinkHttp$1, isLinkWithProtocol, removeEndingSlash, removeLeadingSlash } from "vuepress/shared";
|
|
13
12
|
import fs$1, { promises } from "node:fs";
|
|
14
13
|
import process from "node:process";
|
|
@@ -1474,7 +1473,7 @@ function codeTreePlugin(md, app, options = {}) {
|
|
|
1474
1473
|
content: ({ dir, icon,...props }, _, env) => {
|
|
1475
1474
|
const codeTreeFiles = env.codeTreeFiles ??= [];
|
|
1476
1475
|
const root = findFile(app, env, dir);
|
|
1477
|
-
const files = globSync("**/*", {
|
|
1476
|
+
const files = tinyglobby.globSync("**/*", {
|
|
1478
1477
|
cwd: root,
|
|
1479
1478
|
onlyFiles: true,
|
|
1480
1479
|
dot: true,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vuepress-plugin-md-power",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.0-rc.
|
|
4
|
+
"version": "1.0.0-rc.173",
|
|
5
5
|
"description": "The Plugin for VuePress 2 - markdown power",
|
|
6
6
|
"author": "pengzhanbo <volodymyr@foxmail.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"artplayer": "^5.3.0",
|
|
35
35
|
"dashjs": "^5.0.3",
|
|
36
|
-
"esbuild": "^0.25.
|
|
36
|
+
"esbuild": "^0.25.11",
|
|
37
37
|
"hls.js": "^1.6.13",
|
|
38
38
|
"less": "^4.4.2",
|
|
39
39
|
"markdown-it": "^14.1.0",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"sass": "^1.93.2",
|
|
43
43
|
"sass-embedded": "^1.93.2",
|
|
44
44
|
"stylus": "^0.64.0",
|
|
45
|
-
"vuepress": "2.0.0-rc.
|
|
45
|
+
"vuepress": "2.0.0-rc.26"
|
|
46
46
|
},
|
|
47
47
|
"peerDependenciesMeta": {
|
|
48
48
|
"artplayer": {
|
|
@@ -77,15 +77,15 @@
|
|
|
77
77
|
}
|
|
78
78
|
},
|
|
79
79
|
"dependencies": {
|
|
80
|
-
"@mdit/plugin-attrs": "^0.23.
|
|
81
|
-
"@mdit/plugin-footnote": "^0.22.
|
|
80
|
+
"@mdit/plugin-attrs": "^0.23.2",
|
|
81
|
+
"@mdit/plugin-footnote": "^0.22.3",
|
|
82
82
|
"@mdit/plugin-mark": "^0.22.1",
|
|
83
|
-
"@mdit/plugin-sub": "^0.22.
|
|
84
|
-
"@mdit/plugin-sup": "^0.22.
|
|
85
|
-
"@mdit/plugin-tab": "^0.22.
|
|
86
|
-
"@mdit/plugin-tasklist": "^0.22.
|
|
83
|
+
"@mdit/plugin-sub": "^0.22.2",
|
|
84
|
+
"@mdit/plugin-sup": "^0.22.2",
|
|
85
|
+
"@mdit/plugin-tab": "^0.22.3",
|
|
86
|
+
"@mdit/plugin-tasklist": "^0.22.2",
|
|
87
87
|
"@pengzhanbo/utils": "^2.1.0",
|
|
88
|
-
"@vuepress/helper": "2.0.0-rc.
|
|
88
|
+
"@vuepress/helper": "2.0.0-rc.114",
|
|
89
89
|
"@vueuse/core": "^13.9.0",
|
|
90
90
|
"chokidar": "4.0.3",
|
|
91
91
|
"image-size": "^2.0.2",
|
|
@@ -94,9 +94,8 @@
|
|
|
94
94
|
"markdown-it-container": "^4.0.0",
|
|
95
95
|
"nanoid": "^5.1.6",
|
|
96
96
|
"shiki": "^3.13.0",
|
|
97
|
-
"
|
|
98
|
-
"tm-
|
|
99
|
-
"tm-themes": "^1.10.9",
|
|
97
|
+
"tm-grammars": "^1.24.23",
|
|
98
|
+
"tm-themes": "^1.10.11",
|
|
100
99
|
"vue": "^3.5.22"
|
|
101
100
|
},
|
|
102
101
|
"devDependencies": {
|