@storm-software/projen 0.15.41 → 0.15.43
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 +23 -0
- package/README.md +1 -1
- package/dist/{chunk-AC7GOCGF.js → chunk-5EYS5COY.js} +1 -2
- package/dist/{chunk-BLWDC52B.mjs → chunk-6B5O7UU7.mjs} +1 -2
- 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,29 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Projen
|
|
4
4
|
|
|
5
|
+
## [0.15.42](https://github.com/storm-software/storm-ops/releases/tag/projen%400.15.42) (2025-07-11)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Resolve issues with outdated `lefthook` schema
|
|
10
|
+
([16d0d2e99](https://github.com/storm-software/storm-ops/commit/16d0d2e99))
|
|
11
|
+
|
|
12
|
+
### Miscellaneous
|
|
13
|
+
|
|
14
|
+
- **monorepo:** Update the `pnpm-lock.yaml` file
|
|
15
|
+
([e24f8515a](https://github.com/storm-software/storm-ops/commit/e24f8515a))
|
|
16
|
+
- **monorepo:** Regenerate README markdown files
|
|
17
|
+
([111c8bf3c](https://github.com/storm-software/storm-ops/commit/111c8bf3c))
|
|
18
|
+
- **monorepo:** Regenerate README markdown files
|
|
19
|
+
([be8521423](https://github.com/storm-software/storm-ops/commit/be8521423))
|
|
20
|
+
|
|
21
|
+
## [0.15.41](https://github.com/storm-software/storm-ops/releases/tag/projen%400.15.41) (2025-07-11)
|
|
22
|
+
|
|
23
|
+
### Miscellaneous
|
|
24
|
+
|
|
25
|
+
- **monorepo:** Regenerate README markdown files
|
|
26
|
+
([c13e76556](https://github.com/storm-software/storm-ops/commit/c13e76556))
|
|
27
|
+
|
|
5
28
|
## [0.15.40](https://github.com/storm-software/storm-ops/releases/tag/projen%400.15.40) (2025-07-10)
|
|
6
29
|
|
|
7
30
|
### 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 -->
|
|
@@ -244,7 +244,6 @@ var organizationConfigSchema = z.object({
|
|
|
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"];
|
|
248
247
|
var stormWorkspaceConfigSchema = z.object({
|
|
249
248
|
$schema: z.string().trim().default(
|
|
250
249
|
"https://public.storm-cdn.com/schemas/storm-workspace.schema.json"
|
|
@@ -276,7 +275,7 @@ var stormWorkspaceConfigSchema = z.object({
|
|
|
276
275
|
release: WorkspaceReleaseConfigSchema,
|
|
277
276
|
socials: WorkspaceSocialsConfigSchema,
|
|
278
277
|
error: errorConfigSchema,
|
|
279
|
-
mode: z.
|
|
278
|
+
mode: z.string().trim().default("production").describe("The current runtime environment mode for the package"),
|
|
280
279
|
workspaceRoot: z.string().trim().describe("The root directory of the workspace"),
|
|
281
280
|
skipCache: z.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
282
281
|
directories: WorkspaceDirectoryConfigSchema,
|
|
@@ -245,7 +245,6 @@ var organizationConfigSchema = z.object({
|
|
|
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"];
|
|
249
248
|
var stormWorkspaceConfigSchema = z.object({
|
|
250
249
|
$schema: z.string().trim().default(
|
|
251
250
|
"https://public.storm-cdn.com/schemas/storm-workspace.schema.json"
|
|
@@ -277,7 +276,7 @@ var stormWorkspaceConfigSchema = z.object({
|
|
|
277
276
|
release: WorkspaceReleaseConfigSchema,
|
|
278
277
|
socials: WorkspaceSocialsConfigSchema,
|
|
279
278
|
error: errorConfigSchema,
|
|
280
|
-
mode: z.
|
|
279
|
+
mode: z.string().trim().default("production").describe("The current runtime environment mode for the package"),
|
|
281
280
|
workspaceRoot: z.string().trim().describe("The root directory of the workspace"),
|
|
282
281
|
skipCache: z.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
283
282
|
directories: WorkspaceDirectoryConfigSchema,
|
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.43",
|
|
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": "0ffb491f3a2f70a81789ffde3dce3dd911bc12a6"
|
|
146
146
|
}
|