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 +17 -0
- package/README.md +1 -1
- package/bin/index.ts +13 -13
- package/package.json +1 -1
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
|
-
[](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
|
@@ -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);
|