@storm-software/unbuild 0.30.1 → 0.30.3

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.30.0-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.30.2-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
@@ -1204,8 +1204,10 @@ var copyAssets = /* @__PURE__ */ __name(async (config, assets, outputPath, proje
1204
1204
  if (!buildTarget) {
1205
1205
  throw new Error(`The Build process failed because the project does not have a valid build target in the project.json file. Check if the file exists in the root of the project at ${joinPaths(projectRoot, "project.json")}`);
1206
1206
  }
1207
+ writeTrace(`\u{1F4DD} Copying the following assets to the output directory:
1208
+ ${pendingAssets.map((pendingAsset) => typeof pendingAsset === "string" ? ` - ${pendingAsset} -> ${outputPath}` : ` - ${pendingAsset.input}/${pendingAsset.glob} -> ${joinPaths(outputPath, pendingAsset.output)}`).join("\n")}`, config);
1207
1209
  const result = await (0, import_js.copyAssets)({
1208
- assets,
1210
+ assets: pendingAssets,
1209
1211
  watch: false,
1210
1212
  outputPath
1211
1213
  }, {
@@ -2977,11 +2979,12 @@ async function resolveOptions(options, config) {
2977
2979
  dependencies = dependencies.filter((deps) => deps.name !== tsLibDependency.name);
2978
2980
  dependencies.push(tsLibDependency);
2979
2981
  }
2982
+ const name = options.name || projectName;
2980
2983
  const entries = options.entry ?? [
2981
2984
  sourceRoot
2982
2985
  ];
2983
2986
  const resolvedOptions = {
2984
- name: projectName,
2987
+ name,
2985
2988
  config,
2986
2989
  projectRoot: options.projectRoot,
2987
2990
  sourceRoot,
@@ -2989,24 +2992,27 @@ async function resolveOptions(options, config) {
2989
2992
  tsconfig,
2990
2993
  clean: false,
2991
2994
  entries: entries.reduce((ret, entry) => {
2992
- let entryPath = (0, import_node_path6.dirname)(entry.replace(options.projectRoot, ""));
2995
+ let entryPath = entry.replace(options.projectRoot, "");
2993
2996
  if (entryPath.startsWith(".")) {
2994
2997
  entryPath = entryPath.substring(1);
2995
2998
  }
2996
2999
  if (entryPath.startsWith("/")) {
2997
3000
  entryPath = entryPath.substring(1);
2998
3001
  }
3002
+ const outDir = joinPaths((0, import_node_path6.relative)(joinPaths(config.workspaceRoot, options.projectRoot), config.workspaceRoot), outputPath, "dist");
2999
3003
  ret.push({
3004
+ name: `${name}-esm`,
3000
3005
  builder: "mkdist",
3001
3006
  input: `./${entryPath}`,
3002
- outDir: joinPaths((0, import_node_path6.relative)(joinPaths(config.workspaceRoot, options.projectRoot), config.workspaceRoot), outputPath, "dist"),
3007
+ outDir,
3003
3008
  declaration: options.emitTypes !== false ? "compatible" : false,
3004
3009
  format: "esm"
3005
3010
  });
3006
3011
  ret.push({
3012
+ name: `${name}-cjs`,
3007
3013
  builder: "mkdist",
3008
3014
  input: `./${entryPath}`,
3009
- outDir: joinPaths((0, import_node_path6.relative)(joinPaths(config.workspaceRoot, options.projectRoot), config.workspaceRoot), outputPath, "dist"),
3015
+ outDir,
3010
3016
  declaration: options.emitTypes !== false ? "compatible" : false,
3011
3017
  format: "cjs",
3012
3018
  ext: "cjs"
@@ -3061,8 +3067,8 @@ async function resolveOptions(options, config) {
3061
3067
  ]
3062
3068
  },
3063
3069
  esbuild: {
3064
- minify: options.minify || !options.debug,
3065
- sourceMap: options.sourcemap || !!options.debug,
3070
+ minify: options.minify ?? !options.debug,
3071
+ sourceMap: options.sourcemap ?? !!options.debug,
3066
3072
  splitting: options.splitting !== false,
3067
3073
  treeShaking: options.treeShaking !== false,
3068
3074
  color: true,
package/bin/unbuild.js CHANGED
@@ -1179,8 +1179,10 @@ var copyAssets = /* @__PURE__ */ __name(async (config, assets, outputPath, proje
1179
1179
  if (!buildTarget) {
1180
1180
  throw new Error(`The Build process failed because the project does not have a valid build target in the project.json file. Check if the file exists in the root of the project at ${joinPaths(projectRoot, "project.json")}`);
1181
1181
  }
1182
+ writeTrace(`\u{1F4DD} Copying the following assets to the output directory:
1183
+ ${pendingAssets.map((pendingAsset) => typeof pendingAsset === "string" ? ` - ${pendingAsset} -> ${outputPath}` : ` - ${pendingAsset.input}/${pendingAsset.glob} -> ${joinPaths(outputPath, pendingAsset.output)}`).join("\n")}`, config);
1182
1184
  const result = await copyAssetsBase({
1183
- assets,
1185
+ assets: pendingAssets,
1184
1186
  watch: false,
1185
1187
  outputPath
1186
1188
  }, {
@@ -1319,7 +1321,7 @@ import defu4 from "defu";
1319
1321
  import { Glob as Glob2 } from "glob";
1320
1322
  import { existsSync as existsSync6 } from "node:fs";
1321
1323
  import { readFile as readFile4 } from "node:fs/promises";
1322
- import { dirname as dirname3, relative as relative4 } from "node:path";
1324
+ import { relative as relative4 } from "node:path";
1323
1325
  import { findWorkspaceRoot as findWorkspaceRoot2 } from "nx/src/utils/find-workspace-root";
1324
1326
 
1325
1327
  // ../../node_modules/.pnpm/unbuild@3.3.1_sass@1.83.4_typescript@5.7.3/node_modules/unbuild/dist/shared/unbuild.B2_7OVir.mjs
@@ -2952,11 +2954,12 @@ async function resolveOptions(options, config) {
2952
2954
  dependencies = dependencies.filter((deps) => deps.name !== tsLibDependency.name);
2953
2955
  dependencies.push(tsLibDependency);
2954
2956
  }
2957
+ const name = options.name || projectName;
2955
2958
  const entries = options.entry ?? [
2956
2959
  sourceRoot
2957
2960
  ];
2958
2961
  const resolvedOptions = {
2959
- name: projectName,
2962
+ name,
2960
2963
  config,
2961
2964
  projectRoot: options.projectRoot,
2962
2965
  sourceRoot,
@@ -2964,24 +2967,27 @@ async function resolveOptions(options, config) {
2964
2967
  tsconfig,
2965
2968
  clean: false,
2966
2969
  entries: entries.reduce((ret, entry) => {
2967
- let entryPath = dirname3(entry.replace(options.projectRoot, ""));
2970
+ let entryPath = entry.replace(options.projectRoot, "");
2968
2971
  if (entryPath.startsWith(".")) {
2969
2972
  entryPath = entryPath.substring(1);
2970
2973
  }
2971
2974
  if (entryPath.startsWith("/")) {
2972
2975
  entryPath = entryPath.substring(1);
2973
2976
  }
2977
+ const outDir = joinPaths(relative4(joinPaths(config.workspaceRoot, options.projectRoot), config.workspaceRoot), outputPath, "dist");
2974
2978
  ret.push({
2979
+ name: `${name}-esm`,
2975
2980
  builder: "mkdist",
2976
2981
  input: `./${entryPath}`,
2977
- outDir: joinPaths(relative4(joinPaths(config.workspaceRoot, options.projectRoot), config.workspaceRoot), outputPath, "dist"),
2982
+ outDir,
2978
2983
  declaration: options.emitTypes !== false ? "compatible" : false,
2979
2984
  format: "esm"
2980
2985
  });
2981
2986
  ret.push({
2987
+ name: `${name}-cjs`,
2982
2988
  builder: "mkdist",
2983
2989
  input: `./${entryPath}`,
2984
- outDir: joinPaths(relative4(joinPaths(config.workspaceRoot, options.projectRoot), config.workspaceRoot), outputPath, "dist"),
2990
+ outDir,
2985
2991
  declaration: options.emitTypes !== false ? "compatible" : false,
2986
2992
  format: "cjs",
2987
2993
  ext: "cjs"
@@ -3036,8 +3042,8 @@ async function resolveOptions(options, config) {
3036
3042
  ]
3037
3043
  },
3038
3044
  esbuild: {
3039
- minify: options.minify || !options.debug,
3040
- sourceMap: options.sourcemap || !!options.debug,
3045
+ minify: options.minify ?? !options.debug,
3046
+ sourceMap: options.sourcemap ?? !!options.debug,
3041
3047
  splitting: options.splitting !== false,
3042
3048
  treeShaking: options.treeShaking !== false,
3043
3049
  color: true,
package/dist/build.cjs CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
 
7
7
 
8
- var _chunkQBOQBJ36cjs = require('./chunk-QBOQBJ36.cjs');
8
+ var _chunkNUUJLWZWcjs = require('./chunk-NUUJLWZW.cjs');
9
9
  require('./chunk-5E3NJ26L.cjs');
10
10
  require('./chunk-Y2DOCJBE.cjs');
11
11
  require('./chunk-V627S7QU.cjs');
@@ -21,4 +21,4 @@ require('./chunk-YDYGZTJK.cjs');
21
21
 
22
22
 
23
23
 
24
- exports.build = _chunkQBOQBJ36cjs.build; exports.cleanOutputPath = _chunkQBOQBJ36cjs.cleanOutputPath; exports.copyBuildAssets = _chunkQBOQBJ36cjs.copyBuildAssets; exports.executeUnbuild = _chunkQBOQBJ36cjs.executeUnbuild; exports.generatePackageJson = _chunkQBOQBJ36cjs.generatePackageJson; exports.resolveOptions = _chunkQBOQBJ36cjs.resolveOptions;
24
+ exports.build = _chunkNUUJLWZWcjs.build; exports.cleanOutputPath = _chunkNUUJLWZWcjs.cleanOutputPath; exports.copyBuildAssets = _chunkNUUJLWZWcjs.copyBuildAssets; exports.executeUnbuild = _chunkNUUJLWZWcjs.executeUnbuild; exports.generatePackageJson = _chunkNUUJLWZWcjs.generatePackageJson; exports.resolveOptions = _chunkNUUJLWZWcjs.resolveOptions;
package/dist/build.js CHANGED
@@ -5,7 +5,7 @@ import {
5
5
  executeUnbuild,
6
6
  generatePackageJson,
7
7
  resolveOptions
8
- } from "./chunk-ZE7ZBVLJ.js";
8
+ } from "./chunk-OLWWKTSL.js";
9
9
  import "./chunk-VC7N2YVM.js";
10
10
  import "./chunk-K2D7TQ7G.js";
11
11
  import "./chunk-C5IHRWT3.js";
@@ -590,8 +590,10 @@ var copyAssets = /* @__PURE__ */ _chunkYDYGZTJKcjs.__name.call(void 0, async (co
590
590
  if (!buildTarget) {
591
591
  throw new Error(`The Build process failed because the project does not have a valid build target in the project.json file. Check if the file exists in the root of the project at ${_chunkFG6XQ26Mcjs.joinPaths.call(void 0, projectRoot, "project.json")}`);
592
592
  }
593
+ _chunkFG6XQ26Mcjs.writeTrace.call(void 0, `\u{1F4DD} Copying the following assets to the output directory:
594
+ ${pendingAssets.map((pendingAsset) => typeof pendingAsset === "string" ? ` - ${pendingAsset} -> ${outputPath}` : ` - ${pendingAsset.input}/${pendingAsset.glob} -> ${_chunkFG6XQ26Mcjs.joinPaths.call(void 0, outputPath, pendingAsset.output)}`).join("\n")}`, config);
593
595
  const result = await _js.copyAssets.call(void 0, {
594
- assets,
596
+ assets: pendingAssets,
595
597
  watch: false,
596
598
  outputPath
597
599
  }, {
@@ -2210,11 +2212,12 @@ async function resolveOptions(options, config) {
2210
2212
  dependencies = dependencies.filter((deps) => deps.name !== tsLibDependency.name);
2211
2213
  dependencies.push(tsLibDependency);
2212
2214
  }
2215
+ const name = options.name || projectName;
2213
2216
  const entries = _nullishCoalesce(options.entry, () => ( [
2214
2217
  sourceRoot
2215
2218
  ]));
2216
2219
  const resolvedOptions = {
2217
- name: projectName,
2220
+ name,
2218
2221
  config,
2219
2222
  projectRoot: options.projectRoot,
2220
2223
  sourceRoot,
@@ -2222,24 +2225,27 @@ async function resolveOptions(options, config) {
2222
2225
  tsconfig,
2223
2226
  clean: false,
2224
2227
  entries: entries.reduce((ret, entry) => {
2225
- let entryPath = _path.dirname.call(void 0, entry.replace(options.projectRoot, ""));
2228
+ let entryPath = entry.replace(options.projectRoot, "");
2226
2229
  if (entryPath.startsWith(".")) {
2227
2230
  entryPath = entryPath.substring(1);
2228
2231
  }
2229
2232
  if (entryPath.startsWith("/")) {
2230
2233
  entryPath = entryPath.substring(1);
2231
2234
  }
2235
+ const outDir = _chunkFG6XQ26Mcjs.joinPaths.call(void 0, _path.relative.call(void 0, _chunkFG6XQ26Mcjs.joinPaths.call(void 0, config.workspaceRoot, options.projectRoot), config.workspaceRoot), outputPath, "dist");
2232
2236
  ret.push({
2237
+ name: `${name}-esm`,
2233
2238
  builder: "mkdist",
2234
2239
  input: `./${entryPath}`,
2235
- outDir: _chunkFG6XQ26Mcjs.joinPaths.call(void 0, _path.relative.call(void 0, _chunkFG6XQ26Mcjs.joinPaths.call(void 0, config.workspaceRoot, options.projectRoot), config.workspaceRoot), outputPath, "dist"),
2240
+ outDir,
2236
2241
  declaration: options.emitTypes !== false ? "compatible" : false,
2237
2242
  format: "esm"
2238
2243
  });
2239
2244
  ret.push({
2245
+ name: `${name}-cjs`,
2240
2246
  builder: "mkdist",
2241
2247
  input: `./${entryPath}`,
2242
- outDir: _chunkFG6XQ26Mcjs.joinPaths.call(void 0, _path.relative.call(void 0, _chunkFG6XQ26Mcjs.joinPaths.call(void 0, config.workspaceRoot, options.projectRoot), config.workspaceRoot), outputPath, "dist"),
2248
+ outDir,
2243
2249
  declaration: options.emitTypes !== false ? "compatible" : false,
2244
2250
  format: "cjs",
2245
2251
  ext: "cjs"
@@ -2294,8 +2300,8 @@ async function resolveOptions(options, config) {
2294
2300
  ]
2295
2301
  },
2296
2302
  esbuild: {
2297
- minify: options.minify || !options.debug,
2298
- sourceMap: options.sourcemap || !!options.debug,
2303
+ minify: _nullishCoalesce(options.minify, () => ( !options.debug)),
2304
+ sourceMap: _nullishCoalesce(options.sourcemap, () => ( !!options.debug)),
2299
2305
  splitting: options.splitting !== false,
2300
2306
  treeShaking: options.treeShaking !== false,
2301
2307
  color: true,
@@ -589,8 +589,10 @@ var copyAssets = /* @__PURE__ */ __name(async (config, assets, outputPath, proje
589
589
  if (!buildTarget) {
590
590
  throw new Error(`The Build process failed because the project does not have a valid build target in the project.json file. Check if the file exists in the root of the project at ${joinPaths(projectRoot, "project.json")}`);
591
591
  }
592
+ writeTrace(`\u{1F4DD} Copying the following assets to the output directory:
593
+ ${pendingAssets.map((pendingAsset) => typeof pendingAsset === "string" ? ` - ${pendingAsset} -> ${outputPath}` : ` - ${pendingAsset.input}/${pendingAsset.glob} -> ${joinPaths(outputPath, pendingAsset.output)}`).join("\n")}`, config);
592
594
  const result = await copyAssetsBase({
593
- assets,
595
+ assets: pendingAssets,
594
596
  watch: false,
595
597
  outputPath
596
598
  }, {
@@ -729,7 +731,7 @@ import defu4 from "defu";
729
731
  import { Glob as Glob2 } from "glob";
730
732
  import { existsSync as existsSync4 } from "node:fs";
731
733
  import { readFile as readFile4 } from "node:fs/promises";
732
- import { dirname as dirname2, relative as relative3 } from "node:path";
734
+ import { relative as relative3 } from "node:path";
733
735
  import { findWorkspaceRoot as findWorkspaceRoot2 } from "nx/src/utils/find-workspace-root";
734
736
 
735
737
  // ../../node_modules/.pnpm/unbuild@3.3.1_sass@1.83.4_typescript@5.7.3/node_modules/unbuild/dist/shared/unbuild.B2_7OVir.mjs
@@ -2209,11 +2211,12 @@ async function resolveOptions(options, config) {
2209
2211
  dependencies = dependencies.filter((deps) => deps.name !== tsLibDependency.name);
2210
2212
  dependencies.push(tsLibDependency);
2211
2213
  }
2214
+ const name = options.name || projectName;
2212
2215
  const entries = options.entry ?? [
2213
2216
  sourceRoot
2214
2217
  ];
2215
2218
  const resolvedOptions = {
2216
- name: projectName,
2219
+ name,
2217
2220
  config,
2218
2221
  projectRoot: options.projectRoot,
2219
2222
  sourceRoot,
@@ -2221,24 +2224,27 @@ async function resolveOptions(options, config) {
2221
2224
  tsconfig,
2222
2225
  clean: false,
2223
2226
  entries: entries.reduce((ret, entry) => {
2224
- let entryPath = dirname2(entry.replace(options.projectRoot, ""));
2227
+ let entryPath = entry.replace(options.projectRoot, "");
2225
2228
  if (entryPath.startsWith(".")) {
2226
2229
  entryPath = entryPath.substring(1);
2227
2230
  }
2228
2231
  if (entryPath.startsWith("/")) {
2229
2232
  entryPath = entryPath.substring(1);
2230
2233
  }
2234
+ const outDir = joinPaths(relative3(joinPaths(config.workspaceRoot, options.projectRoot), config.workspaceRoot), outputPath, "dist");
2231
2235
  ret.push({
2236
+ name: `${name}-esm`,
2232
2237
  builder: "mkdist",
2233
2238
  input: `./${entryPath}`,
2234
- outDir: joinPaths(relative3(joinPaths(config.workspaceRoot, options.projectRoot), config.workspaceRoot), outputPath, "dist"),
2239
+ outDir,
2235
2240
  declaration: options.emitTypes !== false ? "compatible" : false,
2236
2241
  format: "esm"
2237
2242
  });
2238
2243
  ret.push({
2244
+ name: `${name}-cjs`,
2239
2245
  builder: "mkdist",
2240
2246
  input: `./${entryPath}`,
2241
- outDir: joinPaths(relative3(joinPaths(config.workspaceRoot, options.projectRoot), config.workspaceRoot), outputPath, "dist"),
2247
+ outDir,
2242
2248
  declaration: options.emitTypes !== false ? "compatible" : false,
2243
2249
  format: "cjs",
2244
2250
  ext: "cjs"
@@ -2293,8 +2299,8 @@ async function resolveOptions(options, config) {
2293
2299
  ]
2294
2300
  },
2295
2301
  esbuild: {
2296
- minify: options.minify || !options.debug,
2297
- sourceMap: options.sourcemap || !!options.debug,
2302
+ minify: options.minify ?? !options.debug,
2303
+ sourceMap: options.sourcemap ?? !!options.debug,
2298
2304
  splitting: options.splitting !== false,
2299
2305
  treeShaking: options.treeShaking !== false,
2300
2306
  color: true,
package/dist/index.cjs CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
 
7
7
 
8
- var _chunkQBOQBJ36cjs = require('./chunk-QBOQBJ36.cjs');
8
+ var _chunkNUUJLWZWcjs = require('./chunk-NUUJLWZW.cjs');
9
9
 
10
10
 
11
11
 
@@ -35,4 +35,4 @@ require('./chunk-YDYGZTJK.cjs');
35
35
 
36
36
 
37
37
 
38
- exports.build = _chunkQBOQBJ36cjs.build; exports.clean = _chunk5E3NJ26Lcjs.clean; exports.cleanDirectories = _chunk5E3NJ26Lcjs.cleanDirectories; exports.cleanOutputPath = _chunkQBOQBJ36cjs.cleanOutputPath; exports.copyBuildAssets = _chunkQBOQBJ36cjs.copyBuildAssets; exports.createTsCompilerOptions = _chunkV627S7QUcjs.createTsCompilerOptions; exports.executeUnbuild = _chunkQBOQBJ36cjs.executeUnbuild; exports.generatePackageJson = _chunkQBOQBJ36cjs.generatePackageJson; exports.getDefaultBuildPlugins = _chunkY2DOCJBEcjs.getDefaultBuildPlugins; exports.loadConfig = _chunkV627S7QUcjs.loadConfig; exports.resolveOptions = _chunkQBOQBJ36cjs.resolveOptions;
38
+ exports.build = _chunkNUUJLWZWcjs.build; exports.clean = _chunk5E3NJ26Lcjs.clean; exports.cleanDirectories = _chunk5E3NJ26Lcjs.cleanDirectories; exports.cleanOutputPath = _chunkNUUJLWZWcjs.cleanOutputPath; exports.copyBuildAssets = _chunkNUUJLWZWcjs.copyBuildAssets; exports.createTsCompilerOptions = _chunkV627S7QUcjs.createTsCompilerOptions; exports.executeUnbuild = _chunkNUUJLWZWcjs.executeUnbuild; exports.generatePackageJson = _chunkNUUJLWZWcjs.generatePackageJson; exports.getDefaultBuildPlugins = _chunkY2DOCJBEcjs.getDefaultBuildPlugins; exports.loadConfig = _chunkV627S7QUcjs.loadConfig; exports.resolveOptions = _chunkNUUJLWZWcjs.resolveOptions;
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@ import {
5
5
  executeUnbuild,
6
6
  generatePackageJson,
7
7
  resolveOptions
8
- } from "./chunk-ZE7ZBVLJ.js";
8
+ } from "./chunk-OLWWKTSL.js";
9
9
  import {
10
10
  clean,
11
11
  cleanDirectories
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/unbuild",
3
- "version": "0.30.1",
3
+ "version": "0.30.3",
4
4
  "type": "module",
5
5
  "description": "A package containing `unbuild` utilities for building Storm Software libraries and applications",
6
6
  "repository": {
@@ -171,9 +171,9 @@
171
171
  "@nx/devkit": "^20.3.1",
172
172
  "@nx/js": "^20.3.1",
173
173
  "@rollup/pluginutils": "^5.1.4",
174
- "@storm-software/build-tools": "0.135.1",
175
- "@storm-software/config": "1.98.0",
176
- "@storm-software/config-tools": "1.141.1",
174
+ "@storm-software/build-tools": "0.135.3",
175
+ "@storm-software/config": "1.98.1",
176
+ "@storm-software/config-tools": "1.141.3",
177
177
  "@swc/core": "1.7.26",
178
178
  "@types/node": "^22.10.2",
179
179
  "commander": "^12.1.0",