@storm-software/workspace-tools 1.263.0 → 1.263.1
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 +6 -0
- package/README.md +1 -1
- package/dist/{chunk-K7OAIP34.js → chunk-55IQXVOQ.js} +9 -9
- package/dist/{chunk-W2WAWCCV.js → chunk-6QKCP4DS.js} +32 -21
- package/dist/{chunk-KMFZVYDQ.mjs → chunk-EF7U4632.mjs} +23 -12
- package/dist/{chunk-ESRAKU7Y.js → chunk-IFSORSAN.js} +4 -4
- package/dist/{chunk-A7OTLU7I.mjs → chunk-SE2XSR7P.mjs} +4 -4
- package/dist/{chunk-MNV4E744.mjs → chunk-UFPTODUJ.mjs} +1 -1
- package/dist/executors.js +4 -4
- package/dist/executors.mjs +3 -3
- package/dist/index.js +4 -4
- package/dist/index.mjs +3 -3
- package/dist/src/executors/esbuild/executor.js +3 -3
- package/dist/src/executors/esbuild/executor.mjs +2 -2
- package/dist/src/executors/tsdown/executor.js +3 -3
- package/dist/src/executors/tsdown/executor.mjs +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
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 -->
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
var
|
|
9
|
+
var _chunkIFSORSANjs = require('./chunk-IFSORSAN.js');
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
var _chunkFGMOZZ77js = require('./chunk-FGMOZZ77.js');
|
|
@@ -93,19 +93,19 @@ var resolveOptions = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async
|
|
|
93
93
|
}
|
|
94
94
|
const options = _defu2.default.call(void 0, userOptions, DEFAULT_BUILD_OPTIONS);
|
|
95
95
|
options.name ??= `${projectName}-${options.format}`;
|
|
96
|
-
options.target ??=
|
|
96
|
+
options.target ??= _chunkIFSORSANjs.DEFAULT_TARGET;
|
|
97
97
|
const packageJsonPath = _chunkJTAXCQX6js.joinPaths.call(void 0, workspaceRoot.dir, options.projectRoot, "package.json");
|
|
98
98
|
if (!_fs.existsSync.call(void 0, packageJsonPath)) {
|
|
99
99
|
throw new Error("Cannot find package.json configuration");
|
|
100
100
|
}
|
|
101
|
-
const env =
|
|
101
|
+
const env = _chunkIFSORSANjs.getEnv.call(void 0, "tsdown", options);
|
|
102
102
|
const result = {
|
|
103
103
|
...options,
|
|
104
104
|
config,
|
|
105
105
|
...userOptions,
|
|
106
106
|
tsconfig: _chunkJTAXCQX6js.joinPaths.call(void 0, projectRoot, userOptions.tsconfig ? userOptions.tsconfig.replace(projectRoot, "") : "tsconfig.json"),
|
|
107
107
|
format: options.format || "cjs",
|
|
108
|
-
entryPoints: await
|
|
108
|
+
entryPoints: await _chunkIFSORSANjs.getEntryPoints.call(void 0, config, projectRoot, projectJson.sourceRoot, userOptions.entry || [
|
|
109
109
|
"./src/index.ts"
|
|
110
110
|
], userOptions.emitOnAll),
|
|
111
111
|
outdir: userOptions.outputPath || _chunkJTAXCQX6js.joinPaths.call(void 0, "dist", projectRoot),
|
|
@@ -162,11 +162,11 @@ async function generatePackageJson(options) {
|
|
|
162
162
|
throw new Error("Cannot find package.json configuration file");
|
|
163
163
|
}
|
|
164
164
|
let packageJson = JSON.parse(packageJsonFile);
|
|
165
|
-
packageJson = await
|
|
166
|
-
packageJson = await
|
|
165
|
+
packageJson = await _chunkIFSORSANjs.addPackageDependencies.call(void 0, options.config.workspaceRoot, options.projectRoot, options.projectName, packageJson);
|
|
166
|
+
packageJson = await _chunkIFSORSANjs.addWorkspacePackageJsonFields.call(void 0, options.config, options.projectRoot, options.sourceRoot, options.projectName, false, packageJson);
|
|
167
167
|
packageJson.exports ??= {};
|
|
168
168
|
packageJson.exports["./package.json"] ??= "./package.json";
|
|
169
|
-
packageJson.exports["."] ??=
|
|
169
|
+
packageJson.exports["."] ??= _chunkIFSORSANjs.addPackageJsonExport.call(void 0, "index", packageJson.type, options.sourceRoot);
|
|
170
170
|
let entryPoints = [
|
|
171
171
|
{
|
|
172
172
|
in: "./src/index.ts",
|
|
@@ -184,7 +184,7 @@ async function generatePackageJson(options) {
|
|
|
184
184
|
const split = entryPoint.out.split(".");
|
|
185
185
|
split.pop();
|
|
186
186
|
const entry = split.join(".").replaceAll("\\", "/");
|
|
187
|
-
packageJson.exports[`./${entry}`] ??=
|
|
187
|
+
packageJson.exports[`./${entry}`] ??= _chunkIFSORSANjs.addPackageJsonExport.call(void 0, entry, packageJson.type, options.sourceRoot);
|
|
188
188
|
}
|
|
189
189
|
}
|
|
190
190
|
packageJson.main = packageJson.type === "commonjs" ? "./dist/index.js" : "./dist/index.cjs";
|
|
@@ -218,7 +218,7 @@ _chunk3GQAWCBQjs.__name.call(void 0, executeTSDown, "executeTSDown");
|
|
|
218
218
|
async function copyBuildAssets(options) {
|
|
219
219
|
_chunkNG6GE2YZjs.writeDebug.call(void 0, ` \u{1F4CB} Copying asset files to output directory: ${options.outdir}`, options.config);
|
|
220
220
|
const stopwatch = _chunkNG6GE2YZjs.getStopwatch.call(void 0, `${options.name} asset copy`);
|
|
221
|
-
await
|
|
221
|
+
await _chunkIFSORSANjs.copyAssets.call(void 0, options.config, _nullishCoalesce(options.assets, () => ( [])), options.outdir, options.projectRoot, options.sourceRoot, true, false);
|
|
222
222
|
stopwatch();
|
|
223
223
|
return options;
|
|
224
224
|
}
|
|
@@ -6,8 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
var _chunkESRAKU7Yjs = require('./chunk-ESRAKU7Y.js');
|
|
9
|
+
var _chunkIFSORSANjs = require('./chunk-IFSORSAN.js');
|
|
11
10
|
|
|
12
11
|
|
|
13
12
|
var _chunkFGMOZZ77js = require('./chunk-FGMOZZ77.js');
|
|
@@ -513,6 +512,18 @@ var DEFAULT_BUILD_OPTIONS = {
|
|
|
513
512
|
bundle: true,
|
|
514
513
|
clean: true,
|
|
515
514
|
debug: false,
|
|
515
|
+
resolveExtensions: [
|
|
516
|
+
".tsx",
|
|
517
|
+
".ts",
|
|
518
|
+
".cts",
|
|
519
|
+
".mts",
|
|
520
|
+
".jsx",
|
|
521
|
+
".js",
|
|
522
|
+
".cjs",
|
|
523
|
+
".mjs",
|
|
524
|
+
".css",
|
|
525
|
+
".json"
|
|
526
|
+
],
|
|
516
527
|
loader: {
|
|
517
528
|
".aac": "file",
|
|
518
529
|
".css": "file",
|
|
@@ -534,7 +545,7 @@ var DEFAULT_BUILD_OPTIONS = {
|
|
|
534
545
|
".woff": "file",
|
|
535
546
|
".woff2": "file"
|
|
536
547
|
},
|
|
537
|
-
banner:
|
|
548
|
+
banner: _chunkIFSORSANjs.DEFAULT_COMPILED_BANNER
|
|
538
549
|
};
|
|
539
550
|
|
|
540
551
|
// ../esbuild/src/plugins/deps-check.ts
|
|
@@ -730,12 +741,12 @@ var resolveOptions = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async
|
|
|
730
741
|
}
|
|
731
742
|
const options = _defu2.default.call(void 0, userOptions, DEFAULT_BUILD_OPTIONS);
|
|
732
743
|
options.name ??= `${projectName}-${options.format}`;
|
|
733
|
-
options.target ??=
|
|
744
|
+
options.target ??= _chunkIFSORSANjs.DEFAULT_TARGET;
|
|
734
745
|
const packageJsonPath = _chunkJTAXCQX6js.joinPaths.call(void 0, workspaceRoot.dir, options.projectRoot, "package.json");
|
|
735
746
|
if (!_fs.existsSync.call(void 0, packageJsonPath)) {
|
|
736
747
|
throw new Error("Cannot find package.json configuration");
|
|
737
748
|
}
|
|
738
|
-
const env =
|
|
749
|
+
const env = _chunkIFSORSANjs.getEnv.call(void 0, "esbuild", options);
|
|
739
750
|
const result = {
|
|
740
751
|
...options,
|
|
741
752
|
config,
|
|
@@ -747,16 +758,12 @@ var resolveOptions = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async
|
|
|
747
758
|
"module",
|
|
748
759
|
"main"
|
|
749
760
|
],
|
|
750
|
-
resolveExtensions: [
|
|
751
|
-
".ts",
|
|
752
|
-
".js",
|
|
753
|
-
".node"
|
|
754
|
-
],
|
|
755
761
|
...userOptions,
|
|
756
762
|
tsconfig: _chunkJTAXCQX6js.joinPaths.call(void 0, projectRoot, userOptions.tsconfig ? userOptions.tsconfig.replace(projectRoot, "") : "tsconfig.json"),
|
|
757
763
|
format: options.format || "cjs",
|
|
758
|
-
entryPoints: await
|
|
764
|
+
entryPoints: await _chunkIFSORSANjs.getEntryPoints.call(void 0, config, projectRoot, projectJson.sourceRoot, _nullishCoalesce(userOptions.entry, () => ( "./src/index.ts")), userOptions.emitOnAll === true),
|
|
759
765
|
outdir: userOptions.outputPath || _chunkJTAXCQX6js.joinPaths.call(void 0, "dist", projectRoot),
|
|
766
|
+
distDir: userOptions.distDir || "dist",
|
|
760
767
|
plugins: [],
|
|
761
768
|
name: userOptions.name || projectName,
|
|
762
769
|
projectConfigurations,
|
|
@@ -777,8 +784,8 @@ var resolveOptions = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async
|
|
|
777
784
|
watch: userOptions.watch === true,
|
|
778
785
|
footer: userOptions.footer,
|
|
779
786
|
banner: {
|
|
780
|
-
js: options.banner ||
|
|
781
|
-
css: options.banner ||
|
|
787
|
+
js: options.banner || _chunkIFSORSANjs.DEFAULT_COMPILED_BANNER,
|
|
788
|
+
css: options.banner || _chunkIFSORSANjs.DEFAULT_COMPILED_BANNER
|
|
782
789
|
},
|
|
783
790
|
splitting: options.format === "iife" ? false : typeof options.splitting === "boolean" ? options.splitting : options.format === "esm",
|
|
784
791
|
treeShaking: options.format === "esm",
|
|
@@ -824,11 +831,11 @@ async function generatePackageJson(context2) {
|
|
|
824
831
|
if (!packageJson) {
|
|
825
832
|
throw new Error("Cannot find package.json configuration file");
|
|
826
833
|
}
|
|
827
|
-
packageJson = await
|
|
828
|
-
packageJson = await
|
|
834
|
+
packageJson = await _chunkIFSORSANjs.addPackageDependencies.call(void 0, context2.options.config.workspaceRoot, context2.options.projectRoot, context2.options.projectName, packageJson);
|
|
835
|
+
packageJson = await _chunkIFSORSANjs.addWorkspacePackageJsonFields.call(void 0, context2.options.config, context2.options.projectRoot, context2.options.sourceRoot, context2.options.projectName, false, packageJson);
|
|
829
836
|
packageJson.exports ??= {};
|
|
830
837
|
packageJson.exports["./package.json"] ??= "./package.json";
|
|
831
|
-
packageJson.exports["."] ??=
|
|
838
|
+
packageJson.exports["."] ??= `.${context2.options.distDir ? `/${context2.options.distDir}` : ""}/index.js`;
|
|
832
839
|
let entryPoints = [
|
|
833
840
|
{
|
|
834
841
|
in: "./src/index.ts",
|
|
@@ -846,12 +853,15 @@ async function generatePackageJson(context2) {
|
|
|
846
853
|
const split = entryPoint.out.split(".");
|
|
847
854
|
split.pop();
|
|
848
855
|
const entry = split.join(".").replaceAll("\\", "/");
|
|
849
|
-
packageJson.exports[`./${entry}`] ??=
|
|
856
|
+
packageJson.exports[`./${entry}`] ??= `.${context2.options.distDir ? `/${context2.options.distDir}` : ""}/${entry}.js`;
|
|
850
857
|
}
|
|
851
858
|
}
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
859
|
+
if (context2.options.format === "esm") {
|
|
860
|
+
packageJson.module = packageJson.type === "module" ? `.${context2.options.distDir ? `/${context2.options.distDir}` : ""}/index.js` : `.${context2.options.distDir ? `/${context2.options.distDir}` : ""}/index.mjs`;
|
|
861
|
+
} else {
|
|
862
|
+
packageJson.main = packageJson.type === "commonjs" ? `.${context2.options.distDir ? `/${context2.options.distDir}` : ""}/index.js` : `.${context2.options.distDir ? `/${context2.options.distDir}` : ""}/index.cjs`;
|
|
863
|
+
}
|
|
864
|
+
packageJson.types = `.${context2.options.distDir ? `/${context2.options.distDir}` : ""}/index.d.ts`;
|
|
855
865
|
packageJson.exports = Object.keys(packageJson.exports).reduce((ret, key) => {
|
|
856
866
|
if (key.endsWith("/index") && !ret[key.replace("/index", "")]) {
|
|
857
867
|
ret[key.replace("/index", "")] = packageJson.exports[key];
|
|
@@ -903,6 +913,7 @@ async function executeEsBuild(context2) {
|
|
|
903
913
|
delete options.debug;
|
|
904
914
|
delete options.generatePackageJson;
|
|
905
915
|
delete options.emitOnAll;
|
|
916
|
+
delete options.distDir;
|
|
906
917
|
delete options.includeSrc;
|
|
907
918
|
delete options.verbose;
|
|
908
919
|
delete options.projectRoot;
|
|
@@ -927,7 +938,7 @@ async function copyBuildAssets(context2) {
|
|
|
927
938
|
if (_optionalChain([context2, 'access', _26 => _26.result, 'optionalAccess', _27 => _27.errors, 'access', _28 => _28.length]) === 0) {
|
|
928
939
|
_chunkNG6GE2YZjs.writeDebug.call(void 0, ` \u{1F4CB} Copying asset files to output directory: ${context2.options.outdir}`, context2.options.config);
|
|
929
940
|
const stopwatch = _chunkNG6GE2YZjs.getStopwatch.call(void 0, `${context2.options.name} asset copy`);
|
|
930
|
-
await
|
|
941
|
+
await _chunkIFSORSANjs.copyAssets.call(void 0, context2.options.config, _nullishCoalesce(context2.options.assets, () => ( [])), context2.options.outdir, context2.options.projectRoot, context2.options.sourceRoot, true, false);
|
|
931
942
|
stopwatch();
|
|
932
943
|
}
|
|
933
944
|
return context2;
|
|
@@ -2,12 +2,11 @@ import {
|
|
|
2
2
|
DEFAULT_COMPILED_BANNER,
|
|
3
3
|
DEFAULT_TARGET,
|
|
4
4
|
addPackageDependencies,
|
|
5
|
-
addPackageJsonExport,
|
|
6
5
|
addWorkspacePackageJsonFields,
|
|
7
6
|
copyAssets,
|
|
8
7
|
getEntryPoints,
|
|
9
8
|
getEnv
|
|
10
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-SE2XSR7P.mjs";
|
|
11
10
|
import {
|
|
12
11
|
withRunExecutor
|
|
13
12
|
} from "./chunk-VOIYJ67D.mjs";
|
|
@@ -514,6 +513,18 @@ var DEFAULT_BUILD_OPTIONS = {
|
|
|
514
513
|
bundle: true,
|
|
515
514
|
clean: true,
|
|
516
515
|
debug: false,
|
|
516
|
+
resolveExtensions: [
|
|
517
|
+
".tsx",
|
|
518
|
+
".ts",
|
|
519
|
+
".cts",
|
|
520
|
+
".mts",
|
|
521
|
+
".jsx",
|
|
522
|
+
".js",
|
|
523
|
+
".cjs",
|
|
524
|
+
".mjs",
|
|
525
|
+
".css",
|
|
526
|
+
".json"
|
|
527
|
+
],
|
|
517
528
|
loader: {
|
|
518
529
|
".aac": "file",
|
|
519
530
|
".css": "file",
|
|
@@ -748,16 +759,12 @@ var resolveOptions = /* @__PURE__ */ __name(async (userOptions) => {
|
|
|
748
759
|
"module",
|
|
749
760
|
"main"
|
|
750
761
|
],
|
|
751
|
-
resolveExtensions: [
|
|
752
|
-
".ts",
|
|
753
|
-
".js",
|
|
754
|
-
".node"
|
|
755
|
-
],
|
|
756
762
|
...userOptions,
|
|
757
763
|
tsconfig: joinPaths(projectRoot, userOptions.tsconfig ? userOptions.tsconfig.replace(projectRoot, "") : "tsconfig.json"),
|
|
758
764
|
format: options.format || "cjs",
|
|
759
765
|
entryPoints: await getEntryPoints(config, projectRoot, projectJson.sourceRoot, userOptions.entry ?? "./src/index.ts", userOptions.emitOnAll === true),
|
|
760
766
|
outdir: userOptions.outputPath || joinPaths("dist", projectRoot),
|
|
767
|
+
distDir: userOptions.distDir || "dist",
|
|
761
768
|
plugins: [],
|
|
762
769
|
name: userOptions.name || projectName,
|
|
763
770
|
projectConfigurations,
|
|
@@ -829,7 +836,7 @@ async function generatePackageJson(context2) {
|
|
|
829
836
|
packageJson = await addWorkspacePackageJsonFields(context2.options.config, context2.options.projectRoot, context2.options.sourceRoot, context2.options.projectName, false, packageJson);
|
|
830
837
|
packageJson.exports ??= {};
|
|
831
838
|
packageJson.exports["./package.json"] ??= "./package.json";
|
|
832
|
-
packageJson.exports["."] ??=
|
|
839
|
+
packageJson.exports["."] ??= `.${context2.options.distDir ? `/${context2.options.distDir}` : ""}/index.js`;
|
|
833
840
|
let entryPoints = [
|
|
834
841
|
{
|
|
835
842
|
in: "./src/index.ts",
|
|
@@ -847,12 +854,15 @@ async function generatePackageJson(context2) {
|
|
|
847
854
|
const split = entryPoint.out.split(".");
|
|
848
855
|
split.pop();
|
|
849
856
|
const entry = split.join(".").replaceAll("\\", "/");
|
|
850
|
-
packageJson.exports[`./${entry}`] ??=
|
|
857
|
+
packageJson.exports[`./${entry}`] ??= `.${context2.options.distDir ? `/${context2.options.distDir}` : ""}/${entry}.js`;
|
|
851
858
|
}
|
|
852
859
|
}
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
860
|
+
if (context2.options.format === "esm") {
|
|
861
|
+
packageJson.module = packageJson.type === "module" ? `.${context2.options.distDir ? `/${context2.options.distDir}` : ""}/index.js` : `.${context2.options.distDir ? `/${context2.options.distDir}` : ""}/index.mjs`;
|
|
862
|
+
} else {
|
|
863
|
+
packageJson.main = packageJson.type === "commonjs" ? `.${context2.options.distDir ? `/${context2.options.distDir}` : ""}/index.js` : `.${context2.options.distDir ? `/${context2.options.distDir}` : ""}/index.cjs`;
|
|
864
|
+
}
|
|
865
|
+
packageJson.types = `.${context2.options.distDir ? `/${context2.options.distDir}` : ""}/index.d.ts`;
|
|
856
866
|
packageJson.exports = Object.keys(packageJson.exports).reduce((ret, key) => {
|
|
857
867
|
if (key.endsWith("/index") && !ret[key.replace("/index", "")]) {
|
|
858
868
|
ret[key.replace("/index", "")] = packageJson.exports[key];
|
|
@@ -904,6 +914,7 @@ async function executeEsBuild(context2) {
|
|
|
904
914
|
delete options.debug;
|
|
905
915
|
delete options.generatePackageJson;
|
|
906
916
|
delete options.emitOnAll;
|
|
917
|
+
delete options.distDir;
|
|
907
918
|
delete options.includeSrc;
|
|
908
919
|
delete options.verbose;
|
|
909
920
|
delete options.projectRoot;
|
|
@@ -14,11 +14,11 @@ var _chunkJTAXCQX6js = require('./chunk-JTAXCQX6.js');
|
|
|
14
14
|
var _chunk3GQAWCBQjs = require('./chunk-3GQAWCBQ.js');
|
|
15
15
|
|
|
16
16
|
// ../build-tools/src/config.ts
|
|
17
|
-
var DEFAULT_COMPILED_BANNER =
|
|
18
|
-
|
|
17
|
+
var DEFAULT_COMPILED_BANNER = `/*****************************************
|
|
18
|
+
*
|
|
19
19
|
* \u26A1 Built by Storm Software
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
*
|
|
21
|
+
*****************************************/
|
|
22
22
|
`;
|
|
23
23
|
var DEFAULT_ENVIRONMENT = "production";
|
|
24
24
|
var DEFAULT_TARGET = "esnext";
|
|
@@ -14,11 +14,11 @@ import {
|
|
|
14
14
|
} from "./chunk-2WTKQCPA.mjs";
|
|
15
15
|
|
|
16
16
|
// ../build-tools/src/config.ts
|
|
17
|
-
var DEFAULT_COMPILED_BANNER =
|
|
18
|
-
|
|
17
|
+
var DEFAULT_COMPILED_BANNER = `/*****************************************
|
|
18
|
+
*
|
|
19
19
|
* \u26A1 Built by Storm Software
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
*
|
|
21
|
+
*****************************************/
|
|
22
22
|
`;
|
|
23
23
|
var DEFAULT_ENVIRONMENT = "production";
|
|
24
24
|
var DEFAULT_TARGET = "esnext";
|
package/dist/executors.js
CHANGED
|
@@ -10,7 +10,7 @@ var _chunkGJQKCDGCjs = require('./chunk-GJQKCDGC.js');
|
|
|
10
10
|
var _chunkXM4IXZ6Yjs = require('./chunk-XM4IXZ6Y.js');
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
var
|
|
13
|
+
var _chunk55IQXVOQjs = require('./chunk-55IQXVOQ.js');
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
var _chunkAXGI5QP4js = require('./chunk-AXGI5QP4.js');
|
|
@@ -22,8 +22,8 @@ var _chunkOVWVVBMFjs = require('./chunk-OVWVVBMF.js');
|
|
|
22
22
|
var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
|
|
23
23
|
|
|
24
24
|
|
|
25
|
-
var
|
|
26
|
-
require('./chunk-
|
|
25
|
+
var _chunk6QKCP4DSjs = require('./chunk-6QKCP4DS.js');
|
|
26
|
+
require('./chunk-IFSORSAN.js');
|
|
27
27
|
|
|
28
28
|
|
|
29
29
|
var _chunkJJ4G5NGFjs = require('./chunk-JJ4G5NGF.js');
|
|
@@ -58,4 +58,4 @@ require('./chunk-3GQAWCBQ.js');
|
|
|
58
58
|
|
|
59
59
|
|
|
60
60
|
|
|
61
|
-
exports.LARGE_BUFFER = _chunkGJQKCDGCjs.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkJJ4G5NGFjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkU6DCH53Ijs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkGBXELUHEjs.cargoClippyExecutor; exports.cargoDocExecutor = _chunkFIRVS3UNjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkOVWVVBMFjs.cargoFormatExecutor; exports.esbuildExecutorFn =
|
|
61
|
+
exports.LARGE_BUFFER = _chunkGJQKCDGCjs.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkJJ4G5NGFjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkU6DCH53Ijs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkGBXELUHEjs.cargoClippyExecutor; exports.cargoDocExecutor = _chunkFIRVS3UNjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkOVWVVBMFjs.cargoFormatExecutor; exports.esbuildExecutorFn = _chunk6QKCP4DSjs.esbuildExecutorFn; exports.getRegistryVersion = _chunkGGGO542Mjs.getRegistryVersion; exports.sizeLimitExecutorFn = _chunkXM4IXZ6Yjs.sizeLimitExecutorFn; exports.tsdownExecutorFn = _chunk55IQXVOQjs.tsdownExecutorFn; exports.typiaExecutorFn = _chunkAXGI5QP4js.typiaExecutorFn; exports.unbuildExecutorFn = _chunkKFJJGDFTjs.unbuildExecutorFn;
|
package/dist/executors.mjs
CHANGED
|
@@ -10,7 +10,7 @@ import {
|
|
|
10
10
|
} from "./chunk-IT3ENPW3.mjs";
|
|
11
11
|
import {
|
|
12
12
|
tsdownExecutorFn
|
|
13
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-UFPTODUJ.mjs";
|
|
14
14
|
import {
|
|
15
15
|
typiaExecutorFn
|
|
16
16
|
} from "./chunk-3I74ESKM.mjs";
|
|
@@ -22,8 +22,8 @@ import {
|
|
|
22
22
|
} from "./chunk-OQ32KFGA.mjs";
|
|
23
23
|
import {
|
|
24
24
|
esbuildExecutorFn
|
|
25
|
-
} from "./chunk-
|
|
26
|
-
import "./chunk-
|
|
25
|
+
} from "./chunk-EF7U4632.mjs";
|
|
26
|
+
import "./chunk-SE2XSR7P.mjs";
|
|
27
27
|
import {
|
|
28
28
|
cargoBuildExecutor
|
|
29
29
|
} from "./chunk-OBUTMEEY.mjs";
|
package/dist/index.js
CHANGED
|
@@ -57,7 +57,7 @@ var _chunkGJQKCDGCjs = require('./chunk-GJQKCDGC.js');
|
|
|
57
57
|
var _chunkXM4IXZ6Yjs = require('./chunk-XM4IXZ6Y.js');
|
|
58
58
|
|
|
59
59
|
|
|
60
|
-
var
|
|
60
|
+
var _chunk55IQXVOQjs = require('./chunk-55IQXVOQ.js');
|
|
61
61
|
|
|
62
62
|
|
|
63
63
|
var _chunkAXGI5QP4js = require('./chunk-AXGI5QP4.js');
|
|
@@ -69,8 +69,8 @@ var _chunkOVWVVBMFjs = require('./chunk-OVWVVBMF.js');
|
|
|
69
69
|
var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
|
|
70
70
|
|
|
71
71
|
|
|
72
|
-
var
|
|
73
|
-
require('./chunk-
|
|
72
|
+
var _chunk6QKCP4DSjs = require('./chunk-6QKCP4DS.js');
|
|
73
|
+
require('./chunk-IFSORSAN.js');
|
|
74
74
|
|
|
75
75
|
|
|
76
76
|
var _chunkJJ4G5NGFjs = require('./chunk-JJ4G5NGF.js');
|
|
@@ -287,4 +287,4 @@ require('./chunk-3GQAWCBQ.js');
|
|
|
287
287
|
|
|
288
288
|
|
|
289
289
|
|
|
290
|
-
exports.INVALID_CARGO_ARGS = _chunkULBTYC2Bjs.INVALID_CARGO_ARGS; exports.LARGE_BUFFER = _chunkGJQKCDGCjs.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 = _chunkIC2TARGZjs.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkULBTYC2Bjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk6QO3KMZAjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkJJ4G5NGFjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkU6DCH53Ijs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkGBXELUHEjs.cargoClippyExecutor; exports.cargoCommand = _chunkULBTYC2Bjs.cargoCommand; exports.cargoCommandSync = _chunkULBTYC2Bjs.cargoCommandSync; exports.cargoDocExecutor = _chunkFIRVS3UNjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkOVWVVBMFjs.cargoFormatExecutor; exports.cargoMetadata = _chunkULBTYC2Bjs.cargoMetadata; exports.cargoRunCommand = _chunkULBTYC2Bjs.cargoRunCommand; exports.childProcess = _chunkULBTYC2Bjs.childProcess; exports.configSchemaGeneratorFn = _chunkXGU4526Mjs.configSchemaGeneratorFn; exports.createCliOptions = _chunkDHGZTMNDjs.createCliOptions; exports.createProjectTsConfigJson = _chunkRBU35LQWjs.createProjectTsConfigJson; exports.esbuildExecutorFn =
|
|
290
|
+
exports.INVALID_CARGO_ARGS = _chunkULBTYC2Bjs.INVALID_CARGO_ARGS; exports.LARGE_BUFFER = _chunkGJQKCDGCjs.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 = _chunkIC2TARGZjs.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkULBTYC2Bjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk6QO3KMZAjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkJJ4G5NGFjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkU6DCH53Ijs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkGBXELUHEjs.cargoClippyExecutor; exports.cargoCommand = _chunkULBTYC2Bjs.cargoCommand; exports.cargoCommandSync = _chunkULBTYC2Bjs.cargoCommandSync; exports.cargoDocExecutor = _chunkFIRVS3UNjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkOVWVVBMFjs.cargoFormatExecutor; exports.cargoMetadata = _chunkULBTYC2Bjs.cargoMetadata; exports.cargoRunCommand = _chunkULBTYC2Bjs.cargoRunCommand; exports.childProcess = _chunkULBTYC2Bjs.childProcess; exports.configSchemaGeneratorFn = _chunkXGU4526Mjs.configSchemaGeneratorFn; exports.createCliOptions = _chunkDHGZTMNDjs.createCliOptions; exports.createProjectTsConfigJson = _chunkRBU35LQWjs.createProjectTsConfigJson; exports.esbuildExecutorFn = _chunk6QKCP4DSjs.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 = _chunkN7NXGPZAjs.neutralLibraryGeneratorFn; exports.nodeLibraryGeneratorFn = _chunkK2LABESFjs.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 = _chunkQ27N3MQOjs.presetGeneratorFn; exports.prettierPackageJsonVersion = _chunkHI4G4OOGjs.prettierPackageJsonVersion; exports.prettierPrismaVersion = _chunkHI4G4OOGjs.prettierPrismaVersion; exports.prettierVersion = _chunkHI4G4OOGjs.prettierVersion; exports.releaseVersionGeneratorFn = _chunkD5NZC2JNjs.releaseVersionGeneratorFn; exports.runProcess = _chunkULBTYC2Bjs.runProcess; exports.semanticReleaseVersion = _chunkHI4G4OOGjs.semanticReleaseVersion; exports.setDefaultProjectTags = _chunk7YRW5HNXjs.setDefaultProjectTags; exports.sizeLimitExecutorFn = _chunkXM4IXZ6Yjs.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.tsdownExecutorFn = _chunk55IQXVOQjs.tsdownExecutorFn; 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 = _chunkAXGI5QP4js.typiaExecutorFn; exports.unbuildExecutorFn = _chunkKFJJGDFTjs.unbuildExecutorFn; exports.verdaccioVersion = _chunkHI4G4OOGjs.verdaccioVersion; exports.withRunExecutor = _chunkFGMOZZ77js.withRunExecutor; exports.withRunGenerator = _chunkLSL5N332js.withRunGenerator;
|
package/dist/index.mjs
CHANGED
|
@@ -57,7 +57,7 @@ import {
|
|
|
57
57
|
} from "./chunk-IT3ENPW3.mjs";
|
|
58
58
|
import {
|
|
59
59
|
tsdownExecutorFn
|
|
60
|
-
} from "./chunk-
|
|
60
|
+
} from "./chunk-UFPTODUJ.mjs";
|
|
61
61
|
import {
|
|
62
62
|
typiaExecutorFn
|
|
63
63
|
} from "./chunk-3I74ESKM.mjs";
|
|
@@ -69,8 +69,8 @@ import {
|
|
|
69
69
|
} from "./chunk-OQ32KFGA.mjs";
|
|
70
70
|
import {
|
|
71
71
|
esbuildExecutorFn
|
|
72
|
-
} from "./chunk-
|
|
73
|
-
import "./chunk-
|
|
72
|
+
} from "./chunk-EF7U4632.mjs";
|
|
73
|
+
import "./chunk-SE2XSR7P.mjs";
|
|
74
74
|
import {
|
|
75
75
|
cargoBuildExecutor
|
|
76
76
|
} from "./chunk-OBUTMEEY.mjs";
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
5
|
-
require('../../../chunk-
|
|
4
|
+
var _chunk6QKCP4DSjs = require('../../../chunk-6QKCP4DS.js');
|
|
5
|
+
require('../../../chunk-IFSORSAN.js');
|
|
6
6
|
require('../../../chunk-FGMOZZ77.js');
|
|
7
7
|
require('../../../chunk-UALZJZUK.js');
|
|
8
8
|
require('../../../chunk-NG6GE2YZ.js');
|
|
@@ -12,4 +12,4 @@ require('../../../chunk-3GQAWCBQ.js');
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
exports.default =
|
|
15
|
+
exports.default = _chunk6QKCP4DSjs.executor_default; exports.esbuildExecutorFn = _chunk6QKCP4DSjs.esbuildExecutorFn;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
esbuildExecutorFn,
|
|
3
3
|
executor_default
|
|
4
|
-
} from "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
4
|
+
} from "../../../chunk-EF7U4632.mjs";
|
|
5
|
+
import "../../../chunk-SE2XSR7P.mjs";
|
|
6
6
|
import "../../../chunk-VOIYJ67D.mjs";
|
|
7
7
|
import "../../../chunk-5JPH5VCU.mjs";
|
|
8
8
|
import "../../../chunk-L6CV744X.mjs";
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
5
|
-
require('../../../chunk-
|
|
4
|
+
var _chunk55IQXVOQjs = require('../../../chunk-55IQXVOQ.js');
|
|
5
|
+
require('../../../chunk-IFSORSAN.js');
|
|
6
6
|
require('../../../chunk-FGMOZZ77.js');
|
|
7
7
|
require('../../../chunk-UALZJZUK.js');
|
|
8
8
|
require('../../../chunk-NG6GE2YZ.js');
|
|
@@ -12,4 +12,4 @@ require('../../../chunk-3GQAWCBQ.js');
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
exports.default =
|
|
15
|
+
exports.default = _chunk55IQXVOQjs.executor_default; exports.tsdownExecutorFn = _chunk55IQXVOQjs.tsdownExecutorFn;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
executor_default,
|
|
3
3
|
tsdownExecutorFn
|
|
4
|
-
} from "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
4
|
+
} from "../../../chunk-UFPTODUJ.mjs";
|
|
5
|
+
import "../../../chunk-SE2XSR7P.mjs";
|
|
6
6
|
import "../../../chunk-VOIYJ67D.mjs";
|
|
7
7
|
import "../../../chunk-5JPH5VCU.mjs";
|
|
8
8
|
import "../../../chunk-L6CV744X.mjs";
|
package/package.json
CHANGED