@storm-software/workspace-tools 1.55.2 → 1.56.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 +24 -0
- package/index.js +2 -1
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup-neutral/executor.js +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
## 1.56.1 (2024-02-08)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **workspace-tools:** Added `process` polyfill with `DefinePlugin` during Browser build ([564d81f8](https://github.com/storm-software/storm-ops/commit/564d81f8))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
13
|
+
## 1.56.0 (2024-02-07)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### 🚀 Features
|
|
17
|
+
|
|
18
|
+
- **workspace-tools:** Added the `useJsxModule` option to the build executor ([88955b31](https://github.com/storm-software/storm-ops/commit/88955b31))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### ❤️ Thank You
|
|
22
|
+
|
|
23
|
+
- Patrick Sullivan
|
|
24
|
+
|
|
1
25
|
## 1.55.2 (2024-02-07)
|
|
2
26
|
|
|
3
27
|
|
package/index.js
CHANGED
|
@@ -140104,7 +140104,8 @@ var tsupNeutralBuildExecutorFn = (options, context, config) => {
|
|
|
140104
140104
|
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 (Neutral Platform)"
|
|
140105
140105
|
),
|
|
140106
140106
|
define: {
|
|
140107
|
-
...options.define
|
|
140107
|
+
...options.define,
|
|
140108
|
+
process: `{ env: ${JSON.stringify(process.env)} }`
|
|
140108
140109
|
},
|
|
140109
140110
|
env: {
|
|
140110
140111
|
...process.env
|