@storm-software/workspace-tools 1.23.0 → 1.24.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 +19 -0
- package/README.md +3 -1
- package/index.js +2251 -620
- package/meta.json +1 -1
- package/package.json +2 -1
- package/src/executors/tsup/executor.js +2429 -798
- package/src/executors/tsup/get-config.js +9 -9
- package/src/executors/tsup-neutral/executor.js +2251 -620
- package/src/executors/tsup-node/executor.js +2251 -620
- package/src/generators/config-schema/generator.js +2 -2
- package/src/generators/init/init.js +2 -2
- package/src/generators/node-library/generator.js +773 -595
- package/src/generators/preset/generator.js +2 -2
|
@@ -5839,9 +5839,9 @@ var require_dir_glob = __commonJS({
|
|
|
5839
5839
|
}
|
|
5840
5840
|
});
|
|
5841
5841
|
|
|
5842
|
-
// node_modules/.pnpm/ignore@5.
|
|
5842
|
+
// node_modules/.pnpm/ignore@5.3.0/node_modules/ignore/index.js
|
|
5843
5843
|
var require_ignore = __commonJS({
|
|
5844
|
-
"node_modules/.pnpm/ignore@5.
|
|
5844
|
+
"node_modules/.pnpm/ignore@5.3.0/node_modules/ignore/index.js"(exports, module2) {
|
|
5845
5845
|
function makeArray(subject) {
|
|
5846
5846
|
return Array.isArray(subject) ? subject : [subject];
|
|
5847
5847
|
}
|
|
@@ -70671,13 +70671,13 @@ function modernConfig({
|
|
|
70671
70671
|
}
|
|
70672
70672
|
}
|
|
70673
70673
|
},
|
|
70674
|
-
minify: debug ? false : "terser",
|
|
70674
|
+
/*minify: debug ? false : "terser",
|
|
70675
70675
|
terserOptions: {
|
|
70676
70676
|
compress: true,
|
|
70677
70677
|
ecma: 2020,
|
|
70678
70678
|
keep_classnames: true,
|
|
70679
70679
|
keep_fnames: true
|
|
70680
|
-
}
|
|
70680
|
+
},*/
|
|
70681
70681
|
apiReport,
|
|
70682
70682
|
docModel,
|
|
70683
70683
|
tsdocMetadata,
|
|
@@ -70739,13 +70739,13 @@ function legacyConfig({
|
|
|
70739
70739
|
}
|
|
70740
70740
|
}
|
|
70741
70741
|
},
|
|
70742
|
-
minify: debug ? false : "terser",
|
|
70742
|
+
/*minify: debug ? false : "terser",
|
|
70743
70743
|
terserOptions: {
|
|
70744
70744
|
compress: true,
|
|
70745
70745
|
ecma: 2020,
|
|
70746
70746
|
keep_classnames: true,
|
|
70747
70747
|
keep_fnames: true
|
|
70748
|
-
}
|
|
70748
|
+
},*/
|
|
70749
70749
|
apiReport: false,
|
|
70750
70750
|
docModel: false,
|
|
70751
70751
|
tsdocMetadata: false,
|
|
@@ -70810,13 +70810,13 @@ function workerConfig({
|
|
|
70810
70810
|
}
|
|
70811
70811
|
}
|
|
70812
70812
|
},
|
|
70813
|
-
minify: debug ? false : "terser",
|
|
70813
|
+
/*minify: debug ? false : "terser",
|
|
70814
70814
|
terserOptions: {
|
|
70815
70815
|
compress: true,
|
|
70816
70816
|
ecma: 2020,
|
|
70817
70817
|
keep_classnames: true,
|
|
70818
70818
|
keep_fnames: true
|
|
70819
|
-
}
|
|
70819
|
+
},*/
|
|
70820
70820
|
apiReport,
|
|
70821
70821
|
docModel,
|
|
70822
70822
|
tsdocMetadata,
|
|
@@ -70836,7 +70836,7 @@ function getConfig(workspaceRoot, projectRoot, sourceRoot, {
|
|
|
70836
70836
|
}) {
|
|
70837
70837
|
const entry = globSync(
|
|
70838
70838
|
[
|
|
70839
|
-
rest.entry ? rest.entry : (0, import_path2.join)(sourceRoot, "
|
|
70839
|
+
rest.entry ? rest.entry : (0, import_path2.join)(sourceRoot, "**/*.{ts,tsx}"),
|
|
70840
70840
|
...additionalEntryPoints ?? []
|
|
70841
70841
|
],
|
|
70842
70842
|
{
|