create-storm-workspace 1.85.26 → 1.85.28

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,20 @@
1
+ ## 1.85.28 (2025-02-04)
2
+
3
+ ### Bug Fixes
4
+
5
+ - **monorepo:** Resolve issue with inconsistent `chalk` versions ([e20742ea0](https://github.com/storm-software/storm-ops/commit/e20742ea0))
6
+
7
+ ## 1.85.27 (2025-02-04)
8
+
9
+ ### Bug Fixes
10
+
11
+ - **monorepo:** Resolved issue with invalid `prettier` config used in hooks ([34974919d](https://github.com/storm-software/storm-ops/commit/34974919d))
12
+
13
+ ### Miscellaneous
14
+
15
+ - **monorepo:** Reformat the repo's files ([f33b07626](https://github.com/storm-software/storm-ops/commit/f33b07626))
16
+ - **monorepo:** Regenerate README markdown files ([d147539be](https://github.com/storm-software/storm-ops/commit/d147539be))
17
+
1
18
  ## 1.85.26 (2025-02-03)
2
19
 
3
20
  ### Miscellaneous
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.85.25-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.85.27-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
@@ -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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-storm-workspace",
3
- "version": "1.85.26",
3
+ "version": "1.85.28",
4
4
  "type": "commonjs",
5
5
  "description": "⚡A CLI tool used to generate and fully configure a Storm Workspace repository.",
6
6
  "repository": {