@storm-software/projen 0.15.40 → 0.15.41
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 +7 -0
- package/README.md +1 -1
- package/dist/{chunk-SD5X3BL2.js → chunk-AC7GOCGF.js} +15 -14
- package/dist/{chunk-XU2WXX6A.mjs → chunk-BLWDC52B.mjs} +16 -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/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,13 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Projen
|
|
4
4
|
|
|
5
|
+
## [0.15.40](https://github.com/storm-software/storm-ops/releases/tag/projen%400.15.40) (2025-07-10)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Regenerate workspace artifacts
|
|
10
|
+
([f45c14e5f](https://github.com/storm-software/storm-ops/commit/f45c14e5f))
|
|
11
|
+
|
|
5
12
|
## [0.15.39](https://github.com/storm-software/storm-ops/releases/tag/projen%400.15.39) (2025-07-10)
|
|
6
13
|
|
|
7
14
|
### 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 -->
|
|
@@ -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,19 +231,20 @@ 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");
|
|
247
|
+
var MODE_OPTIONS = ["development", "staging", "production"];
|
|
247
248
|
var stormWorkspaceConfigSchema = z.object({
|
|
248
249
|
$schema: z.string().trim().default(
|
|
249
250
|
"https://public.storm-cdn.com/schemas/storm-workspace.schema.json"
|
|
@@ -260,12 +261,12 @@ var stormWorkspaceConfigSchema = z.object({
|
|
|
260
261
|
),
|
|
261
262
|
repository: z.string().trim().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
262
263
|
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.
|
|
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(
|
|
269
270
|
"The support site for the workspace. If not provided, this is defaulted to the `contact` config value"
|
|
270
271
|
),
|
|
271
272
|
branch: z.string().trim().default("main").describe("The branch of the workspace"),
|
|
@@ -275,7 +276,7 @@ var stormWorkspaceConfigSchema = z.object({
|
|
|
275
276
|
release: WorkspaceReleaseConfigSchema,
|
|
276
277
|
socials: WorkspaceSocialsConfigSchema,
|
|
277
278
|
error: errorConfigSchema,
|
|
278
|
-
mode: z.enum(
|
|
279
|
+
mode: z.enum(MODE_OPTIONS).prefault("production").describe("The current runtime environment mode for the package"),
|
|
279
280
|
workspaceRoot: z.string().trim().describe("The root directory of the workspace"),
|
|
280
281
|
skipCache: z.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
281
282
|
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,19 +232,20 @@ 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");
|
|
248
|
+
var MODE_OPTIONS = ["development", "staging", "production"];
|
|
248
249
|
var stormWorkspaceConfigSchema = z.object({
|
|
249
250
|
$schema: z.string().trim().default(
|
|
250
251
|
"https://public.storm-cdn.com/schemas/storm-workspace.schema.json"
|
|
@@ -261,12 +262,12 @@ var stormWorkspaceConfigSchema = z.object({
|
|
|
261
262
|
),
|
|
262
263
|
repository: z.string().trim().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
263
264
|
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.
|
|
265
|
+
homepage: z.url().optional().describe("The homepage of the workspace"),
|
|
266
|
+
docs: z.url().optional().describe("The documentation site for the workspace"),
|
|
267
|
+
portal: z.url().optional().describe("The development portal site for the workspace"),
|
|
268
|
+
licensing: z.url().optional().describe("The licensing site for the workspace"),
|
|
269
|
+
contact: z.url().optional().describe("The contact site for the workspace"),
|
|
270
|
+
support: z.url().optional().describe(
|
|
270
271
|
"The support site for the workspace. If not provided, this is defaulted to the `contact` config value"
|
|
271
272
|
),
|
|
272
273
|
branch: z.string().trim().default("main").describe("The branch of the workspace"),
|
|
@@ -276,7 +277,7 @@ var stormWorkspaceConfigSchema = z.object({
|
|
|
276
277
|
release: WorkspaceReleaseConfigSchema,
|
|
277
278
|
socials: WorkspaceSocialsConfigSchema,
|
|
278
279
|
error: errorConfigSchema,
|
|
279
|
-
mode: z.enum(
|
|
280
|
+
mode: z.enum(MODE_OPTIONS).prefault("production").describe("The current runtime environment mode for the package"),
|
|
280
281
|
workspaceRoot: z.string().trim().describe("The root directory of the workspace"),
|
|
281
282
|
skipCache: z.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
282
283
|
directories: WorkspaceDirectoryConfigSchema,
|
|
@@ -3546,7 +3547,7 @@ var generator_default = withRunGenerator(
|
|
|
3546
3547
|
// ../workspace-tools/src/generators/config-schema/generator.ts
|
|
3547
3548
|
init_esm_shims();
|
|
3548
3549
|
import { formatFiles as formatFiles3, writeJson as writeJson2 } from "@nx/devkit";
|
|
3549
|
-
import * as z2 from "zod
|
|
3550
|
+
import * as z2 from "zod";
|
|
3550
3551
|
async function configSchemaGeneratorFn(tree, options, config) {
|
|
3551
3552
|
writeInfo(
|
|
3552
3553
|
"\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 _chunkAC7GOCGFjs = require('./chunk-AC7GOCGF.js');
|
|
5
5
|
require('./chunk-LP4I3FEY.js');
|
|
6
6
|
require('./chunk-MWIFWHR4.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.initGeneratorFn =
|
|
9
|
+
exports.initGeneratorFn = _chunkAC7GOCGFjs.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 _chunkAC7GOCGFjs = require('./chunk-AC7GOCGF.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: () => _chunkAC7GOCGFjs.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 = _chunkAC7GOCGFjs.initGeneratorFn;
|
package/dist/index.mjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkAC7GOCGFjs = require('../../../chunk-AC7GOCGF.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 = _chunkAC7GOCGFjs.generator_default; exports.initGeneratorFn = _chunkAC7GOCGFjs.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.41",
|
|
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": "56f060816d1082fefc318aa1b65294279c0bfdcd"
|
|
146
146
|
}
|