@monkeyplus/flow 4.0.0-beta.11 → 4.0.0-beta.12
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.cjs +3 -2
- package/dist/index.mjs +3 -2
- package/package.json +1 -1
- package/types/flow.d.ts +1 -0
package/dist/index.cjs
CHANGED
|
@@ -38,7 +38,7 @@ const fs__default$1 = /*#__PURE__*/_interopDefaultLegacy(fs$1);
|
|
|
38
38
|
const chokidar__default = /*#__PURE__*/_interopDefaultLegacy(chokidar);
|
|
39
39
|
|
|
40
40
|
const name = "@monkeyplus/flow";
|
|
41
|
-
const version = "4.0.0-beta.
|
|
41
|
+
const version = "4.0.0-beta.12";
|
|
42
42
|
const description = "Utils hapi";
|
|
43
43
|
const author = "Andres Navarrete";
|
|
44
44
|
const license = "MIT";
|
|
@@ -845,7 +845,8 @@ const RegisterCommon = async (server, configs) => {
|
|
|
845
845
|
if (!isGenerate) {
|
|
846
846
|
const hmr = createHmr({
|
|
847
847
|
dirs: configs.hmr.dirs,
|
|
848
|
-
relativeTo: configs.relativeTo
|
|
848
|
+
relativeTo: configs.relativeTo,
|
|
849
|
+
extensions: configs.hmr.extensions
|
|
849
850
|
});
|
|
850
851
|
hmr.hooks.hook("page:refresh", () => {
|
|
851
852
|
setTimeout(() => {
|
package/dist/index.mjs
CHANGED
|
@@ -12,7 +12,7 @@ import { createHooks } from 'hookable';
|
|
|
12
12
|
import chokidar from 'chokidar';
|
|
13
13
|
|
|
14
14
|
const name = "@monkeyplus/flow";
|
|
15
|
-
const version = "4.0.0-beta.
|
|
15
|
+
const version = "4.0.0-beta.12";
|
|
16
16
|
const description = "Utils hapi";
|
|
17
17
|
const author = "Andres Navarrete";
|
|
18
18
|
const license = "MIT";
|
|
@@ -819,7 +819,8 @@ const RegisterCommon = async (server, configs) => {
|
|
|
819
819
|
if (!isGenerate) {
|
|
820
820
|
const hmr = createHmr({
|
|
821
821
|
dirs: configs.hmr.dirs,
|
|
822
|
-
relativeTo: configs.relativeTo
|
|
822
|
+
relativeTo: configs.relativeTo,
|
|
823
|
+
extensions: configs.hmr.extensions
|
|
823
824
|
});
|
|
824
825
|
hmr.hooks.hook("page:refresh", () => {
|
|
825
826
|
setTimeout(() => {
|
package/package.json
CHANGED