@monkeyplus/flow 5.0.0-rc.93 → 5.0.0-rc.94
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/chunks/index.mjs +3 -1
- package/package.json +5 -5
package/dist/chunks/index.mjs
CHANGED
|
@@ -26,7 +26,7 @@ import replace from '@rollup/plugin-replace';
|
|
|
26
26
|
import { sanitizeFilePath } from 'mlly';
|
|
27
27
|
import { resolveTSConfig } from 'pkg-types';
|
|
28
28
|
|
|
29
|
-
const version = "5.0.0-rc.
|
|
29
|
+
const version = "5.0.0-rc.94";
|
|
30
30
|
|
|
31
31
|
let _distDir = dirname(fileURLToPath(import.meta.url));
|
|
32
32
|
if (_distDir.endsWith("chunks"))
|
|
@@ -674,7 +674,9 @@ async function initFlow(flow) {
|
|
|
674
674
|
await flow.callHook("ready", flow);
|
|
675
675
|
}
|
|
676
676
|
async function loadFlow(opts) {
|
|
677
|
+
const start1 = Date.now();
|
|
677
678
|
const options = await loadFlowConfig(opts);
|
|
679
|
+
logger.info(`Config loading in ${Date.now() - start1}ms`);
|
|
678
680
|
options.appDir = resolve(distDir, "app");
|
|
679
681
|
options.alias["#app"] = resolve(distDir, "app/index");
|
|
680
682
|
options._majorVersion = 3;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@monkeyplus/flow",
|
|
3
|
-
"version": "5.0.0-rc.
|
|
3
|
+
"version": "5.0.0-rc.94",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.mjs",
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
"dist"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@monkeyplus/flow-cli": "5.0.0-rc.
|
|
29
|
-
"@monkeyplus/flow-kit": "5.0.0-rc.
|
|
30
|
-
"@monkeyplus/flow-schema": "5.0.0-rc.
|
|
28
|
+
"@monkeyplus/flow-cli": "5.0.0-rc.94",
|
|
29
|
+
"@monkeyplus/flow-kit": "5.0.0-rc.94",
|
|
30
|
+
"@monkeyplus/flow-schema": "5.0.0-rc.94",
|
|
31
31
|
"@rollup/plugin-replace": "^4.0.0",
|
|
32
32
|
"@vueuse/head": "^0.7.6",
|
|
33
33
|
"c12": "^0.2.8",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"unplugin": "^0.9.4",
|
|
68
68
|
"untyped": "^0.4.5",
|
|
69
69
|
"pkg-types": "^0.3.3",
|
|
70
|
-
"vite": "
|
|
70
|
+
"vite": "~3.0.9",
|
|
71
71
|
"vite-node": "^0.22.1",
|
|
72
72
|
"vite-plugin-checker": "^0.4.9",
|
|
73
73
|
"vue-bundle-renderer": "^0.4.2",
|