@storm-software/workspace-tools 1.49.19 → 1.49.20
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 +12 -0
- package/index.js +4 -8
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +1 -1
- package/src/executors/tsup-browser/executor.js +2 -4
- package/src/executors/tsup-neutral/executor.js +2 -4
- package/src/executors/tsup-node/executor.js +2 -2
- package/src/utils/index.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 1.49.20 (2024-01-25)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **workspace-tools:** Updated the `getConfig` option to use exclusively functions ([7e144ace](https://github.com/storm-software/storm-ops/commit/7e144ace))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
1
13
|
## 1.49.19 (2024-01-25)
|
|
2
14
|
|
|
3
15
|
|
package/index.js
CHANGED
|
@@ -132804,7 +132804,7 @@ var applyDefaultOptions = (options) => {
|
|
|
132804
132804
|
options.skipNativeModulesPlugin ??= false;
|
|
132805
132805
|
options.define ??= {};
|
|
132806
132806
|
options.env ??= {};
|
|
132807
|
-
options.getConfig ??=
|
|
132807
|
+
options.getConfig ??= defaultConfig;
|
|
132808
132808
|
return options;
|
|
132809
132809
|
};
|
|
132810
132810
|
var runTsupBuild = async (context, config, options) => {
|
|
@@ -139680,9 +139680,7 @@ var tsupNeutralBuildExecutorFn = (options, context, config) => {
|
|
|
139680
139680
|
env: {
|
|
139681
139681
|
...process.env
|
|
139682
139682
|
},
|
|
139683
|
-
getConfig:
|
|
139684
|
-
dist: neutralConfig
|
|
139685
|
-
}
|
|
139683
|
+
getConfig: neutralConfig
|
|
139686
139684
|
},
|
|
139687
139685
|
context,
|
|
139688
139686
|
config
|
|
@@ -139799,7 +139797,7 @@ var tsupNodeBuildExecutorFn = (options, context, config) => {
|
|
|
139799
139797
|
return tsupExecutorFn(
|
|
139800
139798
|
{
|
|
139801
139799
|
...options,
|
|
139802
|
-
getConfig:
|
|
139800
|
+
getConfig: nodeConfig,
|
|
139803
139801
|
platform: "node",
|
|
139804
139802
|
banner: getFileBanner(
|
|
139805
139803
|
context.projectName ? context.projectName.split(/(?=[A-Z])|[\.\-\s_]/).map((s) => s.trim()).filter((s) => !!s).map((s) => s ? s.toUpperCase()[0] + s.toLowerCase().slice(1) : "").join(" ") : "TypeScript (NodeJs Platform)"
|
|
@@ -139931,9 +139929,7 @@ var tsupBrowserBuildExecutorFn = (options, context, config) => {
|
|
|
139931
139929
|
env: {
|
|
139932
139930
|
...process.env
|
|
139933
139931
|
},
|
|
139934
|
-
getConfig:
|
|
139935
|
-
dist: browserConfig
|
|
139936
|
-
}
|
|
139932
|
+
getConfig: browserConfig
|
|
139937
139933
|
},
|
|
139938
139934
|
context,
|
|
139939
139935
|
config
|