@storm-software/untyped 0.24.124 → 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 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
- [![Version](https://img.shields.io/badge/version-0.24.122-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
30
+ [![Version](https://img.shields.io/badge/version-0.24.124-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
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
- result = applyDefaultConfig(
2079
- await workspaceConfigSchema.parseAsync(configInput)
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
- result = applyDefaultConfig(
2057
- await workspaceConfigSchema.parseAsync(configInput)
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(
@@ -1,6 +1,6 @@
1
- import { S as StormWorkspaceConfig } from './types-D-YNP2Zk.cjs';
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[];
@@ -1,6 +1,6 @@
1
- import { S as StormWorkspaceConfig } from './types-D-YNP2Zk.js';
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-D-YNP2Zk.cjs';
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-D-YNP2Zk.js';
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
- error: "error";
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
- error: "error";
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.124",
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.61",
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": "f985b3ae531bc4f925e1ff5f27b515709c7fbf61"
195
+ "gitHead": "6b69d24518cb551fa374e8769d1adfbc34448ffb"
196
196
  }