@storm-software/build-tools 0.153.13 → 0.153.15

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
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
21
21
 
22
22
  <h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
23
23
 
24
- [![Version](https://img.shields.io/badge/version-0.153.12-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)
24
+ [![Version](https://img.shields.io/badge/version-0.153.14-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)
25
25
 
26
26
  <!-- prettier-ignore-start -->
27
27
  <!-- markdownlint-disable -->
@@ -350,6 +350,13 @@ var workspaceDirectorySchema = z.object({
350
350
  schemaRegistry.add(workspaceDirectorySchema, {
351
351
  description: "Various directories used by the workspace to store data, cache, and configuration files"
352
352
  });
353
+ var variantSchema = z._default(
354
+ z.enum(["minimal", "monorepo"]),
355
+ "monorepo"
356
+ );
357
+ schemaRegistry.add(variantSchema, {
358
+ description: "The variant of the workspace. This can be used to enable or disable certain features or configurations."
359
+ });
353
360
  var errorCodesFileSchema = z._default(
354
361
  z.string().check(z.trim()),
355
362
  STORM_DEFAULT_ERROR_CODES_FILE
@@ -547,6 +554,7 @@ var workspaceConfigSchema = z.object({
547
554
  $schema: schemaNameSchema,
548
555
  extends: extendsSchema,
549
556
  name: nameSchema,
557
+ variant: variantSchema,
550
558
  namespace: namespaceSchema,
551
559
  organization: orgSchema,
552
560
  repository: repositorySchema,
@@ -785,6 +793,7 @@ var getConfigEnv = () => {
785
793
  let config = {
786
794
  extends: process.env[`${prefix}EXTENDS`] || void 0,
787
795
  name: process.env[`${prefix}NAME`] || void 0,
796
+ variant: process.env[`${prefix}VARIANT`] || void 0,
788
797
  namespace: process.env[`${prefix}NAMESPACE`] || void 0,
789
798
  owner: process.env[`${prefix}OWNER`] || void 0,
790
799
  bot: {
@@ -1009,6 +1018,9 @@ var setConfigEnv = (config) => {
1009
1018
  if (config.name) {
1010
1019
  process.env[`${prefix}NAME`] = config.name;
1011
1020
  }
1021
+ if (config.variant) {
1022
+ process.env[`${prefix}VARIANT`] = config.variant;
1023
+ }
1012
1024
  if (config.namespace) {
1013
1025
  process.env[`${prefix}NAMESPACE`] = config.namespace;
1014
1026
  }
@@ -350,6 +350,13 @@ var workspaceDirectorySchema = z.object({
350
350
  schemaRegistry.add(workspaceDirectorySchema, {
351
351
  description: "Various directories used by the workspace to store data, cache, and configuration files"
352
352
  });
353
+ var variantSchema = z._default(
354
+ z.enum(["minimal", "monorepo"]),
355
+ "monorepo"
356
+ );
357
+ schemaRegistry.add(variantSchema, {
358
+ description: "The variant of the workspace. This can be used to enable or disable certain features or configurations."
359
+ });
353
360
  var errorCodesFileSchema = z._default(
354
361
  z.string().check(z.trim()),
355
362
  STORM_DEFAULT_ERROR_CODES_FILE
@@ -547,6 +554,7 @@ var workspaceConfigSchema = z.object({
547
554
  $schema: schemaNameSchema,
548
555
  extends: extendsSchema,
549
556
  name: nameSchema,
557
+ variant: variantSchema,
550
558
  namespace: namespaceSchema,
551
559
  organization: orgSchema,
552
560
  repository: repositorySchema,
@@ -785,6 +793,7 @@ var getConfigEnv = () => {
785
793
  let config = {
786
794
  extends: process.env[`${prefix}EXTENDS`] || void 0,
787
795
  name: process.env[`${prefix}NAME`] || void 0,
796
+ variant: process.env[`${prefix}VARIANT`] || void 0,
788
797
  namespace: process.env[`${prefix}NAMESPACE`] || void 0,
789
798
  owner: process.env[`${prefix}OWNER`] || void 0,
790
799
  bot: {
@@ -1009,6 +1018,9 @@ var setConfigEnv = (config) => {
1009
1018
  if (config.name) {
1010
1019
  process.env[`${prefix}NAME`] = config.name;
1011
1020
  }
1021
+ if (config.variant) {
1022
+ process.env[`${prefix}VARIANT`] = config.variant;
1023
+ }
1012
1024
  if (config.namespace) {
1013
1025
  process.env[`${prefix}NAMESPACE`] = config.namespace;
1014
1026
  }
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-BL-PZK84.mjs';
17
+ import './types-TuitE_fJ.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-BL-PZK84.js';
17
+ import './types-TuitE_fJ.js';
18
18
  import 'zod';
19
19
  import 'zod/mini';
20
20
  import '@nx/devkit';
package/dist/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-65HIHTHN.js');
2
2
 
3
3
 
4
- var _chunkQPVZKJM7js = require('./chunk-QPVZKJM7.js');
4
+ var _chunkC46ZCHDMjs = require('./chunk-C46ZCHDM.js');
5
5
 
6
6
 
7
7
 
@@ -81,4 +81,4 @@ var _chunkN7HP2YYEjs = require('./chunk-N7HP2YYE.js');
81
81
 
82
82
 
83
83
 
84
- exports.DEFAULT_COMPILED_BANNER = _chunkMYIXHZMSjs.DEFAULT_COMPILED_BANNER; exports.DEFAULT_ENVIRONMENT = _chunkMYIXHZMSjs.DEFAULT_ENVIRONMENT; exports.DEFAULT_ORGANIZATION = _chunkMYIXHZMSjs.DEFAULT_ORGANIZATION; exports.DEFAULT_PLATFORM = _chunkMYIXHZMSjs.DEFAULT_PLATFORM; exports.DEFAULT_TARGET = _chunkMYIXHZMSjs.DEFAULT_TARGET; exports.addPackageDependencies = _chunkWBSHEDA6js.addPackageDependencies; exports.addPackageJsonExport = _chunkWBSHEDA6js.addPackageJsonExport; exports.addPackageJsonExports = _chunkWBSHEDA6js.addPackageJsonExports; exports.addWorkspacePackageJsonFields = _chunkWBSHEDA6js.addWorkspacePackageJsonFields; exports.analyze = _chunkFCNQFEENjs.analyze; exports.copyAssets = _chunkBP4NPFBZjs.copyAssets; exports.createTaskId = _chunkP3MQZA3Djs.createTaskId; exports.getAllWorkspaceTaskGraphs = _chunkP3MQZA3Djs.getAllWorkspaceTaskGraphs; exports.getEntryPoints = _chunk35Z5ZVARjs.getEntryPoints; exports.getEnv = _chunkWLW3DA6Xjs.getEnv; exports.getExternalDependencies = _chunkWNMPQTPHjs.getExternalDependencies; exports.getExtraDependencies = _chunkWNMPQTPHjs.getExtraDependencies; exports.getFileBanner = _chunkUHJ5ACWHjs.getFileBanner; exports.getInternalDependencies = _chunkWNMPQTPHjs.getInternalDependencies; exports.getOutExtension = _chunkA75DEKU5js.getOutExtension; exports.readNxConfig = _chunkQPVZKJM7js.readNxConfig; exports.swc = _chunkHQD5ZBIUjs.swc; exports.tsResolvePlugin = _chunkHHQVJURJjs.tsResolvePlugin; exports.typeDefinitions = _chunkN7HP2YYEjs.typeDefinitions;
84
+ exports.DEFAULT_COMPILED_BANNER = _chunkMYIXHZMSjs.DEFAULT_COMPILED_BANNER; exports.DEFAULT_ENVIRONMENT = _chunkMYIXHZMSjs.DEFAULT_ENVIRONMENT; exports.DEFAULT_ORGANIZATION = _chunkMYIXHZMSjs.DEFAULT_ORGANIZATION; exports.DEFAULT_PLATFORM = _chunkMYIXHZMSjs.DEFAULT_PLATFORM; exports.DEFAULT_TARGET = _chunkMYIXHZMSjs.DEFAULT_TARGET; exports.addPackageDependencies = _chunkWBSHEDA6js.addPackageDependencies; exports.addPackageJsonExport = _chunkWBSHEDA6js.addPackageJsonExport; exports.addPackageJsonExports = _chunkWBSHEDA6js.addPackageJsonExports; exports.addWorkspacePackageJsonFields = _chunkWBSHEDA6js.addWorkspacePackageJsonFields; exports.analyze = _chunkFCNQFEENjs.analyze; exports.copyAssets = _chunkBP4NPFBZjs.copyAssets; exports.createTaskId = _chunkP3MQZA3Djs.createTaskId; exports.getAllWorkspaceTaskGraphs = _chunkP3MQZA3Djs.getAllWorkspaceTaskGraphs; exports.getEntryPoints = _chunk35Z5ZVARjs.getEntryPoints; exports.getEnv = _chunkWLW3DA6Xjs.getEnv; exports.getExternalDependencies = _chunkWNMPQTPHjs.getExternalDependencies; exports.getExtraDependencies = _chunkWNMPQTPHjs.getExtraDependencies; exports.getFileBanner = _chunkUHJ5ACWHjs.getFileBanner; exports.getInternalDependencies = _chunkWNMPQTPHjs.getInternalDependencies; exports.getOutExtension = _chunkA75DEKU5js.getOutExtension; exports.readNxConfig = _chunkC46ZCHDMjs.readNxConfig; exports.swc = _chunkHQD5ZBIUjs.swc; exports.tsResolvePlugin = _chunkHHQVJURJjs.tsResolvePlugin; exports.typeDefinitions = _chunkN7HP2YYEjs.typeDefinitions;
package/dist/index.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  import "./chunk-KVP3YMX6.mjs";
2
2
  import {
3
3
  readNxConfig
4
- } from "./chunk-6TUKWOFJ.mjs";
4
+ } from "./chunk-4UACS7QB.mjs";
5
5
  import {
6
6
  createTaskId,
7
7
  getAllWorkspaceTaskGraphs
@@ -8,6 +8,10 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
8
8
  $schema: z.ZodMiniDefault<z.ZodMiniString<string>>;
9
9
  extends: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniString<string>>]>>;
10
10
  name: z.ZodMiniString<string>;
11
+ variant: z.ZodMiniDefault<z.ZodMiniEnum<{
12
+ minimal: "minimal";
13
+ monorepo: "monorepo";
14
+ }>>;
11
15
  namespace: z.ZodMiniString<string>;
12
16
  organization: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
13
17
  name: z.ZodMiniOptional<z.ZodMiniString<string>>;
@@ -8,6 +8,10 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
8
8
  $schema: z.ZodMiniDefault<z.ZodMiniString<string>>;
9
9
  extends: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniString<string>>]>>;
10
10
  name: z.ZodMiniString<string>;
11
+ variant: z.ZodMiniDefault<z.ZodMiniEnum<{
12
+ minimal: "minimal";
13
+ monorepo: "monorepo";
14
+ }>>;
11
15
  namespace: z.ZodMiniString<string>;
12
16
  organization: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
13
17
  name: z.ZodMiniOptional<z.ZodMiniString<string>>;
package/dist/types.d.mts CHANGED
@@ -1,4 +1,4 @@
1
- import { S as StormWorkspaceConfig } from './types-BL-PZK84.mjs';
1
+ import { S as StormWorkspaceConfig } from './types-TuitE_fJ.mjs';
2
2
  import 'zod';
3
3
  import 'zod/mini';
4
4
 
package/dist/types.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { S as StormWorkspaceConfig } from './types-BL-PZK84.js';
1
+ import { S as StormWorkspaceConfig } from './types-TuitE_fJ.js';
2
2
  import 'zod';
3
3
  import 'zod/mini';
4
4
 
@@ -1,4 +1,4 @@
1
- import { S as StormWorkspaceConfig } from '../types-BL-PZK84.mjs';
1
+ import { S as StormWorkspaceConfig } from '../types-TuitE_fJ.mjs';
2
2
  import { AssetGlob } from '../types.mjs';
3
3
  import 'zod';
4
4
  import 'zod/mini';
@@ -1,4 +1,4 @@
1
- import { S as StormWorkspaceConfig } from '../types-BL-PZK84.js';
1
+ import { S as StormWorkspaceConfig } from '../types-TuitE_fJ.js';
2
2
  import { AssetGlob } from '../types.js';
3
3
  import 'zod';
4
4
  import 'zod/mini';
@@ -1,4 +1,4 @@
1
- import { S as StormWorkspaceConfig } from '../types-BL-PZK84.mjs';
1
+ import { S as StormWorkspaceConfig } from '../types-TuitE_fJ.mjs';
2
2
  import 'zod';
3
3
  import 'zod/mini';
4
4
 
@@ -1,4 +1,4 @@
1
- import { S as StormWorkspaceConfig } from '../types-BL-PZK84.js';
1
+ import { S as StormWorkspaceConfig } from '../types-TuitE_fJ.js';
2
2
  import 'zod';
3
3
  import 'zod/mini';
4
4
 
@@ -1,4 +1,4 @@
1
- import { S as StormWorkspaceConfig } from '../types-BL-PZK84.mjs';
1
+ import { S as StormWorkspaceConfig } from '../types-TuitE_fJ.mjs';
2
2
  import { Entry } from '../types.mjs';
3
3
  import 'zod';
4
4
  import 'zod/mini';
@@ -1,4 +1,4 @@
1
- import { S as StormWorkspaceConfig } from '../types-BL-PZK84.js';
1
+ import { S as StormWorkspaceConfig } from '../types-TuitE_fJ.js';
2
2
  import { Entry } from '../types.js';
3
3
  import 'zod';
4
4
  import 'zod/mini';
@@ -1,5 +1,5 @@
1
1
  import { TypeScriptBuildResolvedOptions, TypeScriptBuildEnv } from '../types.mjs';
2
- import '../types-BL-PZK84.mjs';
2
+ import '../types-TuitE_fJ.mjs';
3
3
  import 'zod';
4
4
  import 'zod/mini';
5
5
 
@@ -1,5 +1,5 @@
1
1
  import { TypeScriptBuildResolvedOptions, TypeScriptBuildEnv } from '../types.js';
2
- import '../types-BL-PZK84.js';
2
+ import '../types-TuitE_fJ.js';
3
3
  import 'zod';
4
4
  import 'zod/mini';
5
5
 
@@ -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-BL-PZK84.mjs';
10
+ import '../types-TuitE_fJ.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-BL-PZK84.js';
10
+ import '../types-TuitE_fJ.js';
11
11
  import 'zod';
12
12
  import 'zod/mini';
13
13
  import '../types.js';
@@ -1,7 +1,7 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('../chunk-65HIHTHN.js');
2
2
 
3
3
 
4
- var _chunkQPVZKJM7js = require('../chunk-QPVZKJM7.js');
4
+ var _chunkC46ZCHDMjs = require('../chunk-C46ZCHDM.js');
5
5
 
6
6
 
7
7
 
@@ -52,4 +52,4 @@ require('../chunk-KTEGKYAH.js');
52
52
 
53
53
 
54
54
 
55
- exports.addPackageDependencies = _chunkWBSHEDA6js.addPackageDependencies; exports.addPackageJsonExport = _chunkWBSHEDA6js.addPackageJsonExport; exports.addPackageJsonExports = _chunkWBSHEDA6js.addPackageJsonExports; exports.addWorkspacePackageJsonFields = _chunkWBSHEDA6js.addWorkspacePackageJsonFields; exports.copyAssets = _chunkBP4NPFBZjs.copyAssets; exports.createTaskId = _chunkP3MQZA3Djs.createTaskId; exports.getAllWorkspaceTaskGraphs = _chunkP3MQZA3Djs.getAllWorkspaceTaskGraphs; exports.getEntryPoints = _chunk35Z5ZVARjs.getEntryPoints; exports.getEnv = _chunkWLW3DA6Xjs.getEnv; exports.getExternalDependencies = _chunkWNMPQTPHjs.getExternalDependencies; exports.getExtraDependencies = _chunkWNMPQTPHjs.getExtraDependencies; exports.getFileBanner = _chunkUHJ5ACWHjs.getFileBanner; exports.getInternalDependencies = _chunkWNMPQTPHjs.getInternalDependencies; exports.getOutExtension = _chunkA75DEKU5js.getOutExtension; exports.readNxConfig = _chunkQPVZKJM7js.readNxConfig;
55
+ exports.addPackageDependencies = _chunkWBSHEDA6js.addPackageDependencies; exports.addPackageJsonExport = _chunkWBSHEDA6js.addPackageJsonExport; exports.addPackageJsonExports = _chunkWBSHEDA6js.addPackageJsonExports; exports.addWorkspacePackageJsonFields = _chunkWBSHEDA6js.addWorkspacePackageJsonFields; exports.copyAssets = _chunkBP4NPFBZjs.copyAssets; exports.createTaskId = _chunkP3MQZA3Djs.createTaskId; exports.getAllWorkspaceTaskGraphs = _chunkP3MQZA3Djs.getAllWorkspaceTaskGraphs; exports.getEntryPoints = _chunk35Z5ZVARjs.getEntryPoints; exports.getEnv = _chunkWLW3DA6Xjs.getEnv; exports.getExternalDependencies = _chunkWNMPQTPHjs.getExternalDependencies; exports.getExtraDependencies = _chunkWNMPQTPHjs.getExtraDependencies; exports.getFileBanner = _chunkUHJ5ACWHjs.getFileBanner; exports.getInternalDependencies = _chunkWNMPQTPHjs.getInternalDependencies; exports.getOutExtension = _chunkA75DEKU5js.getOutExtension; exports.readNxConfig = _chunkC46ZCHDMjs.readNxConfig;
@@ -1,7 +1,7 @@
1
1
  import "../chunk-KVP3YMX6.mjs";
2
2
  import {
3
3
  readNxConfig
4
- } from "../chunk-6TUKWOFJ.mjs";
4
+ } from "../chunk-4UACS7QB.mjs";
5
5
  import {
6
6
  createTaskId,
7
7
  getAllWorkspaceTaskGraphs
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkQPVZKJM7js = require('../chunk-QPVZKJM7.js');
3
+ var _chunkC46ZCHDMjs = require('../chunk-C46ZCHDM.js');
4
4
  require('../chunk-UMP4EIAS.js');
5
5
  require('../chunk-JVKCJMCK.js');
6
6
  require('../chunk-KTEGKYAH.js');
7
7
 
8
8
 
9
- exports.readNxConfig = _chunkQPVZKJM7js.readNxConfig;
9
+ exports.readNxConfig = _chunkC46ZCHDMjs.readNxConfig;
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  readNxConfig
3
- } from "../chunk-6TUKWOFJ.mjs";
3
+ } from "../chunk-4UACS7QB.mjs";
4
4
  import "../chunk-TFYTC3YL.mjs";
5
5
  import "../chunk-MXKJT3OE.mjs";
6
6
  import "../chunk-R2HS3O2S.mjs";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/build-tools",
3
- "version": "0.153.13",
3
+ "version": "0.153.15",
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.2"
169
169
  },
170
170
  "publishConfig": { "access": "public" },
171
- "gitHead": "ead820214c8c4cf25d5311c154819f2c2f8f7356"
171
+ "gitHead": "77515798dbca4de4833086fb6135a0d062e5da45"
172
172
  }