@storm-software/workspace-tools 1.17.1 → 1.19.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 CHANGED
@@ -1,3 +1,19 @@
1
+ # [1.18.0](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.17.1...workspace-tools-v1.18.0) (2023-12-02)
2
+
3
+
4
+ ### Features
5
+
6
+ * **config-tools:** Added the config-tools library to support storm configuration ([63f8b9e](https://github.com/storm-software/storm-ops/commit/63f8b9e80a3fc95adbb4dae36e04339e9d46d089))
7
+ * **workspace-tools:** Added the `tsup-neutral` and `tsup-node` executors ([0b1c10e](https://github.com/storm-software/storm-ops/commit/0b1c10e40b2c14b1f49012b8288808aec74e247f))
8
+
9
+ ## [1.17.1](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.17.0...workspace-tools-v1.17.1) (2023-11-30)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * **workspace-tools:** Enhanced external dependency selection logic ([12dc8d5](https://github.com/storm-software/storm-ops/commit/12dc8d52175f19f70014f21e66e27c7dbaf29df2))
15
+ * **workspace-tools:** Ensure we do no add duplicate dependencies ([5e65bbe](https://github.com/storm-software/storm-ops/commit/5e65bbe90790c7c8e77aa23977e988699901fd3d))
16
+
1
17
  # [1.17.0](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.16.17...workspace-tools-v1.17.0) (2023-11-30)
2
18
 
3
19
 
package/README.md CHANGED
@@ -16,7 +16,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
16
16
 
17
17
  <h3 align="center">💻 Visit <a href="https://stormsoftware.org" target="_blank">stormsoftware.org</a> to stay up to date with this developer</h3><br />
18
18
 
19
- [![Version](https://img.shields.io/badge/version-1.16.17-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;
19
+ [![Version](https://img.shields.io/badge/version-1.17.0-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;
20
20
  [![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with docusaurus](https://img.shields.io/badge/documented_with-docusaurus-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://docusaurus.io/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
21
21
 
22
22
  <h3 align="center" bold="true">⚠️ <b>Attention</b> ⚠️ This repository, and the apps, libraries, and tools contained within, is still in it's initial development phase. As a result, bugs and issues are expected with it's usage. When the main development phase completes, a proper release will be performed, the packages will be availible through NPM (and other distributions), and this message will be removed. However, in the meantime, please feel free to report any issues you may come across.</h3><br />
@@ -120,6 +120,47 @@ The following executor options are available:
120
120
 
121
121
 
122
122
 
123
+ ## Neutral TypeScript Builder
124
+
125
+ Runs a neutral platform TypeScript build
126
+
127
+ ### Example
128
+
129
+ This executor can be used by executing the following in a command line utility:
130
+
131
+ ```cmd
132
+ nx run my-project:tsup-neutral
133
+ ```
134
+
135
+ **Please note:** _The tsup-neutral executor should be included in the desired projects's `project.json` file._
136
+
137
+ ### Options
138
+
139
+ The following executor options are available:
140
+
141
+ | Option | Type | Description | Default |
142
+ | --------- | ------ | ------------- | --------- |
143
+ | transports | `string[]` | | `[]` |
144
+
145
+
146
+
147
+
148
+ ## Node TypeScript Builder
149
+
150
+ Runs a node platform TypeScript build
151
+
152
+ ### Example
153
+
154
+ This executor can be used by executing the following in a command line utility:
155
+
156
+ ```cmd
157
+ nx run my-project:tsup-node
158
+ ```
159
+
160
+ **Please note:** _The tsup-node executor should be included in the desired projects's `project.json` file._
161
+
162
+
163
+
123
164
  <!-- markdownlint-restore -->
124
165
  <!-- prettier-ignore-end -->
125
166
 
package/executors.json CHANGED
@@ -3,7 +3,18 @@
3
3
  "tsup": {
4
4
  "implementation": "./src/executors/tsup/executor",
5
5
  "schema": "./src/executors/tsup/schema.json",
6
- "description": "Run a build on the project using tsup configuration"
6
+ "description": "Run a build on the project using tsup configuration",
7
+ "internal": true
8
+ },
9
+ "tsup-neutral": {
10
+ "implementation": "./src/executors/tsup-neutral/executor",
11
+ "schema": "./src/executors/tsup-neutral/schema.json",
12
+ "description": "Runs a neutral platform TypeScript build"
13
+ },
14
+ "tsup-node": {
15
+ "implementation": "./src/executors/tsup-node/executor",
16
+ "schema": "./src/executors/tsup-node/schema.json",
17
+ "description": "Runs a node platform TypeScript build"
7
18
  }
8
19
  }
9
20
  }
package/generators.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "schema": "./src/generators/init/schema.json",
6
6
  "description": "Initialize the `@storm-software/workspace-tools` plugin.",
7
7
  "aliases": ["ng-add"],
8
- "hidden": true
8
+ "internal": true
9
9
  },
10
10
  "preset": {
11
11
  "factory": "./src/generators/preset/generator",
@@ -19,6 +19,11 @@
19
19
  "aliases": ["node-lib"],
20
20
  "x-type": "library",
21
21
  "description": "Generate a new node library project in the Storm workspace"
22
+ },
23
+ "config-schema": {
24
+ "factory": "./src/generators/config-schema/generator",
25
+ "schema": "./src/generators/config-schema/schema.json",
26
+ "description": "Create a Storm JSON schema based on the workspaces project configurations"
22
27
  }
23
28
  }
24
29
  }