valaxy 0.24.4 → 0.24.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.
|
@@ -4,7 +4,7 @@ import yargs from "yargs";
|
|
|
4
4
|
import { hideBin } from "yargs/helpers";
|
|
5
5
|
|
|
6
6
|
// package.json
|
|
7
|
-
var version = "0.24.
|
|
7
|
+
var version = "0.24.5";
|
|
8
8
|
|
|
9
9
|
// node/modules/fuse.ts
|
|
10
10
|
import path4 from "path";
|
|
@@ -1326,7 +1326,6 @@ var clientDeps = [
|
|
|
1326
1326
|
// vue
|
|
1327
1327
|
"vue",
|
|
1328
1328
|
"vue-router",
|
|
1329
|
-
"unplugin-vue-router/data-loaders/basic",
|
|
1330
1329
|
"vue-i18n",
|
|
1331
1330
|
// dev
|
|
1332
1331
|
"@vue/devtools-api",
|
|
@@ -1355,7 +1354,12 @@ var EXCLUDE = [
|
|
|
1355
1354
|
"/@valaxyjs/context",
|
|
1356
1355
|
"/@valaxyjs/addons",
|
|
1357
1356
|
"/@valaxyjs/locales",
|
|
1358
|
-
"/@valaxyjs/styles"
|
|
1357
|
+
"/@valaxyjs/styles",
|
|
1358
|
+
/**
|
|
1359
|
+
* unplugin-vue-router
|
|
1360
|
+
* exclude to avoid vite optimize, will make Symbol('loaderEntries') valid
|
|
1361
|
+
*/
|
|
1362
|
+
"unplugin-vue-router/data-loaders/basic"
|
|
1359
1363
|
];
|
|
1360
1364
|
function createConfigPlugin(options) {
|
|
1361
1365
|
const addonDeps = options.addons.map((i) => Object.keys(i.pkg.dependencies || {})).flat();
|
package/dist/node/cli/index.js
CHANGED
package/dist/node/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "valaxy",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.24.
|
|
4
|
+
"version": "0.24.5",
|
|
5
5
|
"description": "📄 Vite & Vue powered static blog generator.",
|
|
6
6
|
"author": {
|
|
7
7
|
"email": "me@yunyoujun.cn",
|
|
@@ -132,8 +132,8 @@
|
|
|
132
132
|
"vue-i18n": "^11.1.9",
|
|
133
133
|
"vue-router": "^4.5.1",
|
|
134
134
|
"yargs": "^18.0.0",
|
|
135
|
-
"@valaxyjs/devtools": "0.24.
|
|
136
|
-
"@valaxyjs/utils": "0.24.
|
|
135
|
+
"@valaxyjs/devtools": "0.24.5",
|
|
136
|
+
"@valaxyjs/utils": "0.24.5"
|
|
137
137
|
},
|
|
138
138
|
"devDependencies": {
|
|
139
139
|
"@mdit-vue/plugin-component": "^2.1.4",
|