@storm-software/unbuild 0.49.44 → 0.49.45

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.49.42-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.49.43-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 -->
package/bin/unbuild.cjs CHANGED
@@ -113,7 +113,7 @@ var SingleThemeColorConfigSchema = z.object({
113
113
  positive: PositiveColorSchema,
114
114
  negative: NegativeColorSchema
115
115
  });
116
- var RegistryUrlConfigSchema = z.string().trim().toLowerCase().url().optional().describe("A remote registry URL used to publish distributable packages");
116
+ var RegistryUrlConfigSchema = z.url().optional().describe("A remote registry URL used to publish distributable packages");
117
117
  var RegistryConfigSchema = z.object({
118
118
  github: RegistryUrlConfigSchema,
119
119
  npm: RegistryUrlConfigSchema,
@@ -140,7 +140,7 @@ var WorkspaceBotConfigSchema = z.object({
140
140
  name: z.string().trim().default("stormie-bot").describe(
141
141
  "The workspace bot user's name (this is the bot that will be used to perform various tasks)"
142
142
  ),
143
- email: z.string().trim().email().default("bot@stormsoftware.com").describe("The email of the workspace bot")
143
+ email: z.email().default("bot@stormsoftware.com").describe("The email of the workspace bot")
144
144
  }).describe(
145
145
  "The workspace's bot user's config used to automated various operations tasks"
146
146
  );
@@ -183,19 +183,20 @@ var WorkspaceDirectoryConfigSchema = z.object({
183
183
  );
184
184
  var errorConfigSchema = z.object({
185
185
  codesFile: z.string().trim().default(STORM_DEFAULT_ERROR_CODES_FILE).describe("The path to the workspace's error codes JSON file"),
186
- url: z.string().trim().url().optional().describe(
186
+ url: z.url().optional().describe(
187
187
  "A URL to a page that looks up the workspace's error messages given a specific error code"
188
188
  )
189
189
  }).describe("The workspace's error config used during the error process");
190
190
  var organizationConfigSchema = z.object({
191
191
  name: z.string().trim().describe("The name of the organization"),
192
192
  description: z.string().trim().optional().describe("A description of the organization"),
193
- logo: z.string().trim().url().optional().describe("A URL to the organization's logo image"),
194
- icon: z.string().trim().url().optional().describe("A URL to the organization's icon image"),
195
- url: z.string().trim().url().optional().describe(
193
+ logo: z.url().optional().describe("A URL to the organization's logo image"),
194
+ icon: z.url().optional().describe("A URL to the organization's icon image"),
195
+ url: z.url().optional().describe(
196
196
  "A URL to a page that provides more information about the organization"
197
197
  )
198
198
  }).describe("The workspace's organization details");
199
+ var MODE_OPTIONS = ["development", "staging", "production"];
199
200
  var stormWorkspaceConfigSchema = z.object({
200
201
  $schema: z.string().trim().default(
201
202
  "https://public.storm-cdn.com/schemas/storm-workspace.schema.json"
@@ -212,12 +213,12 @@ var stormWorkspaceConfigSchema = z.object({
212
213
  ),
213
214
  repository: z.string().trim().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
214
215
  license: z.string().trim().default("Apache-2.0").describe("The license type of the package"),
215
- homepage: z.string().trim().url().optional().describe("The homepage of the workspace"),
216
- docs: z.string().trim().url().optional().describe("The documentation site for the workspace"),
217
- portal: z.string().trim().url().optional().describe("The development portal site for the workspace"),
218
- licensing: z.string().trim().url().optional().describe("The licensing site for the workspace"),
219
- contact: z.string().trim().url().optional().describe("The contact site for the workspace"),
220
- support: z.string().trim().url().optional().describe(
216
+ homepage: z.url().optional().describe("The homepage of the workspace"),
217
+ docs: z.url().optional().describe("The documentation site for the workspace"),
218
+ portal: z.url().optional().describe("The development portal site for the workspace"),
219
+ licensing: z.url().optional().describe("The licensing site for the workspace"),
220
+ contact: z.url().optional().describe("The contact site for the workspace"),
221
+ support: z.url().optional().describe(
221
222
  "The support site for the workspace. If not provided, this is defaulted to the `contact` config value"
222
223
  ),
223
224
  branch: z.string().trim().default("main").describe("The branch of the workspace"),
@@ -227,7 +228,7 @@ var stormWorkspaceConfigSchema = z.object({
227
228
  release: WorkspaceReleaseConfigSchema,
228
229
  socials: WorkspaceSocialsConfigSchema,
229
230
  error: errorConfigSchema,
230
- mode: z.enum(["development", "staging", "production"]).default("production").describe("The current runtime environment mode for the package"),
231
+ mode: z.enum(MODE_OPTIONS).prefault("production").describe("The current runtime environment mode for the package"),
231
232
  workspaceRoot: z.string().trim().describe("The root directory of the workspace"),
232
233
  skipCache: z.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
233
234
  directories: WorkspaceDirectoryConfigSchema,
package/bin/unbuild.js CHANGED
@@ -91,7 +91,7 @@ var SingleThemeColorConfigSchema = z.object({
91
91
  positive: PositiveColorSchema,
92
92
  negative: NegativeColorSchema
93
93
  });
94
- var RegistryUrlConfigSchema = z.string().trim().toLowerCase().url().optional().describe("A remote registry URL used to publish distributable packages");
94
+ var RegistryUrlConfigSchema = z.url().optional().describe("A remote registry URL used to publish distributable packages");
95
95
  var RegistryConfigSchema = z.object({
96
96
  github: RegistryUrlConfigSchema,
97
97
  npm: RegistryUrlConfigSchema,
@@ -118,7 +118,7 @@ var WorkspaceBotConfigSchema = z.object({
118
118
  name: z.string().trim().default("stormie-bot").describe(
119
119
  "The workspace bot user's name (this is the bot that will be used to perform various tasks)"
120
120
  ),
121
- email: z.string().trim().email().default("bot@stormsoftware.com").describe("The email of the workspace bot")
121
+ email: z.email().default("bot@stormsoftware.com").describe("The email of the workspace bot")
122
122
  }).describe(
123
123
  "The workspace's bot user's config used to automated various operations tasks"
124
124
  );
@@ -161,19 +161,20 @@ var WorkspaceDirectoryConfigSchema = z.object({
161
161
  );
162
162
  var errorConfigSchema = z.object({
163
163
  codesFile: z.string().trim().default(STORM_DEFAULT_ERROR_CODES_FILE).describe("The path to the workspace's error codes JSON file"),
164
- url: z.string().trim().url().optional().describe(
164
+ url: z.url().optional().describe(
165
165
  "A URL to a page that looks up the workspace's error messages given a specific error code"
166
166
  )
167
167
  }).describe("The workspace's error config used during the error process");
168
168
  var organizationConfigSchema = z.object({
169
169
  name: z.string().trim().describe("The name of the organization"),
170
170
  description: z.string().trim().optional().describe("A description of the organization"),
171
- logo: z.string().trim().url().optional().describe("A URL to the organization's logo image"),
172
- icon: z.string().trim().url().optional().describe("A URL to the organization's icon image"),
173
- url: z.string().trim().url().optional().describe(
171
+ logo: z.url().optional().describe("A URL to the organization's logo image"),
172
+ icon: z.url().optional().describe("A URL to the organization's icon image"),
173
+ url: z.url().optional().describe(
174
174
  "A URL to a page that provides more information about the organization"
175
175
  )
176
176
  }).describe("The workspace's organization details");
177
+ var MODE_OPTIONS = ["development", "staging", "production"];
177
178
  var stormWorkspaceConfigSchema = z.object({
178
179
  $schema: z.string().trim().default(
179
180
  "https://public.storm-cdn.com/schemas/storm-workspace.schema.json"
@@ -190,12 +191,12 @@ var stormWorkspaceConfigSchema = z.object({
190
191
  ),
191
192
  repository: z.string().trim().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
192
193
  license: z.string().trim().default("Apache-2.0").describe("The license type of the package"),
193
- homepage: z.string().trim().url().optional().describe("The homepage of the workspace"),
194
- docs: z.string().trim().url().optional().describe("The documentation site for the workspace"),
195
- portal: z.string().trim().url().optional().describe("The development portal site for the workspace"),
196
- licensing: z.string().trim().url().optional().describe("The licensing site for the workspace"),
197
- contact: z.string().trim().url().optional().describe("The contact site for the workspace"),
198
- support: z.string().trim().url().optional().describe(
194
+ homepage: z.url().optional().describe("The homepage of the workspace"),
195
+ docs: z.url().optional().describe("The documentation site for the workspace"),
196
+ portal: z.url().optional().describe("The development portal site for the workspace"),
197
+ licensing: z.url().optional().describe("The licensing site for the workspace"),
198
+ contact: z.url().optional().describe("The contact site for the workspace"),
199
+ support: z.url().optional().describe(
199
200
  "The support site for the workspace. If not provided, this is defaulted to the `contact` config value"
200
201
  ),
201
202
  branch: z.string().trim().default("main").describe("The branch of the workspace"),
@@ -205,7 +206,7 @@ var stormWorkspaceConfigSchema = z.object({
205
206
  release: WorkspaceReleaseConfigSchema,
206
207
  socials: WorkspaceSocialsConfigSchema,
207
208
  error: errorConfigSchema,
208
- mode: z.enum(["development", "staging", "production"]).default("production").describe("The current runtime environment mode for the package"),
209
+ mode: z.enum(MODE_OPTIONS).prefault("production").describe("The current runtime environment mode for the package"),
209
210
  workspaceRoot: z.string().trim().describe("The root directory of the workspace"),
210
211
  skipCache: z.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
211
212
  directories: WorkspaceDirectoryConfigSchema,
package/dist/build.cjs CHANGED
@@ -5,12 +5,12 @@
5
5
 
6
6
 
7
7
 
8
- var _chunkJTL64DIVcjs = require('./chunk-JTL64DIV.cjs');
9
- require('./chunk-DGJFFRFH.cjs');
10
- require('./chunk-5LIOQAOY.cjs');
11
- require('./chunk-XNEAB4RQ.cjs');
12
- require('./chunk-SGP6BUJQ.cjs');
13
- require('./chunk-WLUG56XM.cjs');
8
+ var _chunkX4VXBY3Dcjs = require('./chunk-X4VXBY3D.cjs');
9
+ require('./chunk-54EG7SKF.cjs');
10
+ require('./chunk-PCQ64N2Q.cjs');
11
+ require('./chunk-BZNI2S2Q.cjs');
12
+ require('./chunk-3VPYTMTW.cjs');
13
+ require('./chunk-ZT6C6XEL.cjs');
14
14
  require('./chunk-OBGZSXTJ.cjs');
15
15
 
16
16
 
@@ -19,4 +19,4 @@ require('./chunk-OBGZSXTJ.cjs');
19
19
 
20
20
 
21
21
 
22
- exports.build = _chunkJTL64DIVcjs.build; exports.cleanOutputPath = _chunkJTL64DIVcjs.cleanOutputPath; exports.copyBuildAssets = _chunkJTL64DIVcjs.copyBuildAssets; exports.executeUnbuild = _chunkJTL64DIVcjs.executeUnbuild; exports.generatePackageJson = _chunkJTL64DIVcjs.generatePackageJson; exports.resolveOptions = _chunkJTL64DIVcjs.resolveOptions;
22
+ exports.build = _chunkX4VXBY3Dcjs.build; exports.cleanOutputPath = _chunkX4VXBY3Dcjs.cleanOutputPath; exports.copyBuildAssets = _chunkX4VXBY3Dcjs.copyBuildAssets; exports.executeUnbuild = _chunkX4VXBY3Dcjs.executeUnbuild; exports.generatePackageJson = _chunkX4VXBY3Dcjs.generatePackageJson; exports.resolveOptions = _chunkX4VXBY3Dcjs.resolveOptions;
package/dist/build.js CHANGED
@@ -5,12 +5,12 @@ import {
5
5
  executeUnbuild,
6
6
  generatePackageJson,
7
7
  resolveOptions
8
- } from "./chunk-VT6DJF6W.js";
9
- import "./chunk-ILCF5AV5.js";
10
- import "./chunk-6ZKWJ5VK.js";
11
- import "./chunk-IX57XUC6.js";
12
- import "./chunk-TWJO45XW.js";
13
- import "./chunk-TPCOWOWK.js";
8
+ } from "./chunk-A7SWPWEN.js";
9
+ import "./chunk-H5FYDIRN.js";
10
+ import "./chunk-ODWQ5IQY.js";
11
+ import "./chunk-IY4HAK7O.js";
12
+ import "./chunk-53SRQU7L.js";
13
+ import "./chunk-5XUMKFT5.js";
14
14
  import "./chunk-3RG5ZIWI.js";
15
15
  export {
16
16
  build,
@@ -1,6 +1,6 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { newObj[key] = obj[key]; } } } newObj.default = obj; return newObj; } } function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } }
2
2
 
3
- var _chunkWLUG56XMcjs = require('./chunk-WLUG56XM.cjs');
3
+ var _chunkZT6C6XELcjs = require('./chunk-ZT6C6XEL.cjs');
4
4
 
5
5
  // src/plugins/tsc.ts
6
6
 
@@ -45,7 +45,7 @@ async function createTsCompilerOptions(config, tsConfigPath, projectRoot, depend
45
45
  declaration: true,
46
46
  paths: _buildablelibsutils.computeCompilerOptionsPaths.call(void 0, tsConfig, _nullishCoalesce(dependencies, () => ( [])))
47
47
  };
48
- _chunkWLUG56XMcjs.writeTrace.call(void 0, compilerOptions, config);
48
+ _chunkZT6C6XELcjs.writeTrace.call(void 0, compilerOptions, config);
49
49
  return compilerOptions;
50
50
  }
51
51
 
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  writeTrace
3
- } from "./chunk-TPCOWOWK.js";
3
+ } from "./chunk-5XUMKFT5.js";
4
4
 
5
5
  // src/plugins/tsc.ts
6
6
  import {
@@ -1,13 +1,13 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkWLUG56XMcjs = require('./chunk-WLUG56XM.cjs');
4
+ var _chunkZT6C6XELcjs = require('./chunk-ZT6C6XEL.cjs');
5
5
 
6
6
  // src/clean.ts
7
7
  var _promises = require('fs/promises');
8
8
  async function clean(name = "Unbuild", directory, config) {
9
- _chunkWLUG56XMcjs.writeDebug.call(void 0, ` \u{1F9F9} Cleaning ${name} output path: ${directory}`, config);
10
- const stopwatch = _chunkWLUG56XMcjs.getStopwatch.call(void 0, `${name} output clean`);
9
+ _chunkZT6C6XELcjs.writeDebug.call(void 0, ` \u{1F9F9} Cleaning ${name} output path: ${directory}`, config);
10
+ const stopwatch = _chunkZT6C6XELcjs.getStopwatch.call(void 0, `${name} output clean`);
11
11
  await cleanDirectories(name, directory, config);
12
12
  stopwatch();
13
13
  }
@@ -291,7 +291,7 @@ var SingleThemeColorConfigSchema = z.object({
291
291
  positive: PositiveColorSchema,
292
292
  negative: NegativeColorSchema
293
293
  });
294
- var RegistryUrlConfigSchema = z.string().trim().toLowerCase().url().optional().describe("A remote registry URL used to publish distributable packages");
294
+ var RegistryUrlConfigSchema = z.url().optional().describe("A remote registry URL used to publish distributable packages");
295
295
  var RegistryConfigSchema = z.object({
296
296
  github: RegistryUrlConfigSchema,
297
297
  npm: RegistryUrlConfigSchema,
@@ -318,7 +318,7 @@ var WorkspaceBotConfigSchema = z.object({
318
318
  name: z.string().trim().default("stormie-bot").describe(
319
319
  "The workspace bot user's name (this is the bot that will be used to perform various tasks)"
320
320
  ),
321
- email: z.string().trim().email().default("bot@stormsoftware.com").describe("The email of the workspace bot")
321
+ email: z.email().default("bot@stormsoftware.com").describe("The email of the workspace bot")
322
322
  }).describe(
323
323
  "The workspace's bot user's config used to automated various operations tasks"
324
324
  );
@@ -361,19 +361,20 @@ var WorkspaceDirectoryConfigSchema = z.object({
361
361
  );
362
362
  var errorConfigSchema = z.object({
363
363
  codesFile: z.string().trim().default(STORM_DEFAULT_ERROR_CODES_FILE).describe("The path to the workspace's error codes JSON file"),
364
- url: z.string().trim().url().optional().describe(
364
+ url: z.url().optional().describe(
365
365
  "A URL to a page that looks up the workspace's error messages given a specific error code"
366
366
  )
367
367
  }).describe("The workspace's error config used during the error process");
368
368
  var organizationConfigSchema = z.object({
369
369
  name: z.string().trim().describe("The name of the organization"),
370
370
  description: z.string().trim().optional().describe("A description of the organization"),
371
- logo: z.string().trim().url().optional().describe("A URL to the organization's logo image"),
372
- icon: z.string().trim().url().optional().describe("A URL to the organization's icon image"),
373
- url: z.string().trim().url().optional().describe(
371
+ logo: z.url().optional().describe("A URL to the organization's logo image"),
372
+ icon: z.url().optional().describe("A URL to the organization's icon image"),
373
+ url: z.url().optional().describe(
374
374
  "A URL to a page that provides more information about the organization"
375
375
  )
376
376
  }).describe("The workspace's organization details");
377
+ var MODE_OPTIONS = ["development", "staging", "production"];
377
378
  var stormWorkspaceConfigSchema = z.object({
378
379
  $schema: z.string().trim().default(
379
380
  "https://public.storm-cdn.com/schemas/storm-workspace.schema.json"
@@ -390,12 +391,12 @@ var stormWorkspaceConfigSchema = z.object({
390
391
  ),
391
392
  repository: z.string().trim().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
392
393
  license: z.string().trim().default("Apache-2.0").describe("The license type of the package"),
393
- homepage: z.string().trim().url().optional().describe("The homepage of the workspace"),
394
- docs: z.string().trim().url().optional().describe("The documentation site for the workspace"),
395
- portal: z.string().trim().url().optional().describe("The development portal site for the workspace"),
396
- licensing: z.string().trim().url().optional().describe("The licensing site for the workspace"),
397
- contact: z.string().trim().url().optional().describe("The contact site for the workspace"),
398
- support: z.string().trim().url().optional().describe(
394
+ homepage: z.url().optional().describe("The homepage of the workspace"),
395
+ docs: z.url().optional().describe("The documentation site for the workspace"),
396
+ portal: z.url().optional().describe("The development portal site for the workspace"),
397
+ licensing: z.url().optional().describe("The licensing site for the workspace"),
398
+ contact: z.url().optional().describe("The contact site for the workspace"),
399
+ support: z.url().optional().describe(
399
400
  "The support site for the workspace. If not provided, this is defaulted to the `contact` config value"
400
401
  ),
401
402
  branch: z.string().trim().default("main").describe("The branch of the workspace"),
@@ -405,7 +406,7 @@ var stormWorkspaceConfigSchema = z.object({
405
406
  release: WorkspaceReleaseConfigSchema,
406
407
  socials: WorkspaceSocialsConfigSchema,
407
408
  error: errorConfigSchema,
408
- mode: z.enum(["development", "staging", "production"]).default("production").describe("The current runtime environment mode for the package"),
409
+ mode: z.enum(MODE_OPTIONS).prefault("production").describe("The current runtime environment mode for the package"),
409
410
  workspaceRoot: z.string().trim().describe("The root directory of the workspace"),
410
411
  skipCache: z.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
411
412
  directories: WorkspaceDirectoryConfigSchema,
@@ -1,16 +1,16 @@
1
1
  import {
2
2
  cleanDirectories
3
- } from "./chunk-ILCF5AV5.js";
3
+ } from "./chunk-H5FYDIRN.js";
4
4
  import {
5
5
  analyzePlugin
6
- } from "./chunk-6ZKWJ5VK.js";
6
+ } from "./chunk-ODWQ5IQY.js";
7
7
  import {
8
8
  onErrorPlugin
9
- } from "./chunk-IX57XUC6.js";
9
+ } from "./chunk-IY4HAK7O.js";
10
10
  import {
11
11
  loadConfig,
12
12
  tscPlugin
13
- } from "./chunk-TWJO45XW.js";
13
+ } from "./chunk-53SRQU7L.js";
14
14
  import {
15
15
  COLOR_KEYS,
16
16
  LogLevel,
@@ -34,7 +34,7 @@ import {
34
34
  writeSuccess,
35
35
  writeTrace,
36
36
  writeWarning
37
- } from "./chunk-TPCOWOWK.js";
37
+ } from "./chunk-5XUMKFT5.js";
38
38
 
39
39
  // src/build.ts
40
40
  import {
@@ -1,13 +1,13 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkWLUG56XMcjs = require('./chunk-WLUG56XM.cjs');
3
+ var _chunkZT6C6XELcjs = require('./chunk-ZT6C6XEL.cjs');
4
4
 
5
5
  // src/plugins/on-error.ts
6
6
  var onErrorPlugin = (options) => ({
7
7
  name: "storm:on-error",
8
8
  buildEnd(error) {
9
9
  if (error) {
10
- _chunkWLUG56XMcjs.writeError.call(void 0,
10
+ _chunkZT6C6XELcjs.writeError.call(void 0,
11
11
  `The following errors occurred during the build:
12
12
  ${error ? error.message : "Unknown build error"}
13
13
 
@@ -18,7 +18,7 @@ ${error ? error.message : "Unknown build error"}
18
18
  }
19
19
  },
20
20
  renderError(error) {
21
- _chunkWLUG56XMcjs.writeError.call(void 0,
21
+ _chunkZT6C6XELcjs.writeError.call(void 0,
22
22
  `The following errors occurred during the build:
23
23
  ${error ? error.message : "Unknown build error"}
24
24
 
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  getStopwatch,
3
3
  writeDebug
4
- } from "./chunk-TPCOWOWK.js";
4
+ } from "./chunk-5XUMKFT5.js";
5
5
 
6
6
  // src/clean.ts
7
7
  import { rm } from "node:fs/promises";
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  writeError
3
- } from "./chunk-TPCOWOWK.js";
3
+ } from "./chunk-5XUMKFT5.js";
4
4
 
5
5
  // src/plugins/on-error.ts
6
6
  var onErrorPlugin = (options) => ({
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  writeInfo
3
- } from "./chunk-TPCOWOWK.js";
3
+ } from "./chunk-5XUMKFT5.js";
4
4
 
5
5
  // src/plugins/analyze.ts
6
6
  var formatBytes = (bytes) => {
@@ -1,6 +1,6 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkWLUG56XMcjs = require('./chunk-WLUG56XM.cjs');
3
+ var _chunkZT6C6XELcjs = require('./chunk-ZT6C6XEL.cjs');
4
4
 
5
5
  // src/plugins/analyze.ts
6
6
  var formatBytes = (bytes) => {
@@ -17,7 +17,7 @@ var analyzePlugin = (options) => {
17
17
  renderChunk(source, chunk) {
18
18
  const sourceBytes = formatBytes(source.length);
19
19
  const fileName = chunk.fileName;
20
- _chunkWLUG56XMcjs.writeInfo.call(void 0, ` - ${fileName} ${sourceBytes}`, options.config);
20
+ _chunkZT6C6XELcjs.writeInfo.call(void 0, ` - ${fileName} ${sourceBytes}`, options.config);
21
21
  }
22
22
  };
23
23
  };