@storm-software/workspace-tools 1.13.25 → 1.14.0
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 +14 -0
- package/README.md +1 -1
- package/index.js +5648 -5451
- package/meta.json +1 -1
- package/package.json +2 -4
- package/src/executors/tsup/executor.js +3275 -4047
- package/src/executors/tsup/get-config.js +1320 -2533
- package/src/executors/tsup/schema.d.ts +1 -0
- package/src/executors/tsup/schema.json +8 -0
- package/src/generators/preset/generator.js +8 -2
- package/src/executors/tsup/rollup.js +0 -39248
|
@@ -122,6 +122,14 @@
|
|
|
122
122
|
"description": "Additional options to pass to tsup. See https://paka.dev/npm/tsup@7.2.0/api#d35d54aca71eb26e.",
|
|
123
123
|
"additionalProperties": true,
|
|
124
124
|
"x-priority": "important"
|
|
125
|
+
},
|
|
126
|
+
"plugins": {
|
|
127
|
+
"type": "array",
|
|
128
|
+
"description": "List of ESBuild plugins to use during processing",
|
|
129
|
+
"default": [],
|
|
130
|
+
"items": {
|
|
131
|
+
"type": "object"
|
|
132
|
+
}
|
|
125
133
|
}
|
|
126
134
|
},
|
|
127
135
|
"required": ["tsConfig", "platform", "banner"],
|
|
@@ -18235,7 +18235,8 @@ var require_devkit = __commonJS({
|
|
|
18235
18235
|
// packages/workspace-tools/src/generators/preset/generator.ts
|
|
18236
18236
|
var generator_exports = {};
|
|
18237
18237
|
__export(generator_exports, {
|
|
18238
|
-
default: () => generator_default
|
|
18238
|
+
default: () => generator_default,
|
|
18239
|
+
presetGenerator: () => presetGenerator
|
|
18239
18240
|
});
|
|
18240
18241
|
module.exports = __toCommonJS(generator_exports);
|
|
18241
18242
|
var import_devkit = __toESM(require_devkit());
|
|
@@ -18247,7 +18248,7 @@ var nodeVersion = "18.17.1";
|
|
|
18247
18248
|
var pnpmVersion = "8.10.2";
|
|
18248
18249
|
|
|
18249
18250
|
// packages/workspace-tools/src/generators/preset/generator.ts
|
|
18250
|
-
async function
|
|
18251
|
+
async function presetGenerator(tree, options) {
|
|
18251
18252
|
try {
|
|
18252
18253
|
const projectRoot = `.`;
|
|
18253
18254
|
options.description ??= `\u26A1The ${options.namespace ? options.namespace : options.name} monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.`;
|
|
@@ -18472,6 +18473,11 @@ async function generator_default(tree, options) {
|
|
|
18472
18473
|
console.error(error);
|
|
18473
18474
|
}
|
|
18474
18475
|
}
|
|
18476
|
+
var generator_default = presetGenerator;
|
|
18477
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
18478
|
+
0 && (module.exports = {
|
|
18479
|
+
presetGenerator
|
|
18480
|
+
});
|
|
18475
18481
|
/*! Bundled license information:
|
|
18476
18482
|
|
|
18477
18483
|
ejs/lib/ejs.js:
|