@monkeyplus/flow 5.0.0-rc.113 → 5.0.0-rc.115
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/dev-bundler.mjs +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +4 -4
|
@@ -258,8 +258,8 @@ async function initViteDevBundler(ctx, onBuild) {
|
|
|
258
258
|
await writeManifest(ctx, ids.filter(isCSS).map((i) => i.slice(1)));
|
|
259
259
|
const time = Date.now() - start;
|
|
260
260
|
logger.success(`Vite server built in ${time}ms`);
|
|
261
|
-
await onBuild();
|
|
262
261
|
ctx.nuxt.callHook("bundler:change", {});
|
|
262
|
+
await onBuild();
|
|
263
263
|
};
|
|
264
264
|
const doBuild = debounce(_doBuild);
|
|
265
265
|
await _doBuild();
|
package/dist/index.mjs
CHANGED
|
@@ -24,7 +24,7 @@ import replace from '@rollup/plugin-replace';
|
|
|
24
24
|
import { resolveTSConfig } from 'pkg-types';
|
|
25
25
|
import fse from 'fs-extra';
|
|
26
26
|
|
|
27
|
-
const version = "5.0.0-rc.
|
|
27
|
+
const version = "5.0.0-rc.115";
|
|
28
28
|
|
|
29
29
|
let _distDir = dirname(fileURLToPath(import.meta.url));
|
|
30
30
|
if (_distDir.match(/(chunks|shared)$/))
|
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.115",
|
|
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.115",
|
|
29
|
+
"@monkeyplus/flow-kit": "5.0.0-rc.115",
|
|
30
|
+
"@monkeyplus/flow-schema": "5.0.0-rc.115",
|
|
31
31
|
"@rollup/plugin-replace": "^4.0.0",
|
|
32
32
|
"@vueuse/head": "^1.0.16",
|
|
33
33
|
"c12": "^1.0.1",
|