@storm-software/workspace-tools 1.129.2 → 1.130.0
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
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type { UnbuildBuildOptions } from "../types";
|
|
2
1
|
import { type DependentBuildableProjectNode } from "@nx/js/src/utils/buildable-libs-utils.js";
|
|
3
|
-
import type { PackageJson } from "nx/src/utils/package-json.js";
|
|
4
2
|
import type { StormConfig } from "@storm-software/config";
|
|
3
|
+
import type { PackageJson } from "nx/src/utils/package-json.js";
|
|
5
4
|
import { type BuildConfig } from "unbuild";
|
|
6
|
-
|
|
5
|
+
import type { UnbuildBuildOptions } from "../types";
|
|
6
|
+
export declare function getUnbuildBuildOptions(config: StormConfig, options: UnbuildBuildOptions, dependencies: DependentBuildableProjectNode[], packageJson: PackageJson): Promise<BuildConfig[]>;
|
|
@@ -3,3 +3,4 @@ import type { StormConfig } from "@storm-software/config";
|
|
|
3
3
|
import type { TypeScriptBuildOptions } from "../../declarations";
|
|
4
4
|
export declare const generatePackageJson: (config: StormConfig, projectRoot: string, sourceRoot: string, projectName: string, options: TypeScriptBuildOptions) => Promise<Record<string, any>>;
|
|
5
5
|
export declare const formatPackageJson: (config: StormConfig, projectRoot: string, sourceRoot: string, projectName: string, options: Pick<TypeScriptBuildOptions, "tsConfig" | "external" | "generatePackageJson" | "bundle" | "includeSrc">, packageJson: Record<string, any>, projectGraph: ProjectGraph, projectsConfigurations: Record<string, ProjectConfiguration>) => Promise<Record<string, any>>;
|
|
6
|
+
export declare const addWorkspacePackageJsonFields: (config: StormConfig, projectRoot: string, sourceRoot: string, projectName: string, includeSrc: boolean | undefined, packageJson: Record<string, any>) => Record<string, any>;
|