@storm-software/tsdown 0.45.144 → 0.45.146

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.45.142-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.45.144-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/dist/build.cjs CHANGED
@@ -1,10 +1,10 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkDD6WYFPXcjs = require('./chunk-DD6WYFPX.cjs');
4
+ var _chunkNIUVWGBPcjs = require('./chunk-NIUVWGBP.cjs');
5
5
  require('./chunk-FAFMBXRT.cjs');
6
6
  require('./chunk-DPNREUD4.cjs');
7
7
 
8
8
 
9
9
 
10
- exports.build = _chunkDD6WYFPXcjs.build; exports.cleanOutputPath = _chunkDD6WYFPXcjs.cleanOutputPath;
10
+ exports.build = _chunkNIUVWGBPcjs.build; exports.cleanOutputPath = _chunkNIUVWGBPcjs.cleanOutputPath;
package/dist/build.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  build,
3
3
  cleanOutputPath
4
- } from "./chunk-D2KV7OCO.js";
4
+ } from "./chunk-TBIGYYVQ.js";
5
5
  import "./chunk-KT2YPNCX.js";
6
6
  import "./chunk-BMIIFT6J.js";
7
7
  export {
@@ -530,7 +530,7 @@ var STORM_DEFAULT_ERROR_CODES_FILE = "tools/errors/codes.json";
530
530
  var STORM_DEFAULT_BANNER_ALT = "The workspace's banner image";
531
531
 
532
532
  // ../config/src/schema.ts
533
- var _mini = require('zod/mini'); var z = _interopRequireWildcard(_mini);
533
+ var _mini = require('zod/v4/mini'); var z = _interopRequireWildcard(_mini);
534
534
  var schemaRegistry = z.registry();
535
535
  var colorSchema = z.string().check(
536
536
  z.length(7),
@@ -1915,9 +1915,13 @@ var createStormWorkspaceConfig = async (extensionName, schema, workspaceRoot, sk
1915
1915
  configInput.variant = _fs.existsSync.call(void 0, joinPaths(_workspaceRoot, "nx.json")) || _fs.existsSync.call(void 0, joinPaths(_workspaceRoot, ".nx")) || _fs.existsSync.call(void 0, joinPaths(_workspaceRoot, "lerna.json")) || _fs.existsSync.call(void 0, joinPaths(_workspaceRoot, "turbo.json")) ? "monorepo" : "minimal";
1916
1916
  }
1917
1917
  try {
1918
- result = applyDefaultConfig(
1919
- await workspaceConfigSchema.parseAsync(configInput)
1918
+ const parseResult = await Promise.resolve(
1919
+ workspaceConfigSchema._zod.parse(
1920
+ { value: configInput, issues: [] },
1921
+ { async: true }
1922
+ )
1920
1923
  );
1924
+ result = applyDefaultConfig(parseResult.value);
1921
1925
  result.workspaceRoot ??= _workspaceRoot;
1922
1926
  } catch (error) {
1923
1927
  throw new Error(
@@ -530,7 +530,7 @@ var STORM_DEFAULT_ERROR_CODES_FILE = "tools/errors/codes.json";
530
530
  var STORM_DEFAULT_BANNER_ALT = "The workspace's banner image";
531
531
 
532
532
  // ../config/src/schema.ts
533
- import * as z from "zod/mini";
533
+ import * as z from "zod/v4/mini";
534
534
  var schemaRegistry = z.registry();
535
535
  var colorSchema = z.string().check(
536
536
  z.length(7),
@@ -1915,9 +1915,13 @@ var createStormWorkspaceConfig = async (extensionName, schema, workspaceRoot, sk
1915
1915
  configInput.variant = existsSync4(joinPaths(_workspaceRoot, "nx.json")) || existsSync4(joinPaths(_workspaceRoot, ".nx")) || existsSync4(joinPaths(_workspaceRoot, "lerna.json")) || existsSync4(joinPaths(_workspaceRoot, "turbo.json")) ? "monorepo" : "minimal";
1916
1916
  }
1917
1917
  try {
1918
- result = applyDefaultConfig(
1919
- await workspaceConfigSchema.parseAsync(configInput)
1918
+ const parseResult = await Promise.resolve(
1919
+ workspaceConfigSchema._zod.parse(
1920
+ { value: configInput, issues: [] },
1921
+ { async: true }
1922
+ )
1920
1923
  );
1924
+ result = applyDefaultConfig(parseResult.value);
1921
1925
  result.workspaceRoot ??= _workspaceRoot;
1922
1926
  } catch (error) {
1923
1927
  throw new Error(
package/dist/index.cjs CHANGED
@@ -1,7 +1,7 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkDD6WYFPXcjs = require('./chunk-DD6WYFPX.cjs');
4
+ var _chunkNIUVWGBPcjs = require('./chunk-NIUVWGBP.cjs');
5
5
 
6
6
 
7
7
 
@@ -18,4 +18,4 @@ require('./chunk-ZBPRDZS4.cjs');
18
18
 
19
19
 
20
20
 
21
- exports.build = _chunkDD6WYFPXcjs.build; exports.clean = _chunkFAFMBXRTcjs.clean; exports.cleanDirectories = _chunkFAFMBXRTcjs.cleanDirectories; exports.cleanOutputPath = _chunkDD6WYFPXcjs.cleanOutputPath; exports.getDefaultOptions = _chunkDPNREUD4cjs.getDefaultOptions; exports.toTSDownFormat = _chunkDPNREUD4cjs.toTSDownFormat;
21
+ exports.build = _chunkNIUVWGBPcjs.build; exports.clean = _chunkFAFMBXRTcjs.clean; exports.cleanDirectories = _chunkFAFMBXRTcjs.cleanDirectories; exports.cleanOutputPath = _chunkNIUVWGBPcjs.cleanOutputPath; exports.getDefaultOptions = _chunkDPNREUD4cjs.getDefaultOptions; exports.toTSDownFormat = _chunkDPNREUD4cjs.toTSDownFormat;
package/dist/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  build,
3
3
  cleanOutputPath
4
- } from "./chunk-D2KV7OCO.js";
4
+ } from "./chunk-TBIGYYVQ.js";
5
5
  import {
6
6
  clean,
7
7
  cleanDirectories
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/tsdown",
3
- "version": "0.45.144",
3
+ "version": "0.45.146",
4
4
  "type": "module",
5
5
  "description": "A package containing `tsdown` utilities for building Storm Software libraries and applications",
6
6
  "repository": {
@@ -146,9 +146,9 @@
146
146
  "tsdown": { "optional": false }
147
147
  },
148
148
  "dependencies": {
149
- "@storm-software/build-tools": "^0.158.143",
150
- "@storm-software/config": "^1.137.16",
151
- "@storm-software/config-tools": "^1.189.62",
149
+ "@storm-software/build-tools": "^0.158.145",
150
+ "@storm-software/config": "^1.137.18",
151
+ "@storm-software/config-tools": "^1.189.64",
152
152
  "chokidar": "^4.0.3",
153
153
  "commander": "^12.1.0",
154
154
  "es-toolkit": "^1.45.1",
@@ -159,7 +159,7 @@
159
159
  "tsup": "8.4.0"
160
160
  },
161
161
  "devDependencies": {
162
- "@microsoft/api-extractor": "^7.57.7",
162
+ "@microsoft/api-extractor": "^7.57.8",
163
163
  "@nx/devkit": "22.6.0",
164
164
  "@nx/js": "22.6.0",
165
165
  "@types/node": "^25.5.0",
@@ -171,5 +171,5 @@
171
171
  },
172
172
  "publishConfig": { "access": "public" },
173
173
  "sideEffects": false,
174
- "gitHead": "c9e22f77a54addf393da062dd661a01624fea3b1"
174
+ "gitHead": "5e8536ca8d6f26e6b448632e0f50e6271dce0269"
175
175
  }