@storm-software/workspace-tools 1.5.4 → 1.5.6

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,17 @@
1
+ ## [1.5.5](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.5.4...workspace-tools-v1.5.5) (2023-11-08)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **workspace-tools:** Resolved issue with nx.json file in preset ([ce132a0](https://github.com/storm-software/storm-ops/commit/ce132a00334b9c6e6123c1302301b808212db4fb))
7
+
8
+ ## [1.5.4](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.5.3...workspace-tools-v1.5.4) (2023-11-08)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **workspace-tools:** Resolved issues with mismatching node/pnpm versions ([8f9d0dd](https://github.com/storm-software/storm-ops/commit/8f9d0ddf4391534ee60dee603a819bf95f8b859c))
14
+
1
15
  ## [1.5.3](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.5.2...workspace-tools-v1.5.3) (2023-11-07)
2
16
 
3
17
 
package/config/nx.json CHANGED
@@ -9,19 +9,7 @@
9
9
  },
10
10
  "tasksRunnerOptions": {
11
11
  "default": {
12
- "runner": "nx/tasks-runners/default",
13
- "options": {
14
- "cacheableOperations": [
15
- "build",
16
- "lint",
17
- "format",
18
- "test",
19
- "e2e",
20
- "build-storybook"
21
- ],
22
- "parallel": 5,
23
- "cacheDirectory": "node_modules/.cache/nx"
24
- }
12
+ "runner": "nx/tasks-runners/default"
25
13
  }
26
14
  },
27
15
  "pluginsConfig": {
@@ -118,16 +106,9 @@
118
106
  },
119
107
  "e2e": {
120
108
  "cache": true
121
- },
122
- "build-storybook": {
123
- "cache": true,
124
- "inputs": [
125
- "default",
126
- "^production",
127
- "!{projectRoot}/.storybook/**/*",
128
- "{projectRoot}/.storybook/**/*",
129
- "{projectRoot}/tsconfig.storybook.json"
130
- ]
131
109
  }
132
- }
110
+ },
111
+ "parallel": 4,
112
+ "cacheDirectory": "node_modules/.cache/nx",
113
+ "cacheableOperations": ["build", "lint", "format", "test", "e2e"]
133
114
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.5.4",
3
+ "version": "1.5.6",
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": [
@@ -6,9 +6,9 @@
6
6
 
7
7
  <br />
8
8
  <h1>@<%= namespace %>/<%= name %></h1>
9
- <%= descirption %>
9
+ <%= description %>
10
10
  <br /><br />
11
- <b>⚡ Storm Workspaces</b> are built using <a href="https://nx.dev/" target="_blank">Nx</a>, a set of extensible dev tools for monorepos, which helps you develop like Google, Facebook, and Microsoft. Building on top of Nx, the Open System provides a set of tools and patterns that help you scale your monorepo to many teams while keeping the codebase maintainable.
11
+ ⚡<b>Storm Workspaces</b> are built using <a href="https://nx.dev/" target="_blank">Nx</a>, a set of extensible dev tools for monorepos, which helps you develop like Google, Facebook, and Microsoft. Building on top of Nx, the Open System provides a set of tools and patterns that help you scale your monorepo to many teams while keeping the codebase maintainable.
12
12
 
13
13
  <h3 align="center">💻 Visit <a href="https://stormsoftware.org" target="_blank">stormsoftware.org</a> to stay up to date with this developer</h3><br />
14
14
 
@@ -80,10 +80,6 @@
80
80
  "type": "boolean",
81
81
  "description": "Should distributed caching with Nx Cloud be enabled for the workspace?",
82
82
  "default": false,
83
- "$default": {
84
- "$source": "argv",
85
- "index": 6
86
- },
87
83
  "x-prompt": "Should distributed caching with Nx Cloud be enabled for the workspace?"
88
84
  },
89
85
  "mode": {
@@ -91,10 +87,6 @@
91
87
  "description": "Which client mode should be used for the Nx Task Runner?",
92
88
  "default": "dark",
93
89
  "enum": ["light", "dark"],
94
- "$default": {
95
- "$source": "argv",
96
- "index": 7
97
- },
98
90
  "x-prompt": "Which client mode should be used for the Nx Task Runner?"
99
91
  },
100
92
  "packageManager": {