@storm-software/workspace-tools 1.49.27 → 1.49.28
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 -5
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +4 -5
- package/src/executors/tsup-browser/executor.js +4 -5
- package/src/executors/tsup-neutral/executor.js +4 -5
- package/src/executors/tsup-node/executor.js +4 -5
- package/src/utils/index.js +3 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 1.49.28 (2024-01-26)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **workspace-tools:** Resolved issue with entry build parameter ([7c86ce4d](https://github.com/storm-software/storm-ops/commit/7c86ce4d))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
1
13
|
## 1.49.27 (2024-01-26)
|
|
2
14
|
|
|
3
15
|
|
package/index.js
CHANGED
|
@@ -132834,7 +132834,7 @@ var runTsupBuild = async (context, config, options) => {
|
|
|
132834
132834
|
options.plugins.push(environmentPlugin(stormEnv));
|
|
132835
132835
|
const getConfigOptions = {
|
|
132836
132836
|
...options,
|
|
132837
|
-
main: context.
|
|
132837
|
+
main: context.main,
|
|
132838
132838
|
define: {
|
|
132839
132839
|
__STORM_CONFIG: JSON.stringify(stormEnv)
|
|
132840
132840
|
},
|
|
@@ -132850,7 +132850,7 @@ var runTsupBuild = async (context, config, options) => {
|
|
|
132850
132850
|
{
|
|
132851
132851
|
...options,
|
|
132852
132852
|
watch: false,
|
|
132853
|
-
main: context.
|
|
132853
|
+
main: context.main,
|
|
132854
132854
|
transformers: []
|
|
132855
132855
|
},
|
|
132856
132856
|
config.workspaceRoot,
|
|
@@ -132871,8 +132871,7 @@ ${options.banner}
|
|
|
132871
132871
|
|
|
132872
132872
|
*/`
|
|
132873
132873
|
} : void 0,
|
|
132874
|
-
outputPath: options.outputPath
|
|
132875
|
-
entry: context.entry
|
|
132874
|
+
outputPath: options.outputPath
|
|
132876
132875
|
};
|
|
132877
132876
|
if (options.getConfig) {
|
|
132878
132877
|
writeInfo(config, "\u26A1 Running the Build process");
|
|
@@ -139551,7 +139550,7 @@ ${(0, import_node_fs5.readFileSync)(file, "utf-8")}`,
|
|
|
139551
139550
|
writeInfo(config, `*** Build output path: ${outputPath} ***`);
|
|
139552
139551
|
return runTsupBuild(
|
|
139553
139552
|
{
|
|
139554
|
-
|
|
139553
|
+
main: entryPoint,
|
|
139555
139554
|
projectRoot,
|
|
139556
139555
|
projectName: context.projectName,
|
|
139557
139556
|
sourceRoot
|