rspress 1.14.0 → 1.15.0
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/index.js +6 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
@@ -107,7 +107,12 @@ async function update() {
|
|
107
107
|
}
|
108
108
|
|
109
109
|
// src/index.ts
|
110
|
-
var CONFIG_FILES = [
|
110
|
+
var CONFIG_FILES = [
|
111
|
+
"rspress.config.ts",
|
112
|
+
"rspress.config.js",
|
113
|
+
"_meta.json",
|
114
|
+
"i18n.json"
|
115
|
+
];
|
111
116
|
var require2 = createRequire2(import.meta.url);
|
112
117
|
var packageJson = require2("../package.json");
|
113
118
|
var cli = cac("rspress").version(packageJson.version).help();
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "rspress",
|
3
|
-
"version": "1.
|
3
|
+
"version": "1.15.0",
|
4
4
|
"type": "module",
|
5
5
|
"types": "./dist/index.d.ts",
|
6
6
|
"main": "./dist/index.js",
|
@@ -28,12 +28,12 @@
|
|
28
28
|
}
|
29
29
|
},
|
30
30
|
"dependencies": {
|
31
|
-
"@modern-js/node-bundle-require": "2.48.
|
31
|
+
"@modern-js/node-bundle-require": "2.48.1",
|
32
32
|
"cac": "^6.7.14",
|
33
33
|
"chokidar": "^3.5.3",
|
34
34
|
"chalk": "5.3.0",
|
35
|
-
"@rspress/core": "1.
|
36
|
-
"@rspress/shared": "1.
|
35
|
+
"@rspress/core": "1.15.0",
|
36
|
+
"@rspress/shared": "1.15.0"
|
37
37
|
},
|
38
38
|
"devDependencies": {
|
39
39
|
"@types/jest": "~29.2.4",
|