create-storm-workspace 1.97.65 → 1.97.67

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
@@ -2,6 +2,23 @@
2
2
 
3
3
  # Changelog for Storm Ops - Create Storm Workspace
4
4
 
5
+ ## [1.97.66](https://github.com/storm-software/storm-ops/releases/tag/create-storm-workspace%401.97.66) (12/15/2025)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **monorepo:** Update workspace packages' dependencies
10
+ ([104422be0](https://github.com/storm-software/storm-ops/commit/104422be0))
11
+
12
+ ### Updated Dependencies
13
+
14
+ - Updated **config-tools** to **v1.188.66**
15
+
16
+ ## [1.97.65](https://github.com/storm-software/storm-ops/releases/tag/create-storm-workspace%401.97.65) (12/08/2025)
17
+
18
+ ### Updated Dependencies
19
+
20
+ - Updated **config-tools** to **v1.188.65**
21
+
5
22
  ## [1.97.64](https://github.com/storm-software/storm-ops/releases/tag/create-storm-workspace%401.97.64) (12/08/2025)
6
23
 
7
24
  ### Updated Dependencies
package/README.md CHANGED
@@ -27,7 +27,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
27
27
 
28
28
  <h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
29
29
 
30
- [![Version](https://img.shields.io/badge/version-1.97.56-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)
30
+ [![Version](https://img.shields.io/badge/version-1.97.66-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)
31
31
 
32
32
  <!-- prettier-ignore-start -->
33
33
  <!-- markdownlint-disable -->
@@ -46,6 +46,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
46
46
 
47
47
  <!-- START doctoc -->
48
48
  <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
49
+
49
50
  ## Table of Contents
50
51
 
51
52
  - [Create Storm Workspace](#create-storm-workspace)
package/bin/index.ts CHANGED
@@ -6,7 +6,7 @@ import {
6
6
  getStopwatch,
7
7
  writeFatal,
8
8
  writeInfo,
9
- writeSuccess,
9
+ writeSuccess
10
10
  } from "@storm-software/config-tools/logger/console";
11
11
  import { createWorkspace } from "create-nx-workspace";
12
12
  import { prompt } from "enquirer";
@@ -17,7 +17,7 @@ async function main() {
17
17
  try {
18
18
  writeInfo("⚡ Preparing to create the Storm Workspace", config);
19
19
 
20
- ["SIGTERM", "SIGINT", "SIGUSR2"].map((type) => {
20
+ ["SIGTERM", "SIGINT", "SIGUSR2"].map(type => {
21
21
  process.once(type, () => {
22
22
  try {
23
23
  console.info(`process.on ${type}`);
@@ -36,7 +36,7 @@ async function main() {
36
36
  const response = await prompt<{ name: string }>({
37
37
  type: "input",
38
38
  name: "name",
39
- message: "What is the name of the workspace?",
39
+ message: "What is the name of the workspace?"
40
40
  });
41
41
  name = response.name;
42
42
  }
@@ -47,7 +47,7 @@ async function main() {
47
47
  type: "input",
48
48
  name: "organization",
49
49
  message: "What organization owns this repository?",
50
- initial: "storm-software",
50
+ initial: "storm-software"
51
51
  });
52
52
  organization = response.organization;
53
53
  }
@@ -58,7 +58,7 @@ async function main() {
58
58
  type: "input",
59
59
  name: "namespace",
60
60
  message: "What is the namespace of this repository (npm scope)?",
61
- initial: organization ? organization : "storm-software",
61
+ initial: organization ? organization : "storm-software"
62
62
  });
63
63
  namespace = response.namespace;
64
64
  }
@@ -73,7 +73,7 @@ async function main() {
73
73
  name: "includeApps",
74
74
  message:
75
75
  "Should a separate `apps` folder be created for this workspace (if Yes: `apps` and `libs` folders will be added, if No: `packages` folders will be added)?",
76
- initial: false,
76
+ initial: false
77
77
  });
78
78
  includeApps = response.includeApps;
79
79
  }
@@ -88,7 +88,7 @@ async function main() {
88
88
  name: "includeRust",
89
89
  message:
90
90
  "Should Rust be included in the workspace (adds a `rust` folder with a `Cargo.toml` file)?",
91
- initial: false,
91
+ initial: false
92
92
  });
93
93
  includeRust = response.includeRust;
94
94
  }
@@ -102,7 +102,7 @@ async function main() {
102
102
  "Provide a description of the workspace to use in the package.json and README.md files.",
103
103
  initial: `⚡ The ${
104
104
  namespace ? namespace : name
105
- } monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.`,
105
+ } monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.`
106
106
  });
107
107
  description = response.description;
108
108
  }
@@ -113,7 +113,7 @@ async function main() {
113
113
  type: "input",
114
114
  name: "repositoryUrl",
115
115
  message: "What is the workspace's Git repository's URL?",
116
- initial: `https://github.com/${organization ? organization : "storm-software"}/${name}`,
116
+ initial: `https://github.com/${organization ? organization : "storm-software"}/${name}`
117
117
  });
118
118
  repositoryUrl = response.repositoryUrl;
119
119
  }
@@ -153,18 +153,18 @@ async function main() {
153
153
  defaultBase: "main",
154
154
  useGitHub: true,
155
155
  skipGit: false,
156
- cliName: "Storm Workspace Generator",
157
- },
156
+ cliName: "Storm Workspace Generator"
157
+ }
158
158
  );
159
159
 
160
160
  writeSuccess(
161
161
  `⚡ Successfully created the workspace: ${directory}.`,
162
- config,
162
+ config
163
163
  );
164
164
  } catch (error) {
165
165
  writeFatal(
166
166
  "❌ An error occurred while creating the workspace. Please correct the below issue:",
167
- config,
167
+ config
168
168
  );
169
169
  console.error(error);
170
170
  process.exit(1);