@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 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
@@ -48,7 +48,7 @@ Run a build on the project using tsup configuration
48
48
 
49
49
  This executor can be used by executing the following in a command line utility:
50
50
 
51
- ```
51
+ ```cmd
52
52
  nx run my-project:tsup
53
53
  ```
54
54
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.16.1",
3
+ "version": "1.16.2",
4
4
  "private": false,
5
5
  "description": "⚡ A Nx plugin package that contains various executors and generators used in a Storm workspaces.",
6
6
  "keywords": [
@@ -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
  },