@storm-software/workspace-tools 1.66.20 → 1.66.21

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,15 @@
1
+ ## 1.66.21 (2024-03-29)
2
+
3
+
4
+ ### 🩹 Fixes
5
+
6
+ - **workspace-tools:** Resolve issues applying Nx plugins ([7dd277e6](https://github.com/storm-software/storm-ops/commit/7dd277e6))
7
+
8
+
9
+ ### ❤️ Thank You
10
+
11
+ - Patrick Sullivan
12
+
1
13
  ## 1.66.20 (2024-03-29)
2
14
 
3
15
 
package/config/nx.json CHANGED
@@ -249,20 +249,6 @@
249
249
  "test",
250
250
  "^e2e"
251
251
  ]
252
- },
253
- "nx-release-publish": {
254
- "cache": false,
255
- "inputs": [
256
- "default",
257
- "^production"
258
- ],
259
- "outputs": [
260
- "{options.outputPath}"
261
- ],
262
- "dependsOn": [
263
- "test",
264
- "^nx-release-publish"
265
- ]
266
252
  }
267
253
  },
268
254
  "release": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.66.20",
3
+ "version": "1.66.21",
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": [
@@ -339,8 +339,6 @@ To fix this you will either need to add a package.json or Cargo.toml file at tha
339
339
  break;
340
340
  }
341
341
 
342
- // TODO: reevaluate this logic/workflow for independent projects
343
- //
344
342
  // Always assume that if the current version is a prerelease, then the next version should be a prerelease.
345
343
  // Users must manually graduate from a prerelease to a release by providing an explicit specifier.
346
344
  if (prerelease(currentVersion)) {
@@ -81,7 +81,7 @@ export const createNodes: CreateNodes = [
81
81
  targets["nx-release-publish"] = {
82
82
  cache: false,
83
83
  inputs: ["default", "^production"],
84
- dependsOn: ["test", "^nx-release-publish"],
84
+ dependsOn: ["test", "build", "^nx-release-publish"],
85
85
  executor: "@storm-software/workspace-tools:cargo-publish",
86
86
  options: {
87
87
  packageRoot: root
@@ -64,7 +64,7 @@ export const createNodes = [
64
64
  targets["nx-release-publish"] = {
65
65
  cache: false,
66
66
  inputs: ["default", "^production"],
67
- dependsOn: ["build", "^nx-release-publish"],
67
+ dependsOn: ["test", "build", "^nx-release-publish"],
68
68
  executor: "@storm-software/workspace-tools:npm-publish",
69
69
  options: {
70
70
  registry: "https://registry.npmjs.org/"