@storm-software/workspace-tools 1.175.3 → 1.175.4
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/CHANGELOG.md +7 -0
- package/index.js +38052 -13265
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/rollup/executor.d.ts +4 -3
- package/src/executors/rollup/executor.js +31448 -6661
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { type ExecutorContext, type PromiseExecutor } from "@nx/devkit";
|
|
2
2
|
import type { StormConfig } from "@storm-software/config";
|
|
3
|
+
import * as rollup from "rollup";
|
|
4
|
+
import { NormalizedRollupExecutorOptions } from "@nx/rollup/src/executors/rollup/lib/normalize";
|
|
3
5
|
import { RollupExecutorSchema } from "./schema";
|
|
4
|
-
export declare function rollupExecutorFn(options: RollupExecutorSchema, context: ExecutorContext, config?: StormConfig): AsyncGenerator<unknown,
|
|
5
|
-
|
|
6
|
-
}, undefined>;
|
|
6
|
+
export declare function rollupExecutorFn(options: RollupExecutorSchema, context: ExecutorContext, config?: StormConfig): AsyncGenerator<unknown, any, undefined>;
|
|
7
|
+
export declare function createRollupOptions(options: NormalizedRollupExecutorOptions, context: ExecutorContext): Promise<rollup.RollupOptions | rollup.RollupOptions[]>;
|
|
7
8
|
declare const _default: PromiseExecutor<RollupExecutorSchema>;
|
|
8
9
|
export default _default;
|