@storm-software/build-tools 0.158.67 → 0.158.68
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/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/types.d.mts +1 -1
- package/dist/types.d.ts +1 -1
- package/dist/utilities/copy-assets.d.mts +1 -1
- package/dist/utilities/copy-assets.d.ts +1 -1
- package/dist/utilities/generate-package-json.d.mts +1 -1
- package/dist/utilities/generate-package-json.d.ts +1 -1
- package/dist/utilities/get-entry-points.d.mts +1 -1
- package/dist/utilities/get-entry-points.d.ts +1 -1
- package/dist/utilities/get-env.d.mts +1 -1
- package/dist/utilities/get-env.d.ts +1 -1
- package/dist/utilities/index.d.mts +1 -1
- package/dist/utilities/index.d.ts +1 -1
- package/package.json +2 -2
- package/dist/{types-B_lvFfKV.d.mts → types-CG4D7Rp3.d.mts} +1 -1
- package/dist/{types-B_lvFfKV.d.ts → types-CG4D7Rp3.d.ts} +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -14,7 +14,7 @@ export { getExternalDependencies, getExtraDependencies, getInternalDependencies
|
|
|
14
14
|
export { readNxConfig } from './utilities/read-nx-config.mjs';
|
|
15
15
|
export { createTaskId, getAllWorkspaceTaskGraphs } from './utilities/task-graph.mjs';
|
|
16
16
|
import 'rollup';
|
|
17
|
-
import './types-
|
|
17
|
+
import './types-CG4D7Rp3.mjs';
|
|
18
18
|
import 'zod';
|
|
19
19
|
import 'zod/mini';
|
|
20
20
|
import '@nx/devkit';
|
package/dist/index.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ export { getExternalDependencies, getExtraDependencies, getInternalDependencies
|
|
|
14
14
|
export { readNxConfig } from './utilities/read-nx-config.js';
|
|
15
15
|
export { createTaskId, getAllWorkspaceTaskGraphs } from './utilities/task-graph.js';
|
|
16
16
|
import 'rollup';
|
|
17
|
-
import './types-
|
|
17
|
+
import './types-CG4D7Rp3.js';
|
|
18
18
|
import 'zod';
|
|
19
19
|
import 'zod/mini';
|
|
20
20
|
import '@nx/devkit';
|
package/dist/types.d.mts
CHANGED
package/dist/types.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ export { getOutExtension } from './get-out-extension.mjs';
|
|
|
7
7
|
export { getExternalDependencies, getExtraDependencies, getInternalDependencies } from './get-project-deps.mjs';
|
|
8
8
|
export { readNxConfig } from './read-nx-config.mjs';
|
|
9
9
|
export { createTaskId, getAllWorkspaceTaskGraphs } from './task-graph.mjs';
|
|
10
|
-
import '../types-
|
|
10
|
+
import '../types-CG4D7Rp3.mjs';
|
|
11
11
|
import 'zod';
|
|
12
12
|
import 'zod/mini';
|
|
13
13
|
import '../types.mjs';
|
|
@@ -7,7 +7,7 @@ export { getOutExtension } from './get-out-extension.js';
|
|
|
7
7
|
export { getExternalDependencies, getExtraDependencies, getInternalDependencies } from './get-project-deps.js';
|
|
8
8
|
export { readNxConfig } from './read-nx-config.js';
|
|
9
9
|
export { createTaskId, getAllWorkspaceTaskGraphs } from './task-graph.js';
|
|
10
|
-
import '../types-
|
|
10
|
+
import '../types-CG4D7Rp3.js';
|
|
11
11
|
import 'zod';
|
|
12
12
|
import 'zod/mini';
|
|
13
13
|
import '../types.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/build-tools",
|
|
3
|
-
"version": "0.158.
|
|
3
|
+
"version": "0.158.68",
|
|
4
4
|
"description": "A comprehensive set of tools for building and managing projects within a Storm workspace. Includes builders such as rollup, rolldown, tsup, and unbuild, along with various utilities.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "github",
|
|
@@ -168,5 +168,5 @@
|
|
|
168
168
|
"typescript": "^5.9.3"
|
|
169
169
|
},
|
|
170
170
|
"publishConfig": { "access": "public" },
|
|
171
|
-
"gitHead": "
|
|
171
|
+
"gitHead": "31bafb4a3df535a83106fea15b3e0ed3a4bce93a"
|
|
172
172
|
}
|
|
@@ -79,13 +79,13 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
|
|
|
79
79
|
timezone: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
80
80
|
locale: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
81
81
|
logLevel: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
82
|
+
debug: "debug";
|
|
82
83
|
error: "error";
|
|
83
84
|
success: "success";
|
|
84
85
|
silent: "silent";
|
|
85
86
|
fatal: "fatal";
|
|
86
87
|
warn: "warn";
|
|
87
88
|
info: "info";
|
|
88
|
-
debug: "debug";
|
|
89
89
|
trace: "trace";
|
|
90
90
|
all: "all";
|
|
91
91
|
}>>;
|
|
@@ -79,13 +79,13 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
|
|
|
79
79
|
timezone: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
80
80
|
locale: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
81
81
|
logLevel: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
82
|
+
debug: "debug";
|
|
82
83
|
error: "error";
|
|
83
84
|
success: "success";
|
|
84
85
|
silent: "silent";
|
|
85
86
|
fatal: "fatal";
|
|
86
87
|
warn: "warn";
|
|
87
88
|
info: "info";
|
|
88
|
-
debug: "debug";
|
|
89
89
|
trace: "trace";
|
|
90
90
|
all: "all";
|
|
91
91
|
}>>;
|