@storm-software/unbuild 0.30.3 → 0.30.5
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 +1 -1
- package/bin/unbuild.cjs +28 -10
- package/bin/unbuild.js +28 -10
- package/dist/build.cjs +2 -2
- package/dist/build.js +1 -1
- package/dist/{chunk-NUUJLWZW.cjs → chunk-F77T2VZV.cjs} +28 -10
- package/dist/{chunk-OLWWKTSL.js → chunk-VD6EE7HD.js} +28 -10
- package/dist/index.cjs +2 -2
- package/dist/index.js +1 -1
- package/package.json +4 -4
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
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
package/bin/unbuild.cjs
CHANGED
|
@@ -2993,10 +2993,10 @@ async function resolveOptions(options, config) {
|
|
|
2993
2993
|
clean: false,
|
|
2994
2994
|
entries: entries.reduce((ret, entry) => {
|
|
2995
2995
|
let entryPath = entry.replace(options.projectRoot, "");
|
|
2996
|
-
|
|
2996
|
+
while (entryPath.startsWith(".")) {
|
|
2997
2997
|
entryPath = entryPath.substring(1);
|
|
2998
2998
|
}
|
|
2999
|
-
|
|
2999
|
+
while (entryPath.startsWith("/")) {
|
|
3000
3000
|
entryPath = entryPath.substring(1);
|
|
3001
3001
|
}
|
|
3002
3002
|
const outDir = joinPaths((0, import_node_path6.relative)(joinPaths(config.workspaceRoot, options.projectRoot), config.workspaceRoot), outputPath, "dist");
|
|
@@ -3107,10 +3107,20 @@ async function resolveOptions(options, config) {
|
|
|
3107
3107
|
return resolvedOptions;
|
|
3108
3108
|
}
|
|
3109
3109
|
__name(resolveOptions, "resolveOptions");
|
|
3110
|
-
var addPackageJsonExport = /* @__PURE__ */ __name((file, type = "module", sourceRoot) => {
|
|
3111
|
-
let
|
|
3112
|
-
|
|
3113
|
-
|
|
3110
|
+
var addPackageJsonExport = /* @__PURE__ */ __name((file, type = "module", sourceRoot, projectRoot) => {
|
|
3111
|
+
let root = sourceRoot.replace(projectRoot, "");
|
|
3112
|
+
while (root.startsWith(".")) {
|
|
3113
|
+
root = root.substring(1);
|
|
3114
|
+
}
|
|
3115
|
+
while (root.startsWith("/")) {
|
|
3116
|
+
root = root.substring(1);
|
|
3117
|
+
}
|
|
3118
|
+
let entry = file.replaceAll("\\", "/").replace(sourceRoot, "");
|
|
3119
|
+
while (entry.startsWith(".")) {
|
|
3120
|
+
entry = entry.substring(1);
|
|
3121
|
+
}
|
|
3122
|
+
while (entry.startsWith("/")) {
|
|
3123
|
+
entry = entry.substring(1);
|
|
3114
3124
|
}
|
|
3115
3125
|
return {
|
|
3116
3126
|
"import": {
|
|
@@ -3144,7 +3154,15 @@ async function generatePackageJson(options) {
|
|
|
3144
3154
|
packageJson = await addWorkspacePackageJsonFields(options.config, options.projectRoot, options.sourceRoot, options.projectName, false, packageJson);
|
|
3145
3155
|
packageJson.exports ??= {};
|
|
3146
3156
|
await Promise.all(options.entries.reduce((ret, entry) => {
|
|
3147
|
-
|
|
3157
|
+
let entryPath = typeof entry === "string" ? entry : entry.input;
|
|
3158
|
+
entryPath = entryPath.replaceAll("\\", "/");
|
|
3159
|
+
while (entryPath.startsWith(".")) {
|
|
3160
|
+
entryPath = entryPath.substring(1);
|
|
3161
|
+
}
|
|
3162
|
+
while (entryPath.startsWith("/")) {
|
|
3163
|
+
entryPath = entryPath.substring(1);
|
|
3164
|
+
}
|
|
3165
|
+
entryPath = `./${joinPaths(options.projectRoot, entryPath)}`;
|
|
3148
3166
|
if (!ret.includes(entryPath)) {
|
|
3149
3167
|
ret.push(entryPath);
|
|
3150
3168
|
}
|
|
@@ -3156,11 +3174,11 @@ async function generatePackageJson(options) {
|
|
|
3156
3174
|
root: entryPath
|
|
3157
3175
|
}).walk();
|
|
3158
3176
|
files.forEach((file) => {
|
|
3159
|
-
addPackageJsonExport(file, packageJson.type, options.sourceRoot);
|
|
3177
|
+
addPackageJsonExport(file, packageJson.type, options.sourceRoot, options.projectRoot);
|
|
3160
3178
|
const split = file.split(".");
|
|
3161
3179
|
split.pop();
|
|
3162
3180
|
const entry = split.join(".").replaceAll("\\", "/");
|
|
3163
|
-
packageJson.exports[`./${entry}`] ??= addPackageJsonExport(entry, packageJson.type, options.sourceRoot);
|
|
3181
|
+
packageJson.exports[`./${entry}`] ??= addPackageJsonExport(entry, packageJson.type, options.sourceRoot, options.projectRoot);
|
|
3164
3182
|
});
|
|
3165
3183
|
}));
|
|
3166
3184
|
packageJson.main ??= "./dist/index.cjs";
|
|
@@ -3174,7 +3192,7 @@ async function generatePackageJson(options) {
|
|
|
3174
3192
|
return ret;
|
|
3175
3193
|
}, packageJson.exports);
|
|
3176
3194
|
packageJson.exports["./package.json"] ??= "./package.json";
|
|
3177
|
-
packageJson.exports["."] ??= addPackageJsonExport("index", packageJson.type, options.sourceRoot);
|
|
3195
|
+
packageJson.exports["."] ??= addPackageJsonExport("index", packageJson.type, options.sourceRoot, options.projectRoot);
|
|
3178
3196
|
await (0, import_devkit6.writeJsonFile)(joinPaths(options.outDir, "package.json"), packageJson);
|
|
3179
3197
|
stopwatch();
|
|
3180
3198
|
}
|
package/bin/unbuild.js
CHANGED
|
@@ -2968,10 +2968,10 @@ async function resolveOptions(options, config) {
|
|
|
2968
2968
|
clean: false,
|
|
2969
2969
|
entries: entries.reduce((ret, entry) => {
|
|
2970
2970
|
let entryPath = entry.replace(options.projectRoot, "");
|
|
2971
|
-
|
|
2971
|
+
while (entryPath.startsWith(".")) {
|
|
2972
2972
|
entryPath = entryPath.substring(1);
|
|
2973
2973
|
}
|
|
2974
|
-
|
|
2974
|
+
while (entryPath.startsWith("/")) {
|
|
2975
2975
|
entryPath = entryPath.substring(1);
|
|
2976
2976
|
}
|
|
2977
2977
|
const outDir = joinPaths(relative4(joinPaths(config.workspaceRoot, options.projectRoot), config.workspaceRoot), outputPath, "dist");
|
|
@@ -3082,10 +3082,20 @@ async function resolveOptions(options, config) {
|
|
|
3082
3082
|
return resolvedOptions;
|
|
3083
3083
|
}
|
|
3084
3084
|
__name(resolveOptions, "resolveOptions");
|
|
3085
|
-
var addPackageJsonExport = /* @__PURE__ */ __name((file, type = "module", sourceRoot) => {
|
|
3086
|
-
let
|
|
3087
|
-
|
|
3088
|
-
|
|
3085
|
+
var addPackageJsonExport = /* @__PURE__ */ __name((file, type = "module", sourceRoot, projectRoot) => {
|
|
3086
|
+
let root = sourceRoot.replace(projectRoot, "");
|
|
3087
|
+
while (root.startsWith(".")) {
|
|
3088
|
+
root = root.substring(1);
|
|
3089
|
+
}
|
|
3090
|
+
while (root.startsWith("/")) {
|
|
3091
|
+
root = root.substring(1);
|
|
3092
|
+
}
|
|
3093
|
+
let entry = file.replaceAll("\\", "/").replace(sourceRoot, "");
|
|
3094
|
+
while (entry.startsWith(".")) {
|
|
3095
|
+
entry = entry.substring(1);
|
|
3096
|
+
}
|
|
3097
|
+
while (entry.startsWith("/")) {
|
|
3098
|
+
entry = entry.substring(1);
|
|
3089
3099
|
}
|
|
3090
3100
|
return {
|
|
3091
3101
|
"import": {
|
|
@@ -3119,7 +3129,15 @@ async function generatePackageJson(options) {
|
|
|
3119
3129
|
packageJson = await addWorkspacePackageJsonFields(options.config, options.projectRoot, options.sourceRoot, options.projectName, false, packageJson);
|
|
3120
3130
|
packageJson.exports ??= {};
|
|
3121
3131
|
await Promise.all(options.entries.reduce((ret, entry) => {
|
|
3122
|
-
|
|
3132
|
+
let entryPath = typeof entry === "string" ? entry : entry.input;
|
|
3133
|
+
entryPath = entryPath.replaceAll("\\", "/");
|
|
3134
|
+
while (entryPath.startsWith(".")) {
|
|
3135
|
+
entryPath = entryPath.substring(1);
|
|
3136
|
+
}
|
|
3137
|
+
while (entryPath.startsWith("/")) {
|
|
3138
|
+
entryPath = entryPath.substring(1);
|
|
3139
|
+
}
|
|
3140
|
+
entryPath = `./${joinPaths(options.projectRoot, entryPath)}`;
|
|
3123
3141
|
if (!ret.includes(entryPath)) {
|
|
3124
3142
|
ret.push(entryPath);
|
|
3125
3143
|
}
|
|
@@ -3131,11 +3149,11 @@ async function generatePackageJson(options) {
|
|
|
3131
3149
|
root: entryPath
|
|
3132
3150
|
}).walk();
|
|
3133
3151
|
files.forEach((file) => {
|
|
3134
|
-
addPackageJsonExport(file, packageJson.type, options.sourceRoot);
|
|
3152
|
+
addPackageJsonExport(file, packageJson.type, options.sourceRoot, options.projectRoot);
|
|
3135
3153
|
const split = file.split(".");
|
|
3136
3154
|
split.pop();
|
|
3137
3155
|
const entry = split.join(".").replaceAll("\\", "/");
|
|
3138
|
-
packageJson.exports[`./${entry}`] ??= addPackageJsonExport(entry, packageJson.type, options.sourceRoot);
|
|
3156
|
+
packageJson.exports[`./${entry}`] ??= addPackageJsonExport(entry, packageJson.type, options.sourceRoot, options.projectRoot);
|
|
3139
3157
|
});
|
|
3140
3158
|
}));
|
|
3141
3159
|
packageJson.main ??= "./dist/index.cjs";
|
|
@@ -3149,7 +3167,7 @@ async function generatePackageJson(options) {
|
|
|
3149
3167
|
return ret;
|
|
3150
3168
|
}, packageJson.exports);
|
|
3151
3169
|
packageJson.exports["./package.json"] ??= "./package.json";
|
|
3152
|
-
packageJson.exports["."] ??= addPackageJsonExport("index", packageJson.type, options.sourceRoot);
|
|
3170
|
+
packageJson.exports["."] ??= addPackageJsonExport("index", packageJson.type, options.sourceRoot, options.projectRoot);
|
|
3153
3171
|
await writeJsonFile(joinPaths(options.outDir, "package.json"), packageJson);
|
|
3154
3172
|
stopwatch();
|
|
3155
3173
|
}
|
package/dist/build.cjs
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
var
|
|
8
|
+
var _chunkF77T2VZVcjs = require('./chunk-F77T2VZV.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 =
|
|
24
|
+
exports.build = _chunkF77T2VZVcjs.build; exports.cleanOutputPath = _chunkF77T2VZVcjs.cleanOutputPath; exports.copyBuildAssets = _chunkF77T2VZVcjs.copyBuildAssets; exports.executeUnbuild = _chunkF77T2VZVcjs.executeUnbuild; exports.generatePackageJson = _chunkF77T2VZVcjs.generatePackageJson; exports.resolveOptions = _chunkF77T2VZVcjs.resolveOptions;
|
package/dist/build.js
CHANGED
|
@@ -2226,10 +2226,10 @@ async function resolveOptions(options, config) {
|
|
|
2226
2226
|
clean: false,
|
|
2227
2227
|
entries: entries.reduce((ret, entry) => {
|
|
2228
2228
|
let entryPath = entry.replace(options.projectRoot, "");
|
|
2229
|
-
|
|
2229
|
+
while (entryPath.startsWith(".")) {
|
|
2230
2230
|
entryPath = entryPath.substring(1);
|
|
2231
2231
|
}
|
|
2232
|
-
|
|
2232
|
+
while (entryPath.startsWith("/")) {
|
|
2233
2233
|
entryPath = entryPath.substring(1);
|
|
2234
2234
|
}
|
|
2235
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");
|
|
@@ -2340,10 +2340,20 @@ async function resolveOptions(options, config) {
|
|
|
2340
2340
|
return resolvedOptions;
|
|
2341
2341
|
}
|
|
2342
2342
|
_chunkYDYGZTJKcjs.__name.call(void 0, resolveOptions, "resolveOptions");
|
|
2343
|
-
var addPackageJsonExport = /* @__PURE__ */ _chunkYDYGZTJKcjs.__name.call(void 0, (file, type = "module", sourceRoot) => {
|
|
2344
|
-
let
|
|
2345
|
-
|
|
2346
|
-
|
|
2343
|
+
var addPackageJsonExport = /* @__PURE__ */ _chunkYDYGZTJKcjs.__name.call(void 0, (file, type = "module", sourceRoot, projectRoot) => {
|
|
2344
|
+
let root = sourceRoot.replace(projectRoot, "");
|
|
2345
|
+
while (root.startsWith(".")) {
|
|
2346
|
+
root = root.substring(1);
|
|
2347
|
+
}
|
|
2348
|
+
while (root.startsWith("/")) {
|
|
2349
|
+
root = root.substring(1);
|
|
2350
|
+
}
|
|
2351
|
+
let entry = file.replaceAll("\\", "/").replace(sourceRoot, "");
|
|
2352
|
+
while (entry.startsWith(".")) {
|
|
2353
|
+
entry = entry.substring(1);
|
|
2354
|
+
}
|
|
2355
|
+
while (entry.startsWith("/")) {
|
|
2356
|
+
entry = entry.substring(1);
|
|
2347
2357
|
}
|
|
2348
2358
|
return {
|
|
2349
2359
|
"import": {
|
|
@@ -2377,7 +2387,15 @@ async function generatePackageJson(options) {
|
|
|
2377
2387
|
packageJson = await addWorkspacePackageJsonFields(options.config, options.projectRoot, options.sourceRoot, options.projectName, false, packageJson);
|
|
2378
2388
|
packageJson.exports ??= {};
|
|
2379
2389
|
await Promise.all(options.entries.reduce((ret, entry) => {
|
|
2380
|
-
|
|
2390
|
+
let entryPath = typeof entry === "string" ? entry : entry.input;
|
|
2391
|
+
entryPath = entryPath.replaceAll("\\", "/");
|
|
2392
|
+
while (entryPath.startsWith(".")) {
|
|
2393
|
+
entryPath = entryPath.substring(1);
|
|
2394
|
+
}
|
|
2395
|
+
while (entryPath.startsWith("/")) {
|
|
2396
|
+
entryPath = entryPath.substring(1);
|
|
2397
|
+
}
|
|
2398
|
+
entryPath = `./${_chunkFG6XQ26Mcjs.joinPaths.call(void 0, options.projectRoot, entryPath)}`;
|
|
2381
2399
|
if (!ret.includes(entryPath)) {
|
|
2382
2400
|
ret.push(entryPath);
|
|
2383
2401
|
}
|
|
@@ -2389,11 +2407,11 @@ async function generatePackageJson(options) {
|
|
|
2389
2407
|
root: entryPath
|
|
2390
2408
|
}).walk();
|
|
2391
2409
|
files.forEach((file) => {
|
|
2392
|
-
addPackageJsonExport(file, packageJson.type, options.sourceRoot);
|
|
2410
|
+
addPackageJsonExport(file, packageJson.type, options.sourceRoot, options.projectRoot);
|
|
2393
2411
|
const split = file.split(".");
|
|
2394
2412
|
split.pop();
|
|
2395
2413
|
const entry = split.join(".").replaceAll("\\", "/");
|
|
2396
|
-
packageJson.exports[`./${entry}`] ??= addPackageJsonExport(entry, packageJson.type, options.sourceRoot);
|
|
2414
|
+
packageJson.exports[`./${entry}`] ??= addPackageJsonExport(entry, packageJson.type, options.sourceRoot, options.projectRoot);
|
|
2397
2415
|
});
|
|
2398
2416
|
}));
|
|
2399
2417
|
packageJson.main ??= "./dist/index.cjs";
|
|
@@ -2407,7 +2425,7 @@ async function generatePackageJson(options) {
|
|
|
2407
2425
|
return ret;
|
|
2408
2426
|
}, packageJson.exports);
|
|
2409
2427
|
packageJson.exports["./package.json"] ??= "./package.json";
|
|
2410
|
-
packageJson.exports["."] ??= addPackageJsonExport("index", packageJson.type, options.sourceRoot);
|
|
2428
|
+
packageJson.exports["."] ??= addPackageJsonExport("index", packageJson.type, options.sourceRoot, options.projectRoot);
|
|
2411
2429
|
await _devkit.writeJsonFile.call(void 0, _chunkFG6XQ26Mcjs.joinPaths.call(void 0, options.outDir, "package.json"), packageJson);
|
|
2412
2430
|
stopwatch();
|
|
2413
2431
|
}
|
|
@@ -2225,10 +2225,10 @@ async function resolveOptions(options, config) {
|
|
|
2225
2225
|
clean: false,
|
|
2226
2226
|
entries: entries.reduce((ret, entry) => {
|
|
2227
2227
|
let entryPath = entry.replace(options.projectRoot, "");
|
|
2228
|
-
|
|
2228
|
+
while (entryPath.startsWith(".")) {
|
|
2229
2229
|
entryPath = entryPath.substring(1);
|
|
2230
2230
|
}
|
|
2231
|
-
|
|
2231
|
+
while (entryPath.startsWith("/")) {
|
|
2232
2232
|
entryPath = entryPath.substring(1);
|
|
2233
2233
|
}
|
|
2234
2234
|
const outDir = joinPaths(relative3(joinPaths(config.workspaceRoot, options.projectRoot), config.workspaceRoot), outputPath, "dist");
|
|
@@ -2339,10 +2339,20 @@ async function resolveOptions(options, config) {
|
|
|
2339
2339
|
return resolvedOptions;
|
|
2340
2340
|
}
|
|
2341
2341
|
__name(resolveOptions, "resolveOptions");
|
|
2342
|
-
var addPackageJsonExport = /* @__PURE__ */ __name((file, type = "module", sourceRoot) => {
|
|
2343
|
-
let
|
|
2344
|
-
|
|
2345
|
-
|
|
2342
|
+
var addPackageJsonExport = /* @__PURE__ */ __name((file, type = "module", sourceRoot, projectRoot) => {
|
|
2343
|
+
let root = sourceRoot.replace(projectRoot, "");
|
|
2344
|
+
while (root.startsWith(".")) {
|
|
2345
|
+
root = root.substring(1);
|
|
2346
|
+
}
|
|
2347
|
+
while (root.startsWith("/")) {
|
|
2348
|
+
root = root.substring(1);
|
|
2349
|
+
}
|
|
2350
|
+
let entry = file.replaceAll("\\", "/").replace(sourceRoot, "");
|
|
2351
|
+
while (entry.startsWith(".")) {
|
|
2352
|
+
entry = entry.substring(1);
|
|
2353
|
+
}
|
|
2354
|
+
while (entry.startsWith("/")) {
|
|
2355
|
+
entry = entry.substring(1);
|
|
2346
2356
|
}
|
|
2347
2357
|
return {
|
|
2348
2358
|
"import": {
|
|
@@ -2376,7 +2386,15 @@ async function generatePackageJson(options) {
|
|
|
2376
2386
|
packageJson = await addWorkspacePackageJsonFields(options.config, options.projectRoot, options.sourceRoot, options.projectName, false, packageJson);
|
|
2377
2387
|
packageJson.exports ??= {};
|
|
2378
2388
|
await Promise.all(options.entries.reduce((ret, entry) => {
|
|
2379
|
-
|
|
2389
|
+
let entryPath = typeof entry === "string" ? entry : entry.input;
|
|
2390
|
+
entryPath = entryPath.replaceAll("\\", "/");
|
|
2391
|
+
while (entryPath.startsWith(".")) {
|
|
2392
|
+
entryPath = entryPath.substring(1);
|
|
2393
|
+
}
|
|
2394
|
+
while (entryPath.startsWith("/")) {
|
|
2395
|
+
entryPath = entryPath.substring(1);
|
|
2396
|
+
}
|
|
2397
|
+
entryPath = `./${joinPaths(options.projectRoot, entryPath)}`;
|
|
2380
2398
|
if (!ret.includes(entryPath)) {
|
|
2381
2399
|
ret.push(entryPath);
|
|
2382
2400
|
}
|
|
@@ -2388,11 +2406,11 @@ async function generatePackageJson(options) {
|
|
|
2388
2406
|
root: entryPath
|
|
2389
2407
|
}).walk();
|
|
2390
2408
|
files.forEach((file) => {
|
|
2391
|
-
addPackageJsonExport(file, packageJson.type, options.sourceRoot);
|
|
2409
|
+
addPackageJsonExport(file, packageJson.type, options.sourceRoot, options.projectRoot);
|
|
2392
2410
|
const split = file.split(".");
|
|
2393
2411
|
split.pop();
|
|
2394
2412
|
const entry = split.join(".").replaceAll("\\", "/");
|
|
2395
|
-
packageJson.exports[`./${entry}`] ??= addPackageJsonExport(entry, packageJson.type, options.sourceRoot);
|
|
2413
|
+
packageJson.exports[`./${entry}`] ??= addPackageJsonExport(entry, packageJson.type, options.sourceRoot, options.projectRoot);
|
|
2396
2414
|
});
|
|
2397
2415
|
}));
|
|
2398
2416
|
packageJson.main ??= "./dist/index.cjs";
|
|
@@ -2406,7 +2424,7 @@ async function generatePackageJson(options) {
|
|
|
2406
2424
|
return ret;
|
|
2407
2425
|
}, packageJson.exports);
|
|
2408
2426
|
packageJson.exports["./package.json"] ??= "./package.json";
|
|
2409
|
-
packageJson.exports["."] ??= addPackageJsonExport("index", packageJson.type, options.sourceRoot);
|
|
2427
|
+
packageJson.exports["."] ??= addPackageJsonExport("index", packageJson.type, options.sourceRoot, options.projectRoot);
|
|
2410
2428
|
await writeJsonFile(joinPaths(options.outDir, "package.json"), packageJson);
|
|
2411
2429
|
stopwatch();
|
|
2412
2430
|
}
|
package/dist/index.cjs
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
var
|
|
8
|
+
var _chunkF77T2VZVcjs = require('./chunk-F77T2VZV.cjs');
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
@@ -35,4 +35,4 @@ require('./chunk-YDYGZTJK.cjs');
|
|
|
35
35
|
|
|
36
36
|
|
|
37
37
|
|
|
38
|
-
exports.build =
|
|
38
|
+
exports.build = _chunkF77T2VZVcjs.build; exports.clean = _chunk5E3NJ26Lcjs.clean; exports.cleanDirectories = _chunk5E3NJ26Lcjs.cleanDirectories; exports.cleanOutputPath = _chunkF77T2VZVcjs.cleanOutputPath; exports.copyBuildAssets = _chunkF77T2VZVcjs.copyBuildAssets; exports.createTsCompilerOptions = _chunkV627S7QUcjs.createTsCompilerOptions; exports.executeUnbuild = _chunkF77T2VZVcjs.executeUnbuild; exports.generatePackageJson = _chunkF77T2VZVcjs.generatePackageJson; exports.getDefaultBuildPlugins = _chunkY2DOCJBEcjs.getDefaultBuildPlugins; exports.loadConfig = _chunkV627S7QUcjs.loadConfig; exports.resolveOptions = _chunkF77T2VZVcjs.resolveOptions;
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/unbuild",
|
|
3
|
-
"version": "0.30.
|
|
3
|
+
"version": "0.30.5",
|
|
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.
|
|
175
|
-
"@storm-software/config": "1.98.
|
|
176
|
-
"@storm-software/config-tools": "1.141.
|
|
174
|
+
"@storm-software/build-tools": "0.135.5",
|
|
175
|
+
"@storm-software/config": "1.98.2",
|
|
176
|
+
"@storm-software/config-tools": "1.141.5",
|
|
177
177
|
"@swc/core": "1.7.26",
|
|
178
178
|
"@types/node": "^22.10.2",
|
|
179
179
|
"commander": "^12.1.0",
|