@storm-software/workspace-tools 1.267.6 → 1.267.7
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/CHANGELOG.md +9 -0
- package/dist/{chunk-D2WDOU7I.mjs → chunk-FGZK7CJK.mjs} +74 -28
- package/dist/{chunk-6DHCDMF3.js → chunk-MA3VQKIF.js} +74 -28
- package/dist/executors.js +2 -2
- package/dist/executors.mjs +1 -1
- package/dist/index.js +2 -2
- package/dist/index.mjs +1 -1
- package/dist/src/executors/esbuild/executor.js +2 -2
- package/dist/src/executors/esbuild/executor.mjs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Workspace Tools
|
|
4
4
|
|
|
5
|
+
## [1.267.7](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.267.7) (2025-04-29)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Regenerate README markdown files
|
|
10
|
+
([25750fcd9](https://github.com/storm-software/storm-ops/commit/25750fcd9))
|
|
11
|
+
- **monorepo:** Regenerate README markdown files
|
|
12
|
+
([87d08a499](https://github.com/storm-software/storm-ops/commit/87d08a499))
|
|
13
|
+
|
|
5
14
|
## [1.267.6](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.267.6) (2025-04-28)
|
|
6
15
|
|
|
7
16
|
### Miscellaneous
|
|
@@ -34,7 +34,6 @@ var DEFAULT_COMPILED_BANNER = `/*****************************************
|
|
|
34
34
|
*****************************************/
|
|
35
35
|
`;
|
|
36
36
|
var DEFAULT_ENVIRONMENT = "production";
|
|
37
|
-
var DEFAULT_TARGET = "esnext";
|
|
38
37
|
var DEFAULT_ORGANIZATION = "storm-software";
|
|
39
38
|
|
|
40
39
|
// ../build-tools/src/plugins/swc.ts
|
|
@@ -271,9 +270,7 @@ __name(cleanDirectories, "cleanDirectories");
|
|
|
271
270
|
var DEFAULT_BUILD_OPTIONS = {
|
|
272
271
|
assets: [],
|
|
273
272
|
platform: "node",
|
|
274
|
-
target:
|
|
275
|
-
"esnext"
|
|
276
|
-
],
|
|
273
|
+
target: "node22",
|
|
277
274
|
format: "esm",
|
|
278
275
|
tsconfig: "tsconfig.json",
|
|
279
276
|
mode: "production",
|
|
@@ -285,6 +282,7 @@ var DEFAULT_BUILD_OPTIONS = {
|
|
|
285
282
|
shims: false,
|
|
286
283
|
watch: false,
|
|
287
284
|
bundle: true,
|
|
285
|
+
distDir: "dist",
|
|
288
286
|
loader: {
|
|
289
287
|
".aac": "file",
|
|
290
288
|
".css": "file",
|
|
@@ -429,22 +427,17 @@ async function resolveContext(userOptions) {
|
|
|
429
427
|
throw new Error("The Build process failed because the project does not have a valid configuration in the project.json file. Check if the file exists in the root of the project.");
|
|
430
428
|
}
|
|
431
429
|
const options = defu(userOptions, DEFAULT_BUILD_OPTIONS);
|
|
432
|
-
options.name ??= `${projectName}-${options.format}`;
|
|
433
|
-
options.target ??= DEFAULT_TARGET;
|
|
434
430
|
const packageJsonPath = joinPaths(workspaceRoot.dir, options.projectRoot, "package.json");
|
|
435
431
|
if (!existsSync3(packageJsonPath)) {
|
|
436
432
|
throw new Error("Cannot find package.json configuration");
|
|
437
433
|
}
|
|
438
434
|
const env = getEnv("esbuild", options);
|
|
439
435
|
const resolvedOptions = {
|
|
436
|
+
name: projectName,
|
|
440
437
|
...options,
|
|
441
438
|
tsconfig: joinPaths(projectRoot, userOptions.tsconfig ? userOptions.tsconfig.replace(projectRoot, "") : "tsconfig.json"),
|
|
442
|
-
distDir: "dist",
|
|
443
|
-
name: projectName,
|
|
444
439
|
metafile: userOptions.mode === "development",
|
|
445
|
-
...userOptions,
|
|
446
440
|
clean: false,
|
|
447
|
-
target: userOptions.target || options.target,
|
|
448
441
|
splitting: options.format === "iife" ? false : options.treeshake === void 0 ? options.splitting : true,
|
|
449
442
|
env,
|
|
450
443
|
define: {
|
|
@@ -493,26 +486,79 @@ async function generatePackageJson(context) {
|
|
|
493
486
|
if (context.options.entry) {
|
|
494
487
|
packageJson.exports ??= {};
|
|
495
488
|
packageJson.exports["./package.json"] ??= "./package.json";
|
|
496
|
-
packageJson.exports["."] ??= `.${context.options.distDir ? `/${context.options.distDir}` : ""}/index.js`;
|
|
497
489
|
const entryPoints = Array.isArray(context.options.entry) ? context.options.entry : Object.keys(context.options.entry);
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
490
|
+
if (entryPoints.length > 0) {
|
|
491
|
+
const defaultEntry = entryPoints.includes("index") ? `.${context.options.distDir ? `/${context.options.distDir}` : ""}/index` : `.${context.options.distDir ? `/${context.options.distDir}` : ""}/${entryPoints[0]}`;
|
|
492
|
+
const isEsm = Array.isArray(context.options.format) ? context.options.format.includes("esm") : context.options.format === "esm";
|
|
493
|
+
const isCjs = Array.isArray(context.options.format) ? context.options.format.includes("cjs") : context.options.format === "cjs";
|
|
494
|
+
const isDts = context.options.dts || context.options.experimentalDts;
|
|
495
|
+
packageJson.exports["."] ??= `${defaultEntry}.${isEsm ? "mjs" : isCjs ? "cjs" : "js"}`;
|
|
496
|
+
for (const entryPoint of entryPoints) {
|
|
497
|
+
packageJson.exports[`./${entryPoint}`] ??= {};
|
|
498
|
+
if (isEsm) {
|
|
499
|
+
if (isDts) {
|
|
500
|
+
packageJson.exports[`./${entryPoint}`].import = {
|
|
501
|
+
types: `./dist/${entryPoint}.d.mts`,
|
|
502
|
+
default: `./dist/${entryPoint}.mjs`
|
|
503
|
+
};
|
|
504
|
+
} else {
|
|
505
|
+
packageJson.exports[`./${entryPoint}`].import = `./dist/${entryPoint}.mjs`;
|
|
506
|
+
}
|
|
507
|
+
if (isDts) {
|
|
508
|
+
packageJson.exports[`./${entryPoint}`].default = {
|
|
509
|
+
types: `./dist/${entryPoint}.d.mts`,
|
|
510
|
+
default: `./dist/${entryPoint}.mjs`
|
|
511
|
+
};
|
|
512
|
+
} else {
|
|
513
|
+
packageJson.exports[`./${entryPoint}`].default = `./dist/${entryPoint}.mjs`;
|
|
514
|
+
}
|
|
515
|
+
}
|
|
516
|
+
if (isCjs) {
|
|
517
|
+
if (isDts) {
|
|
518
|
+
packageJson.exports[`./${entryPoint}`].require = {
|
|
519
|
+
types: `./dist/${entryPoint}.d.cts`,
|
|
520
|
+
default: `./dist/${entryPoint}.cjs`
|
|
521
|
+
};
|
|
522
|
+
} else {
|
|
523
|
+
packageJson.exports[`./${entryPoint}`].require = `./dist/${entryPoint}.cjs`;
|
|
524
|
+
}
|
|
525
|
+
if (!isEsm) {
|
|
526
|
+
if (isDts) {
|
|
527
|
+
packageJson.exports[`./${entryPoint}`].default = {
|
|
528
|
+
types: `./dist/${entryPoint}.d.cts`,
|
|
529
|
+
default: `./dist/${entryPoint}.cjs`
|
|
530
|
+
};
|
|
531
|
+
} else {
|
|
532
|
+
packageJson.exports[`./${entryPoint}`].default = `./dist/${entryPoint}.cjs`;
|
|
533
|
+
}
|
|
534
|
+
}
|
|
535
|
+
}
|
|
536
|
+
if (!isEsm && !isCjs) {
|
|
537
|
+
if (isDts) {
|
|
538
|
+
packageJson.exports[`./${entryPoint}`].default = {
|
|
539
|
+
types: `./dist/${entryPoint}.d.ts`,
|
|
540
|
+
default: `./dist/${entryPoint}.js`
|
|
541
|
+
};
|
|
542
|
+
} else {
|
|
543
|
+
packageJson.exports[`./${entryPoint}`].default = `./dist/${entryPoint}.js`;
|
|
544
|
+
}
|
|
545
|
+
}
|
|
502
546
|
}
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
packageJson.exports = Object.keys(packageJson.exports).reduce((ret, key) => {
|
|
511
|
-
if (key.endsWith("/index") && !ret[key.replace("/index", "")]) {
|
|
512
|
-
ret[key.replace("/index", "")] = packageJson.exports[key];
|
|
547
|
+
if (isEsm) {
|
|
548
|
+
packageJson.module = `${defaultEntry}.mjs`;
|
|
549
|
+
} else {
|
|
550
|
+
packageJson.main = `${defaultEntry}.cjs`;
|
|
551
|
+
}
|
|
552
|
+
if (isDts) {
|
|
553
|
+
packageJson.types = `${defaultEntry}.d.${isEsm ? "mts" : isCjs ? "cts" : "ts"}`;
|
|
513
554
|
}
|
|
514
|
-
|
|
515
|
-
|
|
555
|
+
packageJson.exports = Object.keys(packageJson.exports).reduce((ret, key) => {
|
|
556
|
+
if (key.endsWith("/index") && !ret[key.replace("/index", "")]) {
|
|
557
|
+
ret[key.replace("/index", "")] = packageJson.exports[key];
|
|
558
|
+
}
|
|
559
|
+
return ret;
|
|
560
|
+
}, packageJson.exports);
|
|
561
|
+
}
|
|
516
562
|
}
|
|
517
563
|
await writeJsonFile(joinPaths(context.outputPath, "package.json"), packageJson);
|
|
518
564
|
stopwatch();
|
|
@@ -525,7 +571,7 @@ async function executeTsup(context) {
|
|
|
525
571
|
const stopwatch = getStopwatch(`${context.options.name} build`);
|
|
526
572
|
await tsup({
|
|
527
573
|
...context.options,
|
|
528
|
-
outDir: context.outputPath,
|
|
574
|
+
outDir: context.options.distDir ? joinPaths(context.outputPath, context.options.distDir) : context.outputPath,
|
|
529
575
|
workspaceConfig: context.workspaceConfig
|
|
530
576
|
});
|
|
531
577
|
stopwatch();
|
|
@@ -34,7 +34,6 @@ var DEFAULT_COMPILED_BANNER = `/*****************************************
|
|
|
34
34
|
*****************************************/
|
|
35
35
|
`;
|
|
36
36
|
var DEFAULT_ENVIRONMENT = "production";
|
|
37
|
-
var DEFAULT_TARGET = "esnext";
|
|
38
37
|
var DEFAULT_ORGANIZATION = "storm-software";
|
|
39
38
|
|
|
40
39
|
// ../build-tools/src/plugins/swc.ts
|
|
@@ -271,9 +270,7 @@ _chunk3GQAWCBQjs.__name.call(void 0, cleanDirectories, "cleanDirectories");
|
|
|
271
270
|
var DEFAULT_BUILD_OPTIONS = {
|
|
272
271
|
assets: [],
|
|
273
272
|
platform: "node",
|
|
274
|
-
target:
|
|
275
|
-
"esnext"
|
|
276
|
-
],
|
|
273
|
+
target: "node22",
|
|
277
274
|
format: "esm",
|
|
278
275
|
tsconfig: "tsconfig.json",
|
|
279
276
|
mode: "production",
|
|
@@ -285,6 +282,7 @@ var DEFAULT_BUILD_OPTIONS = {
|
|
|
285
282
|
shims: false,
|
|
286
283
|
watch: false,
|
|
287
284
|
bundle: true,
|
|
285
|
+
distDir: "dist",
|
|
288
286
|
loader: {
|
|
289
287
|
".aac": "file",
|
|
290
288
|
".css": "file",
|
|
@@ -429,22 +427,17 @@ async function resolveContext(userOptions) {
|
|
|
429
427
|
throw new Error("The Build process failed because the project does not have a valid configuration in the project.json file. Check if the file exists in the root of the project.");
|
|
430
428
|
}
|
|
431
429
|
const options = _defu2.default.call(void 0, userOptions, DEFAULT_BUILD_OPTIONS);
|
|
432
|
-
options.name ??= `${projectName}-${options.format}`;
|
|
433
|
-
options.target ??= DEFAULT_TARGET;
|
|
434
430
|
const packageJsonPath = _chunkJTAXCQX6js.joinPaths.call(void 0, workspaceRoot.dir, options.projectRoot, "package.json");
|
|
435
431
|
if (!_fs.existsSync.call(void 0, packageJsonPath)) {
|
|
436
432
|
throw new Error("Cannot find package.json configuration");
|
|
437
433
|
}
|
|
438
434
|
const env = getEnv("esbuild", options);
|
|
439
435
|
const resolvedOptions = {
|
|
436
|
+
name: projectName,
|
|
440
437
|
...options,
|
|
441
438
|
tsconfig: _chunkJTAXCQX6js.joinPaths.call(void 0, projectRoot, userOptions.tsconfig ? userOptions.tsconfig.replace(projectRoot, "") : "tsconfig.json"),
|
|
442
|
-
distDir: "dist",
|
|
443
|
-
name: projectName,
|
|
444
439
|
metafile: userOptions.mode === "development",
|
|
445
|
-
...userOptions,
|
|
446
440
|
clean: false,
|
|
447
|
-
target: userOptions.target || options.target,
|
|
448
441
|
splitting: options.format === "iife" ? false : options.treeshake === void 0 ? options.splitting : true,
|
|
449
442
|
env,
|
|
450
443
|
define: {
|
|
@@ -493,26 +486,79 @@ async function generatePackageJson(context) {
|
|
|
493
486
|
if (context.options.entry) {
|
|
494
487
|
packageJson.exports ??= {};
|
|
495
488
|
packageJson.exports["./package.json"] ??= "./package.json";
|
|
496
|
-
packageJson.exports["."] ??= `.${context.options.distDir ? `/${context.options.distDir}` : ""}/index.js`;
|
|
497
489
|
const entryPoints = Array.isArray(context.options.entry) ? context.options.entry : Object.keys(context.options.entry);
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
490
|
+
if (entryPoints.length > 0) {
|
|
491
|
+
const defaultEntry = entryPoints.includes("index") ? `.${context.options.distDir ? `/${context.options.distDir}` : ""}/index` : `.${context.options.distDir ? `/${context.options.distDir}` : ""}/${entryPoints[0]}`;
|
|
492
|
+
const isEsm = Array.isArray(context.options.format) ? context.options.format.includes("esm") : context.options.format === "esm";
|
|
493
|
+
const isCjs = Array.isArray(context.options.format) ? context.options.format.includes("cjs") : context.options.format === "cjs";
|
|
494
|
+
const isDts = context.options.dts || context.options.experimentalDts;
|
|
495
|
+
packageJson.exports["."] ??= `${defaultEntry}.${isEsm ? "mjs" : isCjs ? "cjs" : "js"}`;
|
|
496
|
+
for (const entryPoint of entryPoints) {
|
|
497
|
+
packageJson.exports[`./${entryPoint}`] ??= {};
|
|
498
|
+
if (isEsm) {
|
|
499
|
+
if (isDts) {
|
|
500
|
+
packageJson.exports[`./${entryPoint}`].import = {
|
|
501
|
+
types: `./dist/${entryPoint}.d.mts`,
|
|
502
|
+
default: `./dist/${entryPoint}.mjs`
|
|
503
|
+
};
|
|
504
|
+
} else {
|
|
505
|
+
packageJson.exports[`./${entryPoint}`].import = `./dist/${entryPoint}.mjs`;
|
|
506
|
+
}
|
|
507
|
+
if (isDts) {
|
|
508
|
+
packageJson.exports[`./${entryPoint}`].default = {
|
|
509
|
+
types: `./dist/${entryPoint}.d.mts`,
|
|
510
|
+
default: `./dist/${entryPoint}.mjs`
|
|
511
|
+
};
|
|
512
|
+
} else {
|
|
513
|
+
packageJson.exports[`./${entryPoint}`].default = `./dist/${entryPoint}.mjs`;
|
|
514
|
+
}
|
|
515
|
+
}
|
|
516
|
+
if (isCjs) {
|
|
517
|
+
if (isDts) {
|
|
518
|
+
packageJson.exports[`./${entryPoint}`].require = {
|
|
519
|
+
types: `./dist/${entryPoint}.d.cts`,
|
|
520
|
+
default: `./dist/${entryPoint}.cjs`
|
|
521
|
+
};
|
|
522
|
+
} else {
|
|
523
|
+
packageJson.exports[`./${entryPoint}`].require = `./dist/${entryPoint}.cjs`;
|
|
524
|
+
}
|
|
525
|
+
if (!isEsm) {
|
|
526
|
+
if (isDts) {
|
|
527
|
+
packageJson.exports[`./${entryPoint}`].default = {
|
|
528
|
+
types: `./dist/${entryPoint}.d.cts`,
|
|
529
|
+
default: `./dist/${entryPoint}.cjs`
|
|
530
|
+
};
|
|
531
|
+
} else {
|
|
532
|
+
packageJson.exports[`./${entryPoint}`].default = `./dist/${entryPoint}.cjs`;
|
|
533
|
+
}
|
|
534
|
+
}
|
|
535
|
+
}
|
|
536
|
+
if (!isEsm && !isCjs) {
|
|
537
|
+
if (isDts) {
|
|
538
|
+
packageJson.exports[`./${entryPoint}`].default = {
|
|
539
|
+
types: `./dist/${entryPoint}.d.ts`,
|
|
540
|
+
default: `./dist/${entryPoint}.js`
|
|
541
|
+
};
|
|
542
|
+
} else {
|
|
543
|
+
packageJson.exports[`./${entryPoint}`].default = `./dist/${entryPoint}.js`;
|
|
544
|
+
}
|
|
545
|
+
}
|
|
502
546
|
}
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
packageJson.exports = Object.keys(packageJson.exports).reduce((ret, key) => {
|
|
511
|
-
if (key.endsWith("/index") && !ret[key.replace("/index", "")]) {
|
|
512
|
-
ret[key.replace("/index", "")] = packageJson.exports[key];
|
|
547
|
+
if (isEsm) {
|
|
548
|
+
packageJson.module = `${defaultEntry}.mjs`;
|
|
549
|
+
} else {
|
|
550
|
+
packageJson.main = `${defaultEntry}.cjs`;
|
|
551
|
+
}
|
|
552
|
+
if (isDts) {
|
|
553
|
+
packageJson.types = `${defaultEntry}.d.${isEsm ? "mts" : isCjs ? "cts" : "ts"}`;
|
|
513
554
|
}
|
|
514
|
-
|
|
515
|
-
|
|
555
|
+
packageJson.exports = Object.keys(packageJson.exports).reduce((ret, key) => {
|
|
556
|
+
if (key.endsWith("/index") && !ret[key.replace("/index", "")]) {
|
|
557
|
+
ret[key.replace("/index", "")] = packageJson.exports[key];
|
|
558
|
+
}
|
|
559
|
+
return ret;
|
|
560
|
+
}, packageJson.exports);
|
|
561
|
+
}
|
|
516
562
|
}
|
|
517
563
|
await _devkit.writeJsonFile.call(void 0, _chunkJTAXCQX6js.joinPaths.call(void 0, context.outputPath, "package.json"), packageJson);
|
|
518
564
|
stopwatch();
|
|
@@ -525,7 +571,7 @@ async function executeTsup(context) {
|
|
|
525
571
|
const stopwatch = _chunkG4QFSE5Bjs.getStopwatch.call(void 0, `${context.options.name} build`);
|
|
526
572
|
await _tsup.build.call(void 0, {
|
|
527
573
|
...context.options,
|
|
528
|
-
outDir: context.outputPath,
|
|
574
|
+
outDir: context.options.distDir ? _chunkJTAXCQX6js.joinPaths.call(void 0, context.outputPath, context.options.distDir) : context.outputPath,
|
|
529
575
|
workspaceConfig: context.workspaceConfig
|
|
530
576
|
});
|
|
531
577
|
stopwatch();
|
package/dist/executors.js
CHANGED
|
@@ -19,7 +19,7 @@ var _chunkHOXPAVCLjs = require('./chunk-HOXPAVCL.js');
|
|
|
19
19
|
var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
|
|
20
20
|
|
|
21
21
|
|
|
22
|
-
var
|
|
22
|
+
var _chunkMA3VQKIFjs = require('./chunk-MA3VQKIF.js');
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
var _chunkB3DVFXXDjs = require('./chunk-B3DVFXXD.js');
|
|
@@ -53,4 +53,4 @@ require('./chunk-3GQAWCBQ.js');
|
|
|
53
53
|
|
|
54
54
|
|
|
55
55
|
|
|
56
|
-
exports.LARGE_BUFFER = _chunkSUQKASD7js.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkB3DVFXXDjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkRUKOOSWLjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkNSCWEC2Sjs.cargoClippyExecutor; exports.cargoDocExecutor = _chunkTET4GF3Djs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkHOXPAVCLjs.cargoFormatExecutor; exports.esbuildExecutorFn =
|
|
56
|
+
exports.LARGE_BUFFER = _chunkSUQKASD7js.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkB3DVFXXDjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkRUKOOSWLjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkNSCWEC2Sjs.cargoClippyExecutor; exports.cargoDocExecutor = _chunkTET4GF3Djs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkHOXPAVCLjs.cargoFormatExecutor; exports.esbuildExecutorFn = _chunkMA3VQKIFjs.esbuildExecutorFn; exports.getRegistryVersion = _chunkGGGO542Mjs.getRegistryVersion; exports.sizeLimitExecutorFn = _chunkOKW5O5P4js.sizeLimitExecutorFn; exports.typiaExecutorFn = _chunkICPUM2HSjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkYW4UN25Ujs.unbuildExecutorFn;
|
package/dist/executors.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -66,7 +66,7 @@ var _chunkHOXPAVCLjs = require('./chunk-HOXPAVCL.js');
|
|
|
66
66
|
var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
|
|
67
67
|
|
|
68
68
|
|
|
69
|
-
var
|
|
69
|
+
var _chunkMA3VQKIFjs = require('./chunk-MA3VQKIF.js');
|
|
70
70
|
|
|
71
71
|
|
|
72
72
|
var _chunkB3DVFXXDjs = require('./chunk-B3DVFXXD.js');
|
|
@@ -282,4 +282,4 @@ require('./chunk-3GQAWCBQ.js');
|
|
|
282
282
|
|
|
283
283
|
|
|
284
284
|
|
|
285
|
-
exports.INVALID_CARGO_ARGS = _chunkULBTYC2Bjs.INVALID_CARGO_ARGS; exports.LARGE_BUFFER = _chunkSUQKASD7js.LARGE_BUFFER; exports.LOCK_FILES = _chunkPK2SUBWIjs.LOCK_FILES; exports.NPM_LOCK_FILE = _chunkPK2SUBWIjs.NPM_LOCK_FILE; exports.NPM_LOCK_PATH = _chunkPK2SUBWIjs.NPM_LOCK_PATH; exports.PNPM_LOCK_FILE = _chunkPK2SUBWIjs.PNPM_LOCK_FILE; exports.PNPM_LOCK_PATH = _chunkPK2SUBWIjs.PNPM_LOCK_PATH; exports.PackageManagerTypes = _chunk7AXFMX2Tjs.PackageManagerTypes; exports.ProjectTagConstants = _chunk7YRW5HNXjs.ProjectTagConstants; exports.ProjectTagDistStyleValue = _chunk4NOLUAQNjs.ProjectTagDistStyleValue; exports.ProjectTagLanguageValue = _chunk4NOLUAQNjs.ProjectTagLanguageValue; exports.ProjectTagPlatformValue = _chunk4NOLUAQNjs.ProjectTagPlatformValue; exports.ProjectTagRegistryValue = _chunk4NOLUAQNjs.ProjectTagRegistryValue; exports.ProjectTagTypeValue = _chunk4NOLUAQNjs.ProjectTagTypeValue; exports.ProjectTagVariant = _chunk4NOLUAQNjs.ProjectTagVariant; exports.YARN_LOCK_FILE = _chunkPK2SUBWIjs.YARN_LOCK_FILE; exports.YARN_LOCK_PATH = _chunkPK2SUBWIjs.YARN_LOCK_PATH; exports.addPluginProjectTag = _chunk7YRW5HNXjs.addPluginProjectTag; exports.addProjectTag = _chunk7YRW5HNXjs.addProjectTag; exports.applyWorkspaceExecutorTokens = _chunkAC5SI4YZjs.applyWorkspaceExecutorTokens; exports.baseExecutorSchema = _chunkI734UVDTjs.base_executor_untyped_default; exports.baseGeneratorSchema = _chunk7CJRMBX3js.base_generator_untyped_default; exports.browserLibraryGeneratorFn = _chunkOQPX75CGjs.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkULBTYC2Bjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk6QO3KMZAjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkB3DVFXXDjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkRUKOOSWLjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkNSCWEC2Sjs.cargoClippyExecutor; exports.cargoCommand = _chunkULBTYC2Bjs.cargoCommand; exports.cargoCommandSync = _chunkULBTYC2Bjs.cargoCommandSync; exports.cargoDocExecutor = _chunkTET4GF3Djs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkHOXPAVCLjs.cargoFormatExecutor; exports.cargoMetadata = _chunkULBTYC2Bjs.cargoMetadata; exports.cargoRunCommand = _chunkULBTYC2Bjs.cargoRunCommand; exports.childProcess = _chunkULBTYC2Bjs.childProcess; exports.configSchemaGeneratorFn = _chunk6JJB5AYAjs.configSchemaGeneratorFn; exports.createCliOptions = _chunkDHGZTMNDjs.createCliOptions; exports.createProjectTsConfigJson = _chunkRBU35LQWjs.createProjectTsConfigJson; exports.esbuildExecutorFn =
|
|
285
|
+
exports.INVALID_CARGO_ARGS = _chunkULBTYC2Bjs.INVALID_CARGO_ARGS; exports.LARGE_BUFFER = _chunkSUQKASD7js.LARGE_BUFFER; exports.LOCK_FILES = _chunkPK2SUBWIjs.LOCK_FILES; exports.NPM_LOCK_FILE = _chunkPK2SUBWIjs.NPM_LOCK_FILE; exports.NPM_LOCK_PATH = _chunkPK2SUBWIjs.NPM_LOCK_PATH; exports.PNPM_LOCK_FILE = _chunkPK2SUBWIjs.PNPM_LOCK_FILE; exports.PNPM_LOCK_PATH = _chunkPK2SUBWIjs.PNPM_LOCK_PATH; exports.PackageManagerTypes = _chunk7AXFMX2Tjs.PackageManagerTypes; exports.ProjectTagConstants = _chunk7YRW5HNXjs.ProjectTagConstants; exports.ProjectTagDistStyleValue = _chunk4NOLUAQNjs.ProjectTagDistStyleValue; exports.ProjectTagLanguageValue = _chunk4NOLUAQNjs.ProjectTagLanguageValue; exports.ProjectTagPlatformValue = _chunk4NOLUAQNjs.ProjectTagPlatformValue; exports.ProjectTagRegistryValue = _chunk4NOLUAQNjs.ProjectTagRegistryValue; exports.ProjectTagTypeValue = _chunk4NOLUAQNjs.ProjectTagTypeValue; exports.ProjectTagVariant = _chunk4NOLUAQNjs.ProjectTagVariant; exports.YARN_LOCK_FILE = _chunkPK2SUBWIjs.YARN_LOCK_FILE; exports.YARN_LOCK_PATH = _chunkPK2SUBWIjs.YARN_LOCK_PATH; exports.addPluginProjectTag = _chunk7YRW5HNXjs.addPluginProjectTag; exports.addProjectTag = _chunk7YRW5HNXjs.addProjectTag; exports.applyWorkspaceExecutorTokens = _chunkAC5SI4YZjs.applyWorkspaceExecutorTokens; exports.baseExecutorSchema = _chunkI734UVDTjs.base_executor_untyped_default; exports.baseGeneratorSchema = _chunk7CJRMBX3js.base_generator_untyped_default; exports.browserLibraryGeneratorFn = _chunkOQPX75CGjs.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkULBTYC2Bjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk6QO3KMZAjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkB3DVFXXDjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkRUKOOSWLjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkNSCWEC2Sjs.cargoClippyExecutor; exports.cargoCommand = _chunkULBTYC2Bjs.cargoCommand; exports.cargoCommandSync = _chunkULBTYC2Bjs.cargoCommandSync; exports.cargoDocExecutor = _chunkTET4GF3Djs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkHOXPAVCLjs.cargoFormatExecutor; exports.cargoMetadata = _chunkULBTYC2Bjs.cargoMetadata; exports.cargoRunCommand = _chunkULBTYC2Bjs.cargoRunCommand; exports.childProcess = _chunkULBTYC2Bjs.childProcess; exports.configSchemaGeneratorFn = _chunk6JJB5AYAjs.configSchemaGeneratorFn; exports.createCliOptions = _chunkDHGZTMNDjs.createCliOptions; exports.createProjectTsConfigJson = _chunkRBU35LQWjs.createProjectTsConfigJson; exports.esbuildExecutorFn = _chunkMA3VQKIFjs.esbuildExecutorFn; exports.eslintVersion = _chunkHI4G4OOGjs.eslintVersion; exports.formatProjectTag = _chunk7YRW5HNXjs.formatProjectTag; exports.getLockFileDependencies = _chunkPK2SUBWIjs.getLockFileDependencies; exports.getLockFileName = _chunkPK2SUBWIjs.getLockFileName; exports.getLockFileNodes = _chunkPK2SUBWIjs.getLockFileNodes; exports.getOutputPath = _chunkRBU35LQWjs.getOutputPath; exports.getPackageInfo = _chunk7AXFMX2Tjs.getPackageInfo; exports.getProjectConfigFromProjectJsonPath = _chunkUF6KFXG5js.getProjectConfigFromProjectJsonPath; exports.getProjectConfigFromProjectRoot = _chunkUF6KFXG5js.getProjectConfigFromProjectRoot; exports.getProjectConfiguration = _chunkGKL4BY2Yjs.getProjectConfiguration; exports.getProjectConfigurations = _chunkGKL4BY2Yjs.getProjectConfigurations; exports.getProjectPlatform = _chunkUF6KFXG5js.getProjectPlatform; exports.getProjectRoot = _chunkUF6KFXG5js.getProjectRoot; exports.getProjectTag = _chunk7YRW5HNXjs.getProjectTag; exports.getRegistryVersion = _chunkGGGO542Mjs.getRegistryVersion; exports.getTypiaTransform = _chunkXITP2BX2js.getTypiaTransform; exports.hasProjectTag = _chunk7YRW5HNXjs.hasProjectTag; exports.initGenerator = _chunk3IZ3O4OKjs.initGenerator; exports.isEqualProjectTag = _chunk7YRW5HNXjs.isEqualProjectTag; exports.isExternal = _chunkULBTYC2Bjs.isExternal; exports.lintStagedVersion = _chunkHI4G4OOGjs.lintStagedVersion; exports.lockFileExists = _chunkPK2SUBWIjs.lockFileExists; exports.modifyCargoNestedTable = _chunkZMFVKBRMjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkZMFVKBRMjs.modifyCargoTable; exports.neutralLibraryGeneratorFn = _chunk7PRHEOCTjs.neutralLibraryGeneratorFn; exports.nodeLibraryGeneratorFn = _chunk7NNHBZC5js.nodeLibraryGeneratorFn; exports.nodeVersion = _chunkHI4G4OOGjs.nodeVersion; exports.normalizeOptions = _chunkRBU35LQWjs.normalizeOptions; exports.nxVersion = _chunkHI4G4OOGjs.nxVersion; exports.parseCargoToml = _chunkZMFVKBRMjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkZMFVKBRMjs.parseCargoTomlWithTree; exports.pnpmCatalogUpdate = _chunkCUPARBOSjs.pnpmCatalogUpdate; exports.pnpmVersion = _chunkHI4G4OOGjs.pnpmVersion; exports.presetGeneratorFn = _chunkP4OVFIT6js.presetGeneratorFn; exports.prettierPackageJsonVersion = _chunkHI4G4OOGjs.prettierPackageJsonVersion; exports.prettierPrismaVersion = _chunkHI4G4OOGjs.prettierPrismaVersion; exports.prettierVersion = _chunkHI4G4OOGjs.prettierVersion; exports.releaseVersionGeneratorFn = _chunk4Y6B6JDHjs.releaseVersionGeneratorFn; exports.runProcess = _chunkULBTYC2Bjs.runProcess; exports.semanticReleaseVersion = _chunkHI4G4OOGjs.semanticReleaseVersion; exports.setDefaultProjectTags = _chunk7YRW5HNXjs.setDefaultProjectTags; exports.sizeLimitExecutorFn = _chunkOKW5O5P4js.sizeLimitExecutorFn; exports.stringifyCargoToml = _chunkZMFVKBRMjs.stringifyCargoToml; exports.swcCliVersion = _chunkHI4G4OOGjs.swcCliVersion; exports.swcCoreVersion = _chunkHI4G4OOGjs.swcCoreVersion; exports.swcHelpersVersion = _chunkHI4G4OOGjs.swcHelpersVersion; exports.swcNodeVersion = _chunkHI4G4OOGjs.swcNodeVersion; exports.tsLibVersion = _chunkHI4G4OOGjs.tsLibVersion; exports.tsupVersion = _chunkHI4G4OOGjs.tsupVersion; exports.typeScriptLibraryGeneratorFn = _chunkRBU35LQWjs.typeScriptLibraryGeneratorFn; exports.typesNodeVersion = _chunkHI4G4OOGjs.typesNodeVersion; exports.typescriptBuildExecutorSchema = _chunkIWCQL3AQjs.typescript_build_executor_untyped_default; exports.typescriptLibraryGeneratorSchema = _chunk7O34DHUGjs.typescript_library_generator_untyped_default; exports.typescriptVersion = _chunkHI4G4OOGjs.typescriptVersion; exports.typiaExecutorFn = _chunkICPUM2HSjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunkYW4UN25Ujs.unbuildExecutorFn; exports.verdaccioVersion = _chunkHI4G4OOGjs.verdaccioVersion; exports.withRunExecutor = _chunk6CGAYKQLjs.withRunExecutor; exports.withRunGenerator = _chunkZ4NKRWWJjs.withRunGenerator;
|
package/dist/index.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkMA3VQKIFjs = require('../../../chunk-MA3VQKIF.js');
|
|
5
5
|
require('../../../chunk-6CGAYKQL.js');
|
|
6
6
|
require('../../../chunk-UALZJZUK.js');
|
|
7
7
|
require('../../../chunk-G4QFSE5B.js');
|
|
@@ -11,4 +11,4 @@ require('../../../chunk-3GQAWCBQ.js');
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
exports.default =
|
|
14
|
+
exports.default = _chunkMA3VQKIFjs.executor_default; exports.esbuildExecutorFn = _chunkMA3VQKIFjs.esbuildExecutorFn;
|
package/package.json
CHANGED