@storm-software/workspace-tools 1.40.0 → 1.41.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 +21 -0
- package/index.js +1 -3
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +1 -3
- package/src/executors/tsup-browser/executor.js +1 -3
- package/src/executors/tsup-neutral/executor.js +1 -3
- package/src/executors/tsup-node/executor.js +1 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
## [1.40.1](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.40.0...workspace-tools-v1.40.1) (2024-01-14)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **workspace-tools:** Resolved runtime issues with tsup build ([052c78c](https://github.com/storm-software/storm-ops/commit/052c78ca8258ba4acadbfce18b1bc3bee2aa0fe3))
|
|
7
|
+
|
|
8
|
+
# [1.40.0](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.39.0...workspace-tools-v1.40.0) (2024-01-14)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **storm-ops:** Added missing dependencies ([4ab8aee](https://github.com/storm-software/storm-ops/commit/4ab8aeeab3b7ca4610a3ef0adb31332688c8346a))
|
|
14
|
+
* **workspace-tools:** Resolved issue with typescript import ([3d63fbc](https://github.com/storm-software/storm-ops/commit/3d63fbc783d7549276cd89df383a15e2808b8ecb))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **git-tools:** Re-added the Git hooks to drive workspace processing ([24311bf](https://github.com/storm-software/storm-ops/commit/24311bfde1becaba5573c4a55d1a6d68e84eb4fb))
|
|
20
|
+
* **linting-tools:** Added Typia compiler transformer to tsup build ([5b39221](https://github.com/storm-software/storm-ops/commit/5b39221dedcc63c21b15f653f56efb4f5cf20989))
|
|
21
|
+
|
|
1
22
|
# [1.39.0](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.38.1...workspace-tools-v1.39.0) (2024-01-13)
|
|
2
23
|
|
|
3
24
|
|
package/index.js
CHANGED
|
@@ -139345,7 +139345,7 @@ ${(0, import_fs4.readFileSync)(file, "utf-8")}`,
|
|
|
139345
139345
|
...options,
|
|
139346
139346
|
watch: false,
|
|
139347
139347
|
main: options.entry,
|
|
139348
|
-
transformers: []
|
|
139348
|
+
transformers: ["typia/lib/transform"]
|
|
139349
139349
|
},
|
|
139350
139350
|
context.root,
|
|
139351
139351
|
sourceRoot,
|
|
@@ -139409,8 +139409,6 @@ function getNormalizedTsConfig(workspaceRoot, outputPath, options) {
|
|
|
139409
139409
|
esModuleInterop: true,
|
|
139410
139410
|
downlevelIteration: true,
|
|
139411
139411
|
forceConsistentCasingInFileNames: true,
|
|
139412
|
-
strict: true,
|
|
139413
|
-
skipLibCheck: true,
|
|
139414
139412
|
declaration: true,
|
|
139415
139413
|
declarationMap: true,
|
|
139416
139414
|
declarationDir: (0, import_path4.join)(workspaceRoot, "tmp", ".tsup", "declaration")
|