@storm-software/workspace-tools 1.175.3 → 1.175.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.175.3",
3
+ "version": "1.175.5",
4
4
  "type": "commonjs",
5
5
  "description": "⚡ A Nx plugin package that contains various executors and generators used in a Storm workspaces.",
6
6
  "repository": {
@@ -1,8 +1,6 @@
1
1
  import { type ExecutorContext, type PromiseExecutor } from "@nx/devkit";
2
2
  import type { StormConfig } from "@storm-software/config";
3
3
  import { RollupExecutorSchema } from "./schema";
4
- export declare function rollupExecutorFn(options: RollupExecutorSchema, context: ExecutorContext, config?: StormConfig): AsyncGenerator<unknown, {
5
- success: boolean;
6
- }, undefined>;
4
+ export declare function rollupExecutorFn(options: RollupExecutorSchema, context: ExecutorContext, config?: StormConfig): AsyncGenerator<unknown, any, undefined>;
7
5
  declare const _default: PromiseExecutor<RollupExecutorSchema>;
8
6
  export default _default;