@storm-software/unbuild 0.49.44 → 0.49.46
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 +15 -14
- package/bin/unbuild.js +15 -14
- package/dist/build.cjs +7 -7
- package/dist/build.js +6 -6
- package/dist/{chunk-JTL64DIV.cjs → chunk-3WPI2LUL.cjs} +105 -105
- package/dist/{chunk-IX57XUC6.js → chunk-A344TKTC.js} +1 -1
- package/dist/{chunk-XNEAB4RQ.cjs → chunk-A4MFYPJN.cjs} +3 -3
- package/dist/{chunk-WLUG56XM.cjs → chunk-AS3CHHHX.cjs} +15 -14
- package/dist/{chunk-TPCOWOWK.js → chunk-FWLSKHOW.js} +15 -14
- package/dist/{chunk-5LIOQAOY.cjs → chunk-GYTRVRQJ.cjs} +2 -2
- package/dist/{chunk-6ZKWJ5VK.js → chunk-HUPRNKOU.js} +1 -1
- package/dist/{chunk-VT6DJF6W.js → chunk-NLH4D6OZ.js} +5 -5
- package/dist/{chunk-DGJFFRFH.cjs → chunk-WSPD5TWC.cjs} +3 -3
- package/dist/{chunk-ILCF5AV5.js → chunk-WUSF3WE6.js} +1 -1
- package/dist/{chunk-TWJO45XW.js → chunk-X5NCLQHD.js} +1 -1
- package/dist/{chunk-SGP6BUJQ.cjs → chunk-YODGKUIC.cjs} +2 -2
- package/dist/clean.cjs +3 -3
- package/dist/clean.js +2 -2
- package/dist/index.cjs +7 -7
- package/dist/index.js +6 -6
- package/dist/plugins/analyze.cjs +3 -3
- package/dist/plugins/analyze.js +2 -2
- package/dist/plugins/on-error.cjs +3 -3
- package/dist/plugins/on-error.js +2 -2
- package/dist/plugins/tsc.cjs +3 -3
- package/dist/plugins/tsc.js +2 -2
- package/package.json +5 -5
|
@@ -224,7 +224,7 @@ If this sounds interesting, and you would like to help us in creating the next g
|
|
|
224
224
|
var STORM_DEFAULT_ERROR_CODES_FILE = "tools/errors/codes.json";
|
|
225
225
|
|
|
226
226
|
// ../config/src/schema.ts
|
|
227
|
-
var
|
|
227
|
+
var _zod = require('zod'); var z = _interopRequireWildcard(_zod);
|
|
228
228
|
var DarkColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#1d1e22").describe("The dark background color of the workspace");
|
|
229
229
|
var LightColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#f4f4f5").describe("The light background color of the workspace");
|
|
230
230
|
var BrandColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#1fb2a6").describe("The primary brand specific color of the workspace");
|
|
@@ -291,7 +291,7 @@ var SingleThemeColorConfigSchema = z.object({
|
|
|
291
291
|
positive: PositiveColorSchema,
|
|
292
292
|
negative: NegativeColorSchema
|
|
293
293
|
});
|
|
294
|
-
var RegistryUrlConfigSchema = z.
|
|
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.
|
|
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.
|
|
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.
|
|
372
|
-
icon: z.
|
|
373
|
-
url: z.
|
|
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.
|
|
394
|
-
docs: z.
|
|
395
|
-
portal: z.
|
|
396
|
-
licensing: z.
|
|
397
|
-
contact: z.
|
|
398
|
-
support: z.
|
|
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(
|
|
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,
|
|
@@ -224,7 +224,7 @@ If this sounds interesting, and you would like to help us in creating the next g
|
|
|
224
224
|
var STORM_DEFAULT_ERROR_CODES_FILE = "tools/errors/codes.json";
|
|
225
225
|
|
|
226
226
|
// ../config/src/schema.ts
|
|
227
|
-
import * as z from "zod
|
|
227
|
+
import * as z from "zod";
|
|
228
228
|
var DarkColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#1d1e22").describe("The dark background color of the workspace");
|
|
229
229
|
var LightColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#f4f4f5").describe("The light background color of the workspace");
|
|
230
230
|
var BrandColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#1fb2a6").describe("The primary brand specific color of the workspace");
|
|
@@ -291,7 +291,7 @@ var SingleThemeColorConfigSchema = z.object({
|
|
|
291
291
|
positive: PositiveColorSchema,
|
|
292
292
|
negative: NegativeColorSchema
|
|
293
293
|
});
|
|
294
|
-
var RegistryUrlConfigSchema = z.
|
|
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.
|
|
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.
|
|
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.
|
|
372
|
-
icon: z.
|
|
373
|
-
url: z.
|
|
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.
|
|
394
|
-
docs: z.
|
|
395
|
-
portal: z.
|
|
396
|
-
licensing: z.
|
|
397
|
-
contact: z.
|
|
398
|
-
support: z.
|
|
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(
|
|
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,6 +1,6 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkAS3CHHHXcjs = require('./chunk-AS3CHHHX.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
|
-
|
|
20
|
+
_chunkAS3CHHHXcjs.writeInfo.call(void 0, ` - ${fileName} ${sourceBytes}`, options.config);
|
|
21
21
|
}
|
|
22
22
|
};
|
|
23
23
|
};
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import {
|
|
2
2
|
cleanDirectories
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-WUSF3WE6.js";
|
|
4
4
|
import {
|
|
5
5
|
analyzePlugin
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-HUPRNKOU.js";
|
|
7
7
|
import {
|
|
8
8
|
onErrorPlugin
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-A344TKTC.js";
|
|
10
10
|
import {
|
|
11
11
|
loadConfig,
|
|
12
12
|
tscPlugin
|
|
13
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-X5NCLQHD.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-
|
|
37
|
+
} from "./chunk-FWLSKHOW.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
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkAS3CHHHXcjs = require('./chunk-AS3CHHHX.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
|
-
|
|
10
|
-
const stopwatch =
|
|
9
|
+
_chunkAS3CHHHXcjs.writeDebug.call(void 0, ` \u{1F9F9} Cleaning ${name} output path: ${directory}`, config);
|
|
10
|
+
const stopwatch = _chunkAS3CHHHXcjs.getStopwatch.call(void 0, `${name} output clean`);
|
|
11
11
|
await cleanDirectories(name, directory, config);
|
|
12
12
|
stopwatch();
|
|
13
13
|
}
|
|
@@ -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
|
|
3
|
+
var _chunkAS3CHHHXcjs = require('./chunk-AS3CHHHX.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
|
-
|
|
48
|
+
_chunkAS3CHHHXcjs.writeTrace.call(void 0, compilerOptions, config);
|
|
49
49
|
return compilerOptions;
|
|
50
50
|
}
|
|
51
51
|
|
package/dist/clean.cjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
5
|
-
require('./chunk-
|
|
4
|
+
var _chunkWSPD5TWCcjs = require('./chunk-WSPD5TWC.cjs');
|
|
5
|
+
require('./chunk-AS3CHHHX.cjs');
|
|
6
6
|
require('./chunk-OBGZSXTJ.cjs');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
exports.clean =
|
|
10
|
+
exports.clean = _chunkWSPD5TWCcjs.clean; exports.cleanDirectories = _chunkWSPD5TWCcjs.cleanDirectories;
|
package/dist/clean.js
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -5,19 +5,19 @@
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
var
|
|
8
|
+
var _chunk3WPI2LULcjs = require('./chunk-3WPI2LUL.cjs');
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
var
|
|
12
|
+
var _chunkWSPD5TWCcjs = require('./chunk-WSPD5TWC.cjs');
|
|
13
13
|
require('./chunk-SFZRYJZ2.cjs');
|
|
14
|
-
require('./chunk-
|
|
15
|
-
require('./chunk-
|
|
14
|
+
require('./chunk-GYTRVRQJ.cjs');
|
|
15
|
+
require('./chunk-A4MFYPJN.cjs');
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
|
|
19
|
-
var
|
|
20
|
-
require('./chunk-
|
|
19
|
+
var _chunkYODGKUICcjs = require('./chunk-YODGKUIC.cjs');
|
|
20
|
+
require('./chunk-AS3CHHHX.cjs');
|
|
21
21
|
require('./chunk-OBGZSXTJ.cjs');
|
|
22
22
|
|
|
23
23
|
|
|
@@ -30,4 +30,4 @@ require('./chunk-OBGZSXTJ.cjs');
|
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
|
|
33
|
-
exports.build =
|
|
33
|
+
exports.build = _chunk3WPI2LULcjs.build; exports.clean = _chunkWSPD5TWCcjs.clean; exports.cleanDirectories = _chunkWSPD5TWCcjs.cleanDirectories; exports.cleanOutputPath = _chunk3WPI2LULcjs.cleanOutputPath; exports.copyBuildAssets = _chunk3WPI2LULcjs.copyBuildAssets; exports.createTsCompilerOptions = _chunkYODGKUICcjs.createTsCompilerOptions; exports.executeUnbuild = _chunk3WPI2LULcjs.executeUnbuild; exports.generatePackageJson = _chunk3WPI2LULcjs.generatePackageJson; exports.loadConfig = _chunkYODGKUICcjs.loadConfig; exports.resolveOptions = _chunk3WPI2LULcjs.resolveOptions;
|
package/dist/index.js
CHANGED
|
@@ -5,19 +5,19 @@ import {
|
|
|
5
5
|
executeUnbuild,
|
|
6
6
|
generatePackageJson,
|
|
7
7
|
resolveOptions
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-NLH4D6OZ.js";
|
|
9
9
|
import {
|
|
10
10
|
clean,
|
|
11
11
|
cleanDirectories
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-WUSF3WE6.js";
|
|
13
13
|
import "./chunk-GGNOJ77I.js";
|
|
14
|
-
import "./chunk-
|
|
15
|
-
import "./chunk-
|
|
14
|
+
import "./chunk-HUPRNKOU.js";
|
|
15
|
+
import "./chunk-A344TKTC.js";
|
|
16
16
|
import {
|
|
17
17
|
createTsCompilerOptions,
|
|
18
18
|
loadConfig
|
|
19
|
-
} from "./chunk-
|
|
20
|
-
import "./chunk-
|
|
19
|
+
} from "./chunk-X5NCLQHD.js";
|
|
20
|
+
import "./chunk-FWLSKHOW.js";
|
|
21
21
|
import "./chunk-3RG5ZIWI.js";
|
|
22
22
|
export {
|
|
23
23
|
build,
|
package/dist/plugins/analyze.cjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../chunk-
|
|
3
|
+
var _chunkGYTRVRQJcjs = require('../chunk-GYTRVRQJ.cjs');
|
|
4
|
+
require('../chunk-AS3CHHHX.cjs');
|
|
5
5
|
require('../chunk-OBGZSXTJ.cjs');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.analyzePlugin =
|
|
8
|
+
exports.analyzePlugin = _chunkGYTRVRQJcjs.analyzePlugin;
|
package/dist/plugins/analyze.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../chunk-
|
|
3
|
+
var _chunkA4MFYPJNcjs = require('../chunk-A4MFYPJN.cjs');
|
|
4
|
+
require('../chunk-AS3CHHHX.cjs');
|
|
5
5
|
require('../chunk-OBGZSXTJ.cjs');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.onErrorPlugin =
|
|
8
|
+
exports.onErrorPlugin = _chunkA4MFYPJNcjs.onErrorPlugin;
|
package/dist/plugins/on-error.js
CHANGED
package/dist/plugins/tsc.cjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../chunk-
|
|
3
|
+
var _chunkYODGKUICcjs = require('../chunk-YODGKUIC.cjs');
|
|
4
|
+
require('../chunk-AS3CHHHX.cjs');
|
|
5
5
|
require('../chunk-OBGZSXTJ.cjs');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.tscPlugin =
|
|
8
|
+
exports.tscPlugin = _chunkYODGKUICcjs.tscPlugin;
|
package/dist/plugins/tsc.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/unbuild",
|
|
3
|
-
"version": "0.49.
|
|
3
|
+
"version": "0.49.46",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing `unbuild` utilities for building Storm Software libraries and applications",
|
|
6
6
|
"repository": {
|
|
@@ -147,9 +147,9 @@
|
|
|
147
147
|
"typescript": { "optional": false }
|
|
148
148
|
},
|
|
149
149
|
"dependencies": {
|
|
150
|
-
"@storm-software/build-tools": "^0.151.
|
|
151
|
-
"@storm-software/config": "^1.125.
|
|
152
|
-
"@storm-software/config-tools": "^1.176.
|
|
150
|
+
"@storm-software/build-tools": "^0.151.23",
|
|
151
|
+
"@storm-software/config": "^1.125.10",
|
|
152
|
+
"@storm-software/config-tools": "^1.176.11",
|
|
153
153
|
"commander": "^12.1.0",
|
|
154
154
|
"defu": "6.1.4",
|
|
155
155
|
"esbuild": "^0.25.0",
|
|
@@ -171,5 +171,5 @@
|
|
|
171
171
|
},
|
|
172
172
|
"publishConfig": { "access": "public" },
|
|
173
173
|
"sideEffects": false,
|
|
174
|
-
"gitHead": "
|
|
174
|
+
"gitHead": "56f060816d1082fefc318aa1b65294279c0bfdcd"
|
|
175
175
|
}
|