@modern-js/plugin 0.0.0-nightly-20240817170640 → 0.0.0-nightly-20240819170736

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.
@@ -2,8 +2,8 @@
2
2
  * modified from https://github.com/farrow-js/farrow/tree/master/packages/farrow-pipeline
3
3
  * license at https://github.com/farrow-js/farrow/blob/master/LICENSE
4
4
  */
5
- import { createContext, Context } from './context';
6
- import { Next } from './counter';
5
+ import { createContext, type Context } from './context';
6
+ import { type Next } from './counter';
7
7
  export type { Next };
8
8
  export { createContext };
9
9
  export type { Context };
@@ -1,4 +1,4 @@
1
- import { MaybeAsync } from '../farrow-pipeline';
1
+ import { type MaybeAsync } from '../farrow-pipeline';
2
2
  declare const ASYNC_WATERFALL_SYMBOL: unique symbol;
3
3
  export type AsyncBrook<I = unknown> = (I: I) => MaybeAsync<I>;
4
4
  export type AsyncBrookInput<I = unknown> = AsyncBrook<I> | {
@@ -1,4 +1,4 @@
1
- import { MaybeAsync } from '../farrow-pipeline';
1
+ import { type MaybeAsync } from '../farrow-pipeline';
2
2
  declare const ASYNC_WORKFLOW_SYMBOL: unique symbol;
3
3
  export type AsyncWorker<I, O> = (I: I) => MaybeAsync<O>;
4
4
  export type AsyncWorkers<I, O> = AsyncWorker<I, O>[];
@@ -1,4 +1,4 @@
1
- import { MaybeAsync } from '../farrow-pipeline';
1
+ import { type MaybeAsync } from '../farrow-pipeline';
2
2
  declare const ASYNC_INTERRUPT_WORKFLOW_SYMBOL: unique symbol;
3
3
  export type AsyncInterruptWorker<I, O> = (I: I, interrupt: (result: any) => void) => MaybeAsync<O>;
4
4
  export type AsyncInterruptWorkers<I, O> = AsyncInterruptWorker<I, O>[];
package/package.json CHANGED
@@ -15,7 +15,7 @@
15
15
  "modern",
16
16
  "modern.js"
17
17
  ],
18
- "version": "0.0.0-nightly-20240817170640",
18
+ "version": "0.0.0-nightly-20240819170736",
19
19
  "jsnext:source": "./src/index.ts",
20
20
  "types": "./dist/types/index.d.ts",
21
21
  "main": "./dist/cjs/index.js",
@@ -33,15 +33,15 @@
33
33
  },
34
34
  "dependencies": {
35
35
  "@swc/helpers": "0.5.3",
36
- "@modern-js/utils": "0.0.0-nightly-20240817170640"
36
+ "@modern-js/utils": "0.0.0-nightly-20240819170736"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@types/jest": "^29",
40
40
  "@types/node": "^14",
41
41
  "jest": "^29",
42
42
  "typescript": "^5",
43
- "@scripts/build": "0.0.0-nightly-20240817170640",
44
- "@scripts/jest-config": "0.0.0-nightly-20240817170640"
43
+ "@scripts/build": "0.0.0-nightly-20240819170736",
44
+ "@scripts/jest-config": "0.0.0-nightly-20240819170736"
45
45
  },
46
46
  "sideEffects": false,
47
47
  "publishConfig": {