@storm-software/projen 0.15.40 → 0.15.42
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 +14 -0
- package/README.md +2 -1
- package/dist/{chunk-SD5X3BL2.js → chunk-5EYS5COY.js} +14 -14
- package/dist/{chunk-XU2WXX6A.mjs → chunk-6B5O7UU7.mjs} +15 -15
- package/dist/generators.js +2 -2
- package/dist/generators.mjs +1 -1
- package/dist/index.js +3 -3
- package/dist/index.mjs +1 -1
- package/dist/src/components/nx-workspace.js +2 -0
- package/dist/src/components/nx-workspace.mjs +2 -0
- package/dist/src/generators/init/generator.js +2 -2
- package/dist/src/generators/init/generator.mjs +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Projen
|
|
4
4
|
|
|
5
|
+
## [0.15.41](https://github.com/storm-software/storm-ops/releases/tag/projen%400.15.41) (2025-07-11)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Regenerate README markdown files
|
|
10
|
+
([c13e76556](https://github.com/storm-software/storm-ops/commit/c13e76556))
|
|
11
|
+
|
|
12
|
+
## [0.15.40](https://github.com/storm-software/storm-ops/releases/tag/projen%400.15.40) (2025-07-10)
|
|
13
|
+
|
|
14
|
+
### Miscellaneous
|
|
15
|
+
|
|
16
|
+
- **monorepo:** Regenerate workspace artifacts
|
|
17
|
+
([f45c14e5f](https://github.com/storm-software/storm-ops/commit/f45c14e5f))
|
|
18
|
+
|
|
5
19
|
## [0.15.39](https://github.com/storm-software/storm-ops/releases/tag/projen%400.15.39) (2025-07-10)
|
|
6
20
|
|
|
7
21
|
### 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 -->
|
|
@@ -40,6 +40,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
40
40
|
|
|
41
41
|
<!-- START doctoc -->
|
|
42
42
|
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
43
|
+
|
|
43
44
|
## Table of Contents
|
|
44
45
|
|
|
45
46
|
- [Storm Projen Tools](#storm-projen-tools)
|
|
@@ -94,7 +94,7 @@ _chunkMWIFWHR4js.init_cjs_shims.call(void 0, );
|
|
|
94
94
|
|
|
95
95
|
// ../config/src/schema.ts
|
|
96
96
|
_chunkMWIFWHR4js.init_cjs_shims.call(void 0, );
|
|
97
|
-
var
|
|
97
|
+
var _zod = require('zod'); var z = _interopRequireWildcard(_zod); var z2 = _interopRequireWildcard(_zod);
|
|
98
98
|
var DarkColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#1d1e22").describe("The dark background color of the workspace");
|
|
99
99
|
var LightColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#f4f4f5").describe("The light background color of the workspace");
|
|
100
100
|
var BrandColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#1fb2a6").describe("The primary brand specific color of the workspace");
|
|
@@ -161,7 +161,7 @@ var SingleThemeColorConfigSchema = z.object({
|
|
|
161
161
|
positive: PositiveColorSchema,
|
|
162
162
|
negative: NegativeColorSchema
|
|
163
163
|
});
|
|
164
|
-
var RegistryUrlConfigSchema = z.
|
|
164
|
+
var RegistryUrlConfigSchema = z.url().optional().describe("A remote registry URL used to publish distributable packages");
|
|
165
165
|
var RegistryConfigSchema = z.object({
|
|
166
166
|
github: RegistryUrlConfigSchema,
|
|
167
167
|
npm: RegistryUrlConfigSchema,
|
|
@@ -188,7 +188,7 @@ var WorkspaceBotConfigSchema = z.object({
|
|
|
188
188
|
name: z.string().trim().default("stormie-bot").describe(
|
|
189
189
|
"The workspace bot user's name (this is the bot that will be used to perform various tasks)"
|
|
190
190
|
),
|
|
191
|
-
email: z.
|
|
191
|
+
email: z.email().default("bot@stormsoftware.com").describe("The email of the workspace bot")
|
|
192
192
|
}).describe(
|
|
193
193
|
"The workspace's bot user's config used to automated various operations tasks"
|
|
194
194
|
);
|
|
@@ -231,16 +231,16 @@ var WorkspaceDirectoryConfigSchema = z.object({
|
|
|
231
231
|
);
|
|
232
232
|
var errorConfigSchema = z.object({
|
|
233
233
|
codesFile: z.string().trim().default(STORM_DEFAULT_ERROR_CODES_FILE).describe("The path to the workspace's error codes JSON file"),
|
|
234
|
-
url: z.
|
|
234
|
+
url: z.url().optional().describe(
|
|
235
235
|
"A URL to a page that looks up the workspace's error messages given a specific error code"
|
|
236
236
|
)
|
|
237
237
|
}).describe("The workspace's error config used during the error process");
|
|
238
238
|
var organizationConfigSchema = z.object({
|
|
239
239
|
name: z.string().trim().describe("The name of the organization"),
|
|
240
240
|
description: z.string().trim().optional().describe("A description of the organization"),
|
|
241
|
-
logo: z.
|
|
242
|
-
icon: z.
|
|
243
|
-
url: z.
|
|
241
|
+
logo: z.url().optional().describe("A URL to the organization's logo image"),
|
|
242
|
+
icon: z.url().optional().describe("A URL to the organization's icon image"),
|
|
243
|
+
url: z.url().optional().describe(
|
|
244
244
|
"A URL to a page that provides more information about the organization"
|
|
245
245
|
)
|
|
246
246
|
}).describe("The workspace's organization details");
|
|
@@ -260,12 +260,12 @@ var stormWorkspaceConfigSchema = z.object({
|
|
|
260
260
|
),
|
|
261
261
|
repository: z.string().trim().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
262
262
|
license: z.string().trim().default("Apache-2.0").describe("The license type of the package"),
|
|
263
|
-
homepage: z.
|
|
264
|
-
docs: z.
|
|
265
|
-
portal: z.
|
|
266
|
-
licensing: z.
|
|
267
|
-
contact: z.
|
|
268
|
-
support: z.
|
|
263
|
+
homepage: z.url().optional().describe("The homepage of the workspace"),
|
|
264
|
+
docs: z.url().optional().describe("The documentation site for the workspace"),
|
|
265
|
+
portal: z.url().optional().describe("The development portal site for the workspace"),
|
|
266
|
+
licensing: z.url().optional().describe("The licensing site for the workspace"),
|
|
267
|
+
contact: z.url().optional().describe("The contact site for the workspace"),
|
|
268
|
+
support: z.url().optional().describe(
|
|
269
269
|
"The support site for the workspace. If not provided, this is defaulted to the `contact` config value"
|
|
270
270
|
),
|
|
271
271
|
branch: z.string().trim().default("main").describe("The branch of the workspace"),
|
|
@@ -275,7 +275,7 @@ var stormWorkspaceConfigSchema = z.object({
|
|
|
275
275
|
release: WorkspaceReleaseConfigSchema,
|
|
276
276
|
socials: WorkspaceSocialsConfigSchema,
|
|
277
277
|
error: errorConfigSchema,
|
|
278
|
-
mode: z.
|
|
278
|
+
mode: z.string().trim().default("production").describe("The current runtime environment mode for the package"),
|
|
279
279
|
workspaceRoot: z.string().trim().describe("The root directory of the workspace"),
|
|
280
280
|
skipCache: z.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
281
281
|
directories: WorkspaceDirectoryConfigSchema,
|
|
@@ -95,7 +95,7 @@ init_esm_shims();
|
|
|
95
95
|
|
|
96
96
|
// ../config/src/schema.ts
|
|
97
97
|
init_esm_shims();
|
|
98
|
-
import * as z from "zod
|
|
98
|
+
import * as z from "zod";
|
|
99
99
|
var DarkColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#1d1e22").describe("The dark background color of the workspace");
|
|
100
100
|
var LightColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#f4f4f5").describe("The light background color of the workspace");
|
|
101
101
|
var BrandColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#1fb2a6").describe("The primary brand specific color of the workspace");
|
|
@@ -162,7 +162,7 @@ var SingleThemeColorConfigSchema = z.object({
|
|
|
162
162
|
positive: PositiveColorSchema,
|
|
163
163
|
negative: NegativeColorSchema
|
|
164
164
|
});
|
|
165
|
-
var RegistryUrlConfigSchema = z.
|
|
165
|
+
var RegistryUrlConfigSchema = z.url().optional().describe("A remote registry URL used to publish distributable packages");
|
|
166
166
|
var RegistryConfigSchema = z.object({
|
|
167
167
|
github: RegistryUrlConfigSchema,
|
|
168
168
|
npm: RegistryUrlConfigSchema,
|
|
@@ -189,7 +189,7 @@ var WorkspaceBotConfigSchema = z.object({
|
|
|
189
189
|
name: z.string().trim().default("stormie-bot").describe(
|
|
190
190
|
"The workspace bot user's name (this is the bot that will be used to perform various tasks)"
|
|
191
191
|
),
|
|
192
|
-
email: z.
|
|
192
|
+
email: z.email().default("bot@stormsoftware.com").describe("The email of the workspace bot")
|
|
193
193
|
}).describe(
|
|
194
194
|
"The workspace's bot user's config used to automated various operations tasks"
|
|
195
195
|
);
|
|
@@ -232,16 +232,16 @@ var WorkspaceDirectoryConfigSchema = z.object({
|
|
|
232
232
|
);
|
|
233
233
|
var errorConfigSchema = z.object({
|
|
234
234
|
codesFile: z.string().trim().default(STORM_DEFAULT_ERROR_CODES_FILE).describe("The path to the workspace's error codes JSON file"),
|
|
235
|
-
url: z.
|
|
235
|
+
url: z.url().optional().describe(
|
|
236
236
|
"A URL to a page that looks up the workspace's error messages given a specific error code"
|
|
237
237
|
)
|
|
238
238
|
}).describe("The workspace's error config used during the error process");
|
|
239
239
|
var organizationConfigSchema = z.object({
|
|
240
240
|
name: z.string().trim().describe("The name of the organization"),
|
|
241
241
|
description: z.string().trim().optional().describe("A description of the organization"),
|
|
242
|
-
logo: z.
|
|
243
|
-
icon: z.
|
|
244
|
-
url: z.
|
|
242
|
+
logo: z.url().optional().describe("A URL to the organization's logo image"),
|
|
243
|
+
icon: z.url().optional().describe("A URL to the organization's icon image"),
|
|
244
|
+
url: z.url().optional().describe(
|
|
245
245
|
"A URL to a page that provides more information about the organization"
|
|
246
246
|
)
|
|
247
247
|
}).describe("The workspace's organization details");
|
|
@@ -261,12 +261,12 @@ var stormWorkspaceConfigSchema = z.object({
|
|
|
261
261
|
),
|
|
262
262
|
repository: z.string().trim().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
263
263
|
license: z.string().trim().default("Apache-2.0").describe("The license type of the package"),
|
|
264
|
-
homepage: z.
|
|
265
|
-
docs: z.
|
|
266
|
-
portal: z.
|
|
267
|
-
licensing: z.
|
|
268
|
-
contact: z.
|
|
269
|
-
support: z.
|
|
264
|
+
homepage: z.url().optional().describe("The homepage of the workspace"),
|
|
265
|
+
docs: z.url().optional().describe("The documentation site for the workspace"),
|
|
266
|
+
portal: z.url().optional().describe("The development portal site for the workspace"),
|
|
267
|
+
licensing: z.url().optional().describe("The licensing site for the workspace"),
|
|
268
|
+
contact: z.url().optional().describe("The contact site for the workspace"),
|
|
269
|
+
support: z.url().optional().describe(
|
|
270
270
|
"The support site for the workspace. If not provided, this is defaulted to the `contact` config value"
|
|
271
271
|
),
|
|
272
272
|
branch: z.string().trim().default("main").describe("The branch of the workspace"),
|
|
@@ -276,7 +276,7 @@ var stormWorkspaceConfigSchema = z.object({
|
|
|
276
276
|
release: WorkspaceReleaseConfigSchema,
|
|
277
277
|
socials: WorkspaceSocialsConfigSchema,
|
|
278
278
|
error: errorConfigSchema,
|
|
279
|
-
mode: z.
|
|
279
|
+
mode: z.string().trim().default("production").describe("The current runtime environment mode for the package"),
|
|
280
280
|
workspaceRoot: z.string().trim().describe("The root directory of the workspace"),
|
|
281
281
|
skipCache: z.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
282
282
|
directories: WorkspaceDirectoryConfigSchema,
|
|
@@ -3546,7 +3546,7 @@ var generator_default = withRunGenerator(
|
|
|
3546
3546
|
// ../workspace-tools/src/generators/config-schema/generator.ts
|
|
3547
3547
|
init_esm_shims();
|
|
3548
3548
|
import { formatFiles as formatFiles3, writeJson as writeJson2 } from "@nx/devkit";
|
|
3549
|
-
import * as z2 from "zod
|
|
3549
|
+
import * as z2 from "zod";
|
|
3550
3550
|
async function configSchemaGeneratorFn(tree, options, config) {
|
|
3551
3551
|
writeInfo(
|
|
3552
3552
|
"\u{1F4E6} Running Storm Workspace Configuration JSON Schema generator",
|
package/dist/generators.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-3MCIDYYV.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunk5EYS5COYjs = require('./chunk-5EYS5COY.js');
|
|
5
5
|
require('./chunk-LP4I3FEY.js');
|
|
6
6
|
require('./chunk-MWIFWHR4.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.initGeneratorFn =
|
|
9
|
+
exports.initGeneratorFn = _chunk5EYS5COYjs.initGeneratorFn;
|
package/dist/generators.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
var _chunkKFR27Y3Kjs = require('./chunk-KFR27Y3K.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunk5EYS5COYjs = require('./chunk-5EYS5COY.js');
|
|
8
8
|
require('./chunk-LP4I3FEY.js');
|
|
9
9
|
|
|
10
10
|
|
|
@@ -16,10 +16,10 @@ var _chunkMWIFWHR4js = require('./chunk-MWIFWHR4.js');
|
|
|
16
16
|
// index.ts
|
|
17
17
|
var index_exports = {};
|
|
18
18
|
_chunkMWIFWHR4js.__export.call(void 0, index_exports, {
|
|
19
|
-
initGeneratorFn: () =>
|
|
19
|
+
initGeneratorFn: () => _chunk5EYS5COYjs.initGeneratorFn
|
|
20
20
|
});
|
|
21
21
|
_chunkMWIFWHR4js.init_cjs_shims.call(void 0, );
|
|
22
22
|
_chunkMWIFWHR4js.__reExport.call(void 0, index_exports, _chunkMWIFWHR4js.__toESM.call(void 0, _chunkKFR27Y3Kjs.require_components.call(void 0, )));
|
|
23
23
|
|
|
24
24
|
|
|
25
|
-
exports.initGeneratorFn =
|
|
25
|
+
exports.initGeneratorFn = _chunk5EYS5COYjs.initGeneratorFn;
|
package/dist/index.mjs
CHANGED
|
@@ -224,6 +224,7 @@ var StormNxWorkspace = (_class = class extends _nxworkspace.NxWorkspace {
|
|
|
224
224
|
"{workspaceRoot}/biome.toml",
|
|
225
225
|
"{workspaceRoot}/biome.json",
|
|
226
226
|
"{workspaceRoot}/lefthook.yaml",
|
|
227
|
+
"{workspaceRoot}/lefthook.json",
|
|
227
228
|
"{workspaceRoot}/.markdownlint.json",
|
|
228
229
|
"{workspaceRoot}/.markdownlint-cli2.cjs",
|
|
229
230
|
"{workspaceRoot}/.prettierrc",
|
|
@@ -244,6 +245,7 @@ var StormNxWorkspace = (_class = class extends _nxworkspace.NxWorkspace {
|
|
|
244
245
|
"{projectRoot}/biome.toml",
|
|
245
246
|
"{projectRoot}/biome.json",
|
|
246
247
|
"{projectRoot}/lefthook.yaml",
|
|
248
|
+
"{projectRoot}/lefthook.json",
|
|
247
249
|
"{projectRoot}/.markdownlint.json",
|
|
248
250
|
"{projectRoot}/.markdownlint-cli2.cjs",
|
|
249
251
|
"{projectRoot}/.prettierrc",
|
|
@@ -224,6 +224,7 @@ var StormNxWorkspace = class extends NxWorkspace {
|
|
|
224
224
|
"{workspaceRoot}/biome.toml",
|
|
225
225
|
"{workspaceRoot}/biome.json",
|
|
226
226
|
"{workspaceRoot}/lefthook.yaml",
|
|
227
|
+
"{workspaceRoot}/lefthook.json",
|
|
227
228
|
"{workspaceRoot}/.markdownlint.json",
|
|
228
229
|
"{workspaceRoot}/.markdownlint-cli2.cjs",
|
|
229
230
|
"{workspaceRoot}/.prettierrc",
|
|
@@ -244,6 +245,7 @@ var StormNxWorkspace = class extends NxWorkspace {
|
|
|
244
245
|
"{projectRoot}/biome.toml",
|
|
245
246
|
"{projectRoot}/biome.json",
|
|
246
247
|
"{projectRoot}/lefthook.yaml",
|
|
248
|
+
"{projectRoot}/lefthook.json",
|
|
247
249
|
"{projectRoot}/.markdownlint.json",
|
|
248
250
|
"{projectRoot}/.markdownlint-cli2.cjs",
|
|
249
251
|
"{projectRoot}/.prettierrc",
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunk5EYS5COYjs = require('../../../chunk-5EYS5COY.js');
|
|
5
5
|
require('../../../chunk-LP4I3FEY.js');
|
|
6
6
|
require('../../../chunk-MWIFWHR4.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
exports.default =
|
|
10
|
+
exports.default = _chunk5EYS5COYjs.generator_default; exports.initGeneratorFn = _chunk5EYS5COYjs.initGeneratorFn;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/projen",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.42",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"description": "Tools for managing Projen configuration automation within a Nx workspace.",
|
|
6
6
|
"repository": {
|
|
@@ -142,5 +142,5 @@
|
|
|
142
142
|
"publishConfig": { "access": "public" },
|
|
143
143
|
"executors": "./executors.json",
|
|
144
144
|
"generators": "./generators.json",
|
|
145
|
-
"gitHead": "
|
|
145
|
+
"gitHead": "15cfb513f5ab6c76341888e008ba62b88bcd05af"
|
|
146
146
|
}
|