@storm-software/workspace-tools 1.147.0 → 1.147.1

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.147.0",
3
+ "version": "1.147.1",
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,2 +1,2 @@
1
1
  import type { BuildOptions, GetConfigParams } from "../../declarations";
2
- export declare const browserConfig: ({ entry, outDir, projectRoot, workspaceRoot, tsconfig, splitting, treeshake, debug, shims, external, banner, platform, verbose, metafile, skipNativeModulesPlugin, define, env, plugins, generatePackageJson, dtsTsConfig, minify, getTransform, }: GetConfigParams) => BuildOptions;
2
+ export declare const browserConfig: ({ entry, outDir, projectRoot, workspaceRoot, tsconfig, splitting, treeshake, debug, shims, external, banner, platform, verbose, metafile, skipNativeModulesPlugin, define, env, plugins, generatePackageJson, minify, getTransform }: GetConfigParams) => BuildOptions;
@@ -1,2 +1,2 @@
1
1
  import type { BuildOptions, GetConfigParams } from "../../declarations";
2
- export declare function defaultConfig({ entry, outDir, projectRoot, workspaceRoot, tsconfig, splitting, treeshake, format, debug, shims, external, banner, platform, verbose, apiReport, docModel, tsdocMetadata, metafile, skipNativeModulesPlugin, define, env, plugins, generatePackageJson, dtsTsConfig, minify, getTransform }: GetConfigParams): BuildOptions;
2
+ export declare function defaultConfig({ entry, outDir, projectRoot, workspaceRoot, tsconfig, splitting, treeshake, format, debug, shims, external, banner, platform, verbose, apiReport, docModel, tsdocMetadata, metafile, skipNativeModulesPlugin, define, env, plugins, generatePackageJson, minify, getTransform }: GetConfigParams): BuildOptions;
@@ -1,2 +1,2 @@
1
1
  import type { BuildOptions, GetConfigParams } from "../../declarations";
2
- export declare const neutralConfig: ({ entry, outDir, projectRoot, workspaceRoot, tsconfig, splitting, treeshake, debug, shims, external, banner, platform, verbose, metafile, skipNativeModulesPlugin, define, env, apiReport, docModel, tsdocMetadata, plugins, generatePackageJson, dtsTsConfig, minify, getTransform }: GetConfigParams) => BuildOptions;
2
+ export declare const neutralConfig: ({ entry, outDir, projectRoot, workspaceRoot, tsconfig, splitting, treeshake, debug, shims, external, banner, platform, verbose, metafile, skipNativeModulesPlugin, define, env, apiReport, docModel, tsdocMetadata, plugins, generatePackageJson, minify, getTransform }: GetConfigParams) => BuildOptions;
@@ -1,3 +1,3 @@
1
1
  import type { BuildOptions, GetConfigParams } from "../../declarations";
2
- export declare function nodeConfig({ entry, outDir, projectRoot, workspaceRoot, tsconfig, splitting, treeshake, debug, shims, external, banner, platform, verbose, apiReport, docModel, tsdocMetadata, metafile, skipNativeModulesPlugin, define, env, plugins, generatePackageJson, dtsTsConfig, minify, getTransform }: GetConfigParams): BuildOptions;
3
- export declare function workerConfig({ entry, outDir, projectRoot, workspaceRoot, tsconfig, splitting, treeshake, debug, external, banner, verbose, apiReport, docModel, tsdocMetadata, shims, metafile, skipNativeModulesPlugin, define, env, plugins, generatePackageJson, dtsTsConfig, getTransform }: GetConfigParams): BuildOptions;
2
+ export declare function nodeConfig({ entry, outDir, projectRoot, workspaceRoot, tsconfig, splitting, treeshake, debug, shims, external, banner, platform, verbose, apiReport, docModel, tsdocMetadata, metafile, skipNativeModulesPlugin, define, env, plugins, generatePackageJson, minify, getTransform }: GetConfigParams): BuildOptions;
3
+ export declare function workerConfig({ entry, outDir, projectRoot, workspaceRoot, tsconfig, splitting, treeshake, debug, external, banner, verbose, apiReport, docModel, tsdocMetadata, shims, metafile, skipNativeModulesPlugin, define, env, plugins, generatePackageJson, getTransform }: GetConfigParams): BuildOptions;
@@ -1,3 +1,4 @@
1
1
  export * from "./analyze-plugin";
2
2
  export * from "./swc-plugin";
3
+ export * from "./ts-resolve";
3
4
  export * from "./type-definitions";
@@ -0,0 +1,6 @@
1
+ import type { PluginImpl } from "rollup";
2
+ export type TsResolveOptions = {
3
+ resolveOnly?: Array<string | RegExp>;
4
+ ignore?: (source: string, importer?: string) => boolean;
5
+ };
6
+ export declare const tsResolvePlugin: PluginImpl<TsResolveOptions>;
@@ -1,5 +1,7 @@
1
- export declare const outExtension: ({ format }: {
1
+ import { PackageJson } from "pkg-types";
2
+ export declare const outExtension: ({ format, pkgType }: {
2
3
  format?: string;
4
+ pkgType?: PackageJson["type"];
3
5
  }) => {
4
6
  js: string;
5
7
  dts: string;
@@ -68342,14 +68342,13 @@ async function presetGeneratorFn(tree, options) {
68342
68342
  options.name,
68343
68343
  options.namespace,
68344
68344
  "storm",
68345
- "stormstack",
68345
+ "storm-stack",
68346
68346
  "storm-ops",
68347
68347
  "acidic",
68348
- "acidic-lang",
68349
- "acidic-model",
68348
+ "acidic-engine",
68350
68349
  "cyclone-ui",
68351
- "nextjs",
68352
- "prisma",
68350
+ "rust",
68351
+ "nx",
68353
68352
  "graphql",
68354
68353
  "sullivanpj",
68355
68354
  "monorepo"
@@ -68373,7 +68372,7 @@ async function presetGeneratorFn(tree, options) {
68373
68372
  },
68374
68373
  {
68375
68374
  "name": "Pat Sullivan",
68376
- "email": "pat@stormsoftware.com",
68375
+ "email": "admin@stormsoftware.com",
68377
68376
  "url": "https://patsullivan.org"
68378
68377
  }
68379
68378
  ];