@monkeyplus/flow 5.0.0-rc.112 → 5.0.0-rc.114

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.
@@ -1,7 +1,7 @@
1
1
  import type { RadixRouter } from 'radix3';
2
2
  import type { Hookable } from 'hookable';
3
3
  import type { FlowAppUtils, FlowPage, RuntimeConfig } from '@monkeyplus/flow-schema';
4
- declare type HookResult = Promise<void> | void;
4
+ type HookResult = Promise<void> | void;
5
5
  export interface FlowAppHooks {
6
6
  'flow:pages': (page: FlowPage[]) => HookResult;
7
7
  'eta:plugin': (options: any) => HookResult;
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.112";
27
+ const version = "5.0.0-rc.114";
28
28
 
29
29
  let _distDir = dirname(fileURLToPath(import.meta.url));
30
30
  if (_distDir.match(/(chunks|shared)$/))
@@ -1,5 +1,5 @@
1
1
  import type { GetPages, PageDefinition } from '@monkeyplus/flow-schema';
2
2
  export declare function definePage(page: PageDefinition): {
3
- pages: any[];
3
+ pages: never[];
4
4
  getPages: GetPages;
5
5
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monkeyplus/flow",
3
- "version": "5.0.0-rc.112",
3
+ "version": "5.0.0-rc.114",
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.112",
29
- "@monkeyplus/flow-kit": "5.0.0-rc.112",
30
- "@monkeyplus/flow-schema": "5.0.0-rc.112",
28
+ "@monkeyplus/flow-cli": "5.0.0-rc.114",
29
+ "@monkeyplus/flow-kit": "5.0.0-rc.114",
30
+ "@monkeyplus/flow-schema": "5.0.0-rc.114",
31
31
  "@rollup/plugin-replace": "^4.0.0",
32
32
  "@vueuse/head": "^1.0.16",
33
33
  "c12": "^1.0.1",