create-storm-workspace 1.81.8 → 1.82.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 +12 -0
- package/README.md +1 -1
- package/bin/index.ts +0 -19
- package/index.js +542 -449
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 1.82.0 (2025-01-20)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- **unbuild:** Update build process to use cached project graph ([610c94aa](https://github.com/storm-software/storm-ops/commit/610c94aa))
|
|
6
|
+
|
|
7
|
+
## 1.81.9 (2025-01-20)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- **create-storm-workspace:** Resolved issue with deprecated type depencency ([40a63618](https://github.com/storm-software/storm-ops/commit/40a63618))
|
|
12
|
+
|
|
1
13
|
## 1.81.8 (2025-01-13)
|
|
2
14
|
|
|
3
15
|
### Continuous Integration
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
package/bin/index.ts
CHANGED
|
@@ -8,7 +8,6 @@ import {
|
|
|
8
8
|
writeInfo,
|
|
9
9
|
writeSuccess
|
|
10
10
|
} from "@storm-software/config-tools/logger/console";
|
|
11
|
-
import type { NxClientMode } from "@storm-software/workspace-tools";
|
|
12
11
|
import { createWorkspace } from "create-nx-workspace";
|
|
13
12
|
import { prompt } from "enquirer";
|
|
14
13
|
|
|
@@ -134,24 +133,6 @@ async function main() {
|
|
|
134
133
|
// nxCloud = response.nxCloud;
|
|
135
134
|
// }
|
|
136
135
|
|
|
137
|
-
let mode: NxClientMode = (
|
|
138
|
-
process.argv.length > 9 ? process.argv[9] : null
|
|
139
|
-
) as NxClientMode;
|
|
140
|
-
if (!mode) {
|
|
141
|
-
mode = (
|
|
142
|
-
await prompt<{ mode: "light" | "dark" }>({
|
|
143
|
-
name: "mode",
|
|
144
|
-
message: "Which mode should be used?",
|
|
145
|
-
initial: "dark" as any,
|
|
146
|
-
type: "autocomplete",
|
|
147
|
-
choices: [
|
|
148
|
-
{ name: "light", message: "light" },
|
|
149
|
-
{ name: "dark", message: "dark" }
|
|
150
|
-
]
|
|
151
|
-
})
|
|
152
|
-
).mode;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
136
|
writeInfo(`⚡ Creating the Storm Workspace: ${name}`, config);
|
|
156
137
|
|
|
157
138
|
const version = getNpmPackageVersion("@storm-software/workspace-tools");
|