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 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
- [![Version](https://img.shields.io/badge/version-1.81.8-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![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 Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&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)
24
+ [![Version](https://img.shields.io/badge/version-1.81.9-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![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 Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&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)
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");