@storm-software/workspace-tools 1.5.4 → 1.5.5
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/config/nx.json +4 -21
- package/package.json +1 -1
- package/src/generators/preset/schema.json +0 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.5.4](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.5.3...workspace-tools-v1.5.4) (2023-11-08)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **workspace-tools:** Resolved issues with mismatching node/pnpm versions ([8f9d0dd](https://github.com/storm-software/storm-ops/commit/8f9d0ddf4391534ee60dee603a819bf95f8b859c))
|
|
7
|
+
|
|
1
8
|
## [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
9
|
|
|
3
10
|
|
package/config/nx.json
CHANGED
|
@@ -11,16 +11,8 @@
|
|
|
11
11
|
"default": {
|
|
12
12
|
"runner": "nx/tasks-runners/default",
|
|
13
13
|
"options": {
|
|
14
|
-
"cacheableOperations": [
|
|
15
|
-
|
|
16
|
-
"lint",
|
|
17
|
-
"format",
|
|
18
|
-
"test",
|
|
19
|
-
"e2e",
|
|
20
|
-
"build-storybook"
|
|
21
|
-
],
|
|
22
|
-
"parallel": 5,
|
|
23
|
-
"cacheDirectory": "node_modules/.cache/nx"
|
|
14
|
+
"cacheableOperations": ["build", "lint", "format", "test", "e2e"],
|
|
15
|
+
"parallel": 5
|
|
24
16
|
}
|
|
25
17
|
}
|
|
26
18
|
},
|
|
@@ -118,16 +110,7 @@
|
|
|
118
110
|
},
|
|
119
111
|
"e2e": {
|
|
120
112
|
"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
113
|
}
|
|
132
|
-
}
|
|
114
|
+
},
|
|
115
|
+
"cacheDirectory": "node_modules/.cache/nx"
|
|
133
116
|
}
|
package/package.json
CHANGED
|
@@ -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": {
|