@storm-software/untyped 0.24.125 → 0.24.126
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/README.md +1 -1
- package/bin/untyped.cjs +7 -3
- package/bin/untyped.js +7 -3
- package/dist/generate.d.cts +2 -2
- package/dist/generate.d.ts +2 -2
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/{types-B0erLKyc.d.cts → types-CWW84bvC.d.cts} +6 -6
- package/dist/{types-B0erLKyc.d.ts → types-CWW84bvC.d.ts} +6 -6
- package/dist/{types-D-YNP2Zk.d.cts → types-Dug-2iKz.d.cts} +6 -6
- package/dist/{types-D-YNP2Zk.d.ts → types-Dug-2iKz.d.ts} +6 -6
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
27
27
|
|
|
28
28
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
29
29
|
|
|
30
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
31
31
|
|
|
32
32
|
<!-- prettier-ignore-start -->
|
|
33
33
|
<!-- markdownlint-disable -->
|
package/bin/untyped.cjs
CHANGED
|
@@ -23,7 +23,7 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
23
23
|
));
|
|
24
24
|
|
|
25
25
|
// ../config/src/schema.ts
|
|
26
|
-
var z = __toESM(require("zod/mini"), 1);
|
|
26
|
+
var z = __toESM(require("zod/v4/mini"), 1);
|
|
27
27
|
|
|
28
28
|
// ../config/src/constants.ts
|
|
29
29
|
var STORM_DEFAULT_DOCS = "https://docs.stormsoftware.com";
|
|
@@ -2075,9 +2075,13 @@ var createStormWorkspaceConfig = async (extensionName, schema, workspaceRoot, sk
|
|
|
2075
2075
|
configInput.variant = (0, import_node_fs3.existsSync)(joinPaths(_workspaceRoot, "nx.json")) || (0, import_node_fs3.existsSync)(joinPaths(_workspaceRoot, ".nx")) || (0, import_node_fs3.existsSync)(joinPaths(_workspaceRoot, "lerna.json")) || (0, import_node_fs3.existsSync)(joinPaths(_workspaceRoot, "turbo.json")) ? "monorepo" : "minimal";
|
|
2076
2076
|
}
|
|
2077
2077
|
try {
|
|
2078
|
-
|
|
2079
|
-
|
|
2078
|
+
const parseResult = await Promise.resolve(
|
|
2079
|
+
workspaceConfigSchema._zod.parse(
|
|
2080
|
+
{ value: configInput, issues: [] },
|
|
2081
|
+
{ async: true }
|
|
2082
|
+
)
|
|
2080
2083
|
);
|
|
2084
|
+
result = applyDefaultConfig(parseResult.value);
|
|
2081
2085
|
result.workspaceRoot ??= _workspaceRoot;
|
|
2082
2086
|
} catch (error) {
|
|
2083
2087
|
throw new Error(
|
package/bin/untyped.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
|
|
3
3
|
// ../config/src/schema.ts
|
|
4
|
-
import * as z from "zod/mini";
|
|
4
|
+
import * as z from "zod/v4/mini";
|
|
5
5
|
|
|
6
6
|
// ../config/src/constants.ts
|
|
7
7
|
var STORM_DEFAULT_DOCS = "https://docs.stormsoftware.com";
|
|
@@ -2053,9 +2053,13 @@ var createStormWorkspaceConfig = async (extensionName, schema, workspaceRoot, sk
|
|
|
2053
2053
|
configInput.variant = existsSync3(joinPaths(_workspaceRoot, "nx.json")) || existsSync3(joinPaths(_workspaceRoot, ".nx")) || existsSync3(joinPaths(_workspaceRoot, "lerna.json")) || existsSync3(joinPaths(_workspaceRoot, "turbo.json")) ? "monorepo" : "minimal";
|
|
2054
2054
|
}
|
|
2055
2055
|
try {
|
|
2056
|
-
|
|
2057
|
-
|
|
2056
|
+
const parseResult = await Promise.resolve(
|
|
2057
|
+
workspaceConfigSchema._zod.parse(
|
|
2058
|
+
{ value: configInput, issues: [] },
|
|
2059
|
+
{ async: true }
|
|
2060
|
+
)
|
|
2058
2061
|
);
|
|
2062
|
+
result = applyDefaultConfig(parseResult.value);
|
|
2059
2063
|
result.workspaceRoot ??= _workspaceRoot;
|
|
2060
2064
|
} catch (error) {
|
|
2061
2065
|
throw new Error(
|
package/dist/generate.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { S as StormWorkspaceConfig } from './types-
|
|
1
|
+
import { S as StormWorkspaceConfig } from './types-CWW84bvC.cjs';
|
|
2
2
|
import 'zod';
|
|
3
|
-
import 'zod/mini';
|
|
3
|
+
import 'zod/v4/mini';
|
|
4
4
|
|
|
5
5
|
declare const getGenerateAction: (config: StormWorkspaceConfig) => (options: {
|
|
6
6
|
entry?: string | string[];
|
package/dist/generate.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { S as StormWorkspaceConfig } from './types-
|
|
1
|
+
import { S as StormWorkspaceConfig } from './types-CWW84bvC.js';
|
|
2
2
|
import 'zod';
|
|
3
|
-
import 'zod/mini';
|
|
3
|
+
import 'zod/v4/mini';
|
|
4
4
|
|
|
5
5
|
declare const getGenerateAction: (config: StormWorkspaceConfig) => (options: {
|
|
6
6
|
entry?: string | string[];
|
package/dist/index.d.cts
CHANGED
|
@@ -3,8 +3,8 @@ export { generateDeclaration, generateDeclarationFile } from './generators/dts.c
|
|
|
3
3
|
export { generateJsonSchemaFile } from './generators/json-schema.cjs';
|
|
4
4
|
export { generateMarkdown, generateMarkdownFile } from './generators/markdown.cjs';
|
|
5
5
|
export { getOutputFile } from './utilities.cjs';
|
|
6
|
-
import './types-
|
|
6
|
+
import './types-CWW84bvC.cjs';
|
|
7
7
|
import 'zod';
|
|
8
|
-
import 'zod/mini';
|
|
8
|
+
import 'zod/v4/mini';
|
|
9
9
|
import 'glob';
|
|
10
10
|
import 'untyped';
|
package/dist/index.d.ts
CHANGED
|
@@ -3,8 +3,8 @@ export { generateDeclaration, generateDeclarationFile } from './generators/dts.j
|
|
|
3
3
|
export { generateJsonSchemaFile } from './generators/json-schema.js';
|
|
4
4
|
export { generateMarkdown, generateMarkdownFile } from './generators/markdown.js';
|
|
5
5
|
export { getOutputFile } from './utilities.js';
|
|
6
|
-
import './types-
|
|
6
|
+
import './types-CWW84bvC.js';
|
|
7
7
|
import 'zod';
|
|
8
|
-
import 'zod/mini';
|
|
8
|
+
import 'zod/v4/mini';
|
|
9
9
|
import 'glob';
|
|
10
10
|
import 'untyped';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as z$1 from 'zod';
|
|
2
|
-
import * as z from 'zod/mini';
|
|
2
|
+
import * as z from 'zod/v4/mini';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Storm Workspace config values used during various dev-ops processes. It represents the config of the entire monorepo.
|
|
@@ -79,14 +79,14 @@ 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
|
+
error: "error";
|
|
82
83
|
success: "success";
|
|
83
|
-
info: "info";
|
|
84
|
-
debug: "debug";
|
|
85
|
-
fatal: "fatal";
|
|
86
|
-
performance: "performance";
|
|
87
84
|
silent: "silent";
|
|
88
|
-
|
|
85
|
+
fatal: "fatal";
|
|
89
86
|
warn: "warn";
|
|
87
|
+
info: "info";
|
|
88
|
+
performance: "performance";
|
|
89
|
+
debug: "debug";
|
|
90
90
|
trace: "trace";
|
|
91
91
|
all: "all";
|
|
92
92
|
}>>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as z$1 from 'zod';
|
|
2
|
-
import * as z from 'zod/mini';
|
|
2
|
+
import * as z from 'zod/v4/mini';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Storm Workspace config values used during various dev-ops processes. It represents the config of the entire monorepo.
|
|
@@ -79,14 +79,14 @@ 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
|
+
error: "error";
|
|
82
83
|
success: "success";
|
|
83
|
-
info: "info";
|
|
84
|
-
debug: "debug";
|
|
85
|
-
fatal: "fatal";
|
|
86
|
-
performance: "performance";
|
|
87
84
|
silent: "silent";
|
|
88
|
-
|
|
85
|
+
fatal: "fatal";
|
|
89
86
|
warn: "warn";
|
|
87
|
+
info: "info";
|
|
88
|
+
performance: "performance";
|
|
89
|
+
debug: "debug";
|
|
90
90
|
trace: "trace";
|
|
91
91
|
all: "all";
|
|
92
92
|
}>>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as z$1 from 'zod';
|
|
2
|
-
import * as z from 'zod/mini';
|
|
2
|
+
import * as z from 'zod/v4/mini';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Storm Workspace config values used during various dev-ops processes. It represents the config of the entire monorepo.
|
|
@@ -79,14 +79,14 @@ 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
|
-
error: "error";
|
|
83
82
|
success: "success";
|
|
84
|
-
silent: "silent";
|
|
85
|
-
fatal: "fatal";
|
|
86
|
-
warn: "warn";
|
|
87
83
|
info: "info";
|
|
88
|
-
performance: "performance";
|
|
89
84
|
debug: "debug";
|
|
85
|
+
fatal: "fatal";
|
|
86
|
+
performance: "performance";
|
|
87
|
+
silent: "silent";
|
|
88
|
+
error: "error";
|
|
89
|
+
warn: "warn";
|
|
90
90
|
trace: "trace";
|
|
91
91
|
all: "all";
|
|
92
92
|
}>>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as z$1 from 'zod';
|
|
2
|
-
import * as z from 'zod/mini';
|
|
2
|
+
import * as z from 'zod/v4/mini';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Storm Workspace config values used during various dev-ops processes. It represents the config of the entire monorepo.
|
|
@@ -79,14 +79,14 @@ 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
|
-
error: "error";
|
|
83
82
|
success: "success";
|
|
84
|
-
silent: "silent";
|
|
85
|
-
fatal: "fatal";
|
|
86
|
-
warn: "warn";
|
|
87
83
|
info: "info";
|
|
88
|
-
performance: "performance";
|
|
89
84
|
debug: "debug";
|
|
85
|
+
fatal: "fatal";
|
|
86
|
+
performance: "performance";
|
|
87
|
+
silent: "silent";
|
|
88
|
+
error: "error";
|
|
89
|
+
warn: "warn";
|
|
90
90
|
trace: "trace";
|
|
91
91
|
all: "all";
|
|
92
92
|
}>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/untyped",
|
|
3
|
-
"version": "0.24.
|
|
3
|
+
"version": "0.24.126",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing `untyped` utilities for building Storm Software libraries and applications",
|
|
6
6
|
"repository": {
|
|
@@ -179,7 +179,7 @@
|
|
|
179
179
|
"sullivanpj"
|
|
180
180
|
],
|
|
181
181
|
"dependencies": {
|
|
182
|
-
"@storm-software/config-tools": "^1.189.
|
|
182
|
+
"@storm-software/config-tools": "^1.189.63",
|
|
183
183
|
"commander": "^12.1.0",
|
|
184
184
|
"glob": "^11.1.0",
|
|
185
185
|
"jiti": "2.4.2",
|
|
@@ -192,5 +192,5 @@
|
|
|
192
192
|
},
|
|
193
193
|
"publishConfig": { "access": "public" },
|
|
194
194
|
"sideEffects": false,
|
|
195
|
-
"gitHead": "
|
|
195
|
+
"gitHead": "6b69d24518cb551fa374e8769d1adfbc34448ffb"
|
|
196
196
|
}
|