@storm-software/workspace-tools 1.16.1 → 1.16.2
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 +7 -0
- package/README.md +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/schema.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.16.1](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.16.0...workspace-tools-v1.16.1) (2023-11-29)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **workspace-tools:** Resolved issue with invalid schema json for tsup executor ([045560e](https://github.com/storm-software/storm-ops/commit/045560e2add5f4dc33be71148d63e4ecee496ced))
|
|
7
|
+
|
|
1
8
|
# [1.16.0](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.15.3...workspace-tools-v1.16.0) (2023-11-29)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "http://json-schema.org/schema",
|
|
3
3
|
"version": 2,
|
|
4
4
|
"title": "Tsup Builder",
|
|
5
|
-
"description": "Run a build on the project using tsup configuration",
|
|
5
|
+
"description": "Run a build on the project using ESBuild with a patched tsup configuration",
|
|
6
6
|
"type": "object",
|
|
7
7
|
"properties": {
|
|
8
8
|
"entry": {
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"banner": {
|
|
85
85
|
"type": "string",
|
|
86
86
|
"description": "A short heading added to the top of each typescript file added in the output folder's src directory.",
|
|
87
|
-
"default": "This code was developed by Storm Software (https://stormsoftware.org) and is licensed under the Apache License 2.0."
|
|
87
|
+
"default": "This code was developed by Storm Software (<https://stormsoftware.org>) and is licensed under the Apache License 2.0."
|
|
88
88
|
},
|
|
89
89
|
"verbose": {
|
|
90
90
|
"type": "boolean",
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
},
|
|
119
119
|
"options": {
|
|
120
120
|
"type": "object",
|
|
121
|
-
"description": "Additional options to pass to tsup. See https://paka.dev/npm/tsup@7.2.0/api#d35d54aca71eb26e
|
|
121
|
+
"description": "Additional options to pass to tsup. See <https://paka.dev/npm/tsup@7.2.0/api#d35d54aca71eb26e>.",
|
|
122
122
|
"additionalProperties": true,
|
|
123
123
|
"x-priority": "important"
|
|
124
124
|
},
|