@storm-software/projen 0.15.28 → 0.15.29
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-GPPLEZ5J.mjs → chunk-2ETJSHUA.mjs} +9 -4
- package/dist/{chunk-LWINONZT.js → chunk-I5SSMFCF.js} +9 -4
- 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 +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Projen
|
|
4
4
|
|
|
5
|
+
## [0.15.28](https://github.com/storm-software/storm-ops/releases/tag/projen%400.15.28) (2025-06-20)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Update README markdown files
|
|
10
|
+
([90a90bfac](https://github.com/storm-software/storm-ops/commit/90a90bfac))
|
|
11
|
+
|
|
5
12
|
## [0.15.27](https://github.com/storm-software/storm-ops/releases/tag/projen%400.15.27) (2025-06-20)
|
|
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 -->
|
|
@@ -248,9 +248,9 @@ var organizationConfigSchema = z.object({
|
|
|
248
248
|
}).describe("The workspace's organization details");
|
|
249
249
|
var stormWorkspaceConfigSchema = z.object({
|
|
250
250
|
$schema: z.string().trim().default(
|
|
251
|
-
"https://
|
|
252
|
-
).
|
|
253
|
-
"The URL to the JSON schema file that describes the Storm configuration file"
|
|
251
|
+
"https://public.storm-cdn.com/schemas/storm-workspace.schema.json"
|
|
252
|
+
).describe(
|
|
253
|
+
"The URL or file path to the JSON schema file that describes the Storm configuration file"
|
|
254
254
|
),
|
|
255
255
|
extends: ExtendsSchema.optional(),
|
|
256
256
|
name: z.string().trim().toLowerCase().optional().describe(
|
|
@@ -3537,7 +3537,12 @@ async function configSchemaGeneratorFn(tree, options, config) {
|
|
|
3537
3537
|
`Determining the Storm Workspace Configuration JSON Schema...`,
|
|
3538
3538
|
config
|
|
3539
3539
|
);
|
|
3540
|
-
const jsonSchema = z2.toJSONSchema(stormWorkspaceConfigSchema
|
|
3540
|
+
const jsonSchema = z2.toJSONSchema(stormWorkspaceConfigSchema, {
|
|
3541
|
+
target: "draft-7"
|
|
3542
|
+
});
|
|
3543
|
+
jsonSchema.$id ??= "https://public.storm-cdn.com/schemas/storm-workspace.schema.json";
|
|
3544
|
+
jsonSchema.title ??= "Storm Workspace Configuration JSON Schema";
|
|
3545
|
+
jsonSchema.description ??= "This JSON Schema defines the structure of the Storm Workspace configuration file (`storm-workspace.json`). It is used to validate the configuration file and ensure that it adheres to the expected format.";
|
|
3541
3546
|
writeTrace(jsonSchema, config);
|
|
3542
3547
|
if (!options.outputFile) {
|
|
3543
3548
|
throw new Error(
|
|
@@ -247,9 +247,9 @@ var organizationConfigSchema = z.object({
|
|
|
247
247
|
}).describe("The workspace's organization details");
|
|
248
248
|
var stormWorkspaceConfigSchema = z.object({
|
|
249
249
|
$schema: z.string().trim().default(
|
|
250
|
-
"https://
|
|
251
|
-
).
|
|
252
|
-
"The URL to the JSON schema file that describes the Storm configuration file"
|
|
250
|
+
"https://public.storm-cdn.com/schemas/storm-workspace.schema.json"
|
|
251
|
+
).describe(
|
|
252
|
+
"The URL or file path to the JSON schema file that describes the Storm configuration file"
|
|
253
253
|
),
|
|
254
254
|
extends: ExtendsSchema.optional(),
|
|
255
255
|
name: z.string().trim().toLowerCase().optional().describe(
|
|
@@ -3536,7 +3536,12 @@ async function configSchemaGeneratorFn(tree, options, config) {
|
|
|
3536
3536
|
`Determining the Storm Workspace Configuration JSON Schema...`,
|
|
3537
3537
|
config
|
|
3538
3538
|
);
|
|
3539
|
-
const jsonSchema = z2.toJSONSchema(stormWorkspaceConfigSchema
|
|
3539
|
+
const jsonSchema = z2.toJSONSchema(stormWorkspaceConfigSchema, {
|
|
3540
|
+
target: "draft-7"
|
|
3541
|
+
});
|
|
3542
|
+
jsonSchema.$id ??= "https://public.storm-cdn.com/schemas/storm-workspace.schema.json";
|
|
3543
|
+
jsonSchema.title ??= "Storm Workspace Configuration JSON Schema";
|
|
3544
|
+
jsonSchema.description ??= "This JSON Schema defines the structure of the Storm Workspace configuration file (`storm-workspace.json`). It is used to validate the configuration file and ensure that it adheres to the expected format.";
|
|
3540
3545
|
writeTrace(jsonSchema, config);
|
|
3541
3546
|
if (!options.outputFile) {
|
|
3542
3547
|
throw new Error(
|
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 _chunkI5SSMFCFjs = require('./chunk-I5SSMFCF.js');
|
|
5
5
|
require('./chunk-LP4I3FEY.js');
|
|
6
6
|
require('./chunk-MWIFWHR4.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.initGeneratorFn =
|
|
9
|
+
exports.initGeneratorFn = _chunkI5SSMFCFjs.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 _chunkI5SSMFCFjs = require('./chunk-I5SSMFCF.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: () => _chunkI5SSMFCFjs.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 = _chunkI5SSMFCFjs.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 _chunkI5SSMFCFjs = require('../../../chunk-I5SSMFCF.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 = _chunkI5SSMFCFjs.generator_default; exports.initGeneratorFn = _chunkI5SSMFCFjs.initGeneratorFn;
|