@storm-software/projen 0.9.12 → 0.9.14

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 CHANGED
@@ -1,3 +1,20 @@
1
+ ## 0.9.14 (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
+ ## 0.9.13 (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
  ## 0.9.12 (2025-02-03)
2
19
 
3
20
  ### Miscellaneous
@@ -111,4 +128,4 @@
111
128
 
112
129
  ### Bug Fixes
113
130
 
114
- - **projen:** Resolve build issue with init generator schema ([94a9f01a](https://github.com/storm-software/storm-ops/commit/94a9f01a))
131
+ - **projen:** Resolve build issue with init generator schema ([94a9f01a](https://github.com/storm-software/storm-ops/commit/94a9f01a))
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
- [![Version](https://img.shields.io/badge/version-0.9.11-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
24
+ [![Version](https://img.shields.io/badge/version-0.9.13-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
25
25
 
26
26
  <!-- prettier-ignore-start -->
27
27
  <!-- markdownlint-disable -->
@@ -154,7 +154,7 @@ var RegistryConfigSchema = z.object({
154
154
  var ColorConfigSchema = SingleThemeColorConfigSchema.or(MultiThemeColorConfigSchema).describe("Colors used for various workspace elements");
155
155
  var ColorConfigMapSchema = z.union([
156
156
  z.object({
157
- "base": ColorConfigSchema
157
+ base: ColorConfigSchema
158
158
  }),
159
159
  z.record(z.string(), ColorConfigSchema)
160
160
  ]);
@@ -335,31 +335,31 @@ __name(findWorkspaceRoot, "findWorkspaceRoot");
335
335
 
336
336
  // ../config-tools/src/utilities/get-default-config.ts
337
337
  var DEFAULT_COLOR_CONFIG = {
338
- "light": {
339
- "background": "#fafafa",
340
- "foreground": "#1d1e22",
341
- "brand": "#1fb2a6",
342
- "alternate": "#db2777",
343
- "help": "#5C4EE5",
344
- "success": "#087f5b",
345
- "info": "#0550ae",
346
- "warning": "#e3b341",
347
- "danger": "#D8314A",
348
- "positive": "#22c55e",
349
- "negative": "#dc2626"
338
+ light: {
339
+ background: "#fafafa",
340
+ foreground: "#1d1e22",
341
+ brand: "#1fb2a6",
342
+ alternate: "#db2777",
343
+ help: "#5C4EE5",
344
+ success: "#087f5b",
345
+ info: "#0550ae",
346
+ warning: "#e3b341",
347
+ danger: "#D8314A",
348
+ positive: "#22c55e",
349
+ negative: "#dc2626"
350
350
  },
351
- "dark": {
352
- "background": "#1d1e22",
353
- "foreground": "#cbd5e1",
354
- "brand": "#2dd4bf",
355
- "alternate": "#db2777",
356
- "help": "#818cf8",
357
- "success": "#10b981",
358
- "info": "#58a6ff",
359
- "warning": "#f3d371",
360
- "danger": "#D8314A",
361
- "positive": "#22c55e",
362
- "negative": "#dc2626"
351
+ dark: {
352
+ background: "#1d1e22",
353
+ foreground: "#cbd5e1",
354
+ brand: "#2dd4bf",
355
+ alternate: "#db2777",
356
+ help: "#818cf8",
357
+ success: "#10b981",
358
+ info: "#58a6ff",
359
+ warning: "#f3d371",
360
+ danger: "#D8314A",
361
+ positive: "#22c55e",
362
+ negative: "#dc2626"
363
363
  }
364
364
  };
365
365
  var getDefaultConfig = /* @__PURE__ */ __name(async (root) => {
@@ -1796,17 +1796,17 @@ var addPackageJsonExport = /* @__PURE__ */ __name((file, type = "module", source
1796
1796
  entry = entry.replace(sourceRoot, "");
1797
1797
  }
1798
1798
  return {
1799
- "import": {
1800
- "types": `./dist/${entry}.d.${type === "module" ? "ts" : "mts"}`,
1801
- "default": `./dist/${entry}.${type === "module" ? "js" : "mjs"}`
1799
+ import: {
1800
+ types: `./dist/${entry}.d.${type === "module" ? "ts" : "mts"}`,
1801
+ default: `./dist/${entry}.${type === "module" ? "js" : "mjs"}`
1802
1802
  },
1803
- "require": {
1804
- "types": `./dist/${entry}.d.${type === "commonjs" ? "ts" : "cts"}`,
1805
- "default": `./dist/${entry}.${type === "commonjs" ? "js" : "cjs"}`
1803
+ require: {
1804
+ types: `./dist/${entry}.d.${type === "commonjs" ? "ts" : "cts"}`,
1805
+ default: `./dist/${entry}.${type === "commonjs" ? "js" : "cjs"}`
1806
1806
  },
1807
- "default": {
1808
- "types": `./dist/${entry}.d.ts`,
1809
- "default": `./dist/${entry}.js`
1807
+ default: {
1808
+ types: `./dist/${entry}.d.ts`,
1809
+ default: `./dist/${entry}.js`
1810
1810
  }
1811
1811
  };
1812
1812
  }, "addPackageJsonExport");
@@ -2284,7 +2284,6 @@ function bundleTypeDefinitions(filename, outfile, externals, options) {
2284
2284
  overrideTsconfig: {
2285
2285
  compilerOptions: {
2286
2286
  paths: {}
2287
- // bug with api extract + paths
2288
2287
  }
2289
2288
  }
2290
2289
  },
@@ -4053,14 +4052,14 @@ async function presetGeneratorFn(tree, options) {
4053
4052
  };
4054
4053
  json.maintainers ??= [
4055
4054
  {
4056
- "name": "Storm Software",
4057
- "email": "contact@stormsoftware.com",
4058
- "url": "https://stormsoftware.com"
4055
+ name: "Storm Software",
4056
+ email: "contact@stormsoftware.com",
4057
+ url: "https://stormsoftware.com"
4059
4058
  },
4060
4059
  {
4061
- "name": "Pat Sullivan",
4062
- "email": "admin@stormsoftware.com",
4063
- "url": "https://patsullivan.org"
4060
+ name: "Pat Sullivan",
4061
+ email: "admin@stormsoftware.com",
4062
+ url: "https://patsullivan.org"
4064
4063
  }
4065
4064
  ];
4066
4065
  json.funding ??= {
@@ -4076,12 +4075,12 @@ async function presetGeneratorFn(tree, options) {
4076
4075
  };
4077
4076
  json.packageManager ??= "pnpm@9.15.2";
4078
4077
  json.engines ??= {
4079
- "node": ">=20.11.0",
4080
- "pnpm": ">=9.15.2"
4078
+ node: ">=20.11.0",
4079
+ pnpm: ">=9.15.2"
4081
4080
  };
4082
4081
  json.prettier = "@storm-software/prettier/config.json";
4083
4082
  json.nx ??= {
4084
- "includedScripts": [
4083
+ includedScripts: [
4085
4084
  "lint-sherif",
4086
4085
  "lint-knip",
4087
4086
  "lint-ls",
@@ -4175,22 +4174,22 @@ async function presetGeneratorFn(tree, options) {
4175
4174
  "@storm-software/prettier": "latest",
4176
4175
  "@taplo/cli": "0.7.0",
4177
4176
  "@types/node": "^20.14.10",
4178
- "copyfiles": "2.4.1",
4179
- "eslint": "9.5.0",
4180
- "jest": "29.7.0",
4177
+ copyfiles: "2.4.1",
4178
+ eslint: "9.5.0",
4179
+ jest: "29.7.0",
4181
4180
  "jest-environment-node": "29.7.0",
4182
- "knip": "5.25.2",
4183
- "lefthook": "1.6.18",
4184
- "nx": "^20.2.2",
4185
- "prettier": "3.3.2",
4181
+ knip: "5.25.2",
4182
+ lefthook: "1.6.18",
4183
+ nx: "^20.2.2",
4184
+ prettier: "3.3.2",
4186
4185
  "prettier-plugin-prisma": "5.0.0",
4187
- "rimraf": "5.0.7",
4188
- "sherif": "0.10.0",
4186
+ rimraf: "5.0.7",
4187
+ sherif: "0.10.0",
4189
4188
  "ts-jest": "29.1.5",
4190
4189
  "ts-node": "10.9.2",
4191
- "tslib": "2.6.3",
4192
- "typescript": "5.5.3",
4193
- "verdaccio": "5.31.1"
4190
+ tslib: "2.6.3",
4191
+ typescript: "5.5.3",
4192
+ verdaccio: "5.31.1"
4194
4193
  };
4195
4194
  if (options.includeApps) {
4196
4195
  dependencies = {
@@ -153,7 +153,7 @@ var RegistryConfigSchema = _zod2.default.object({
153
153
  var ColorConfigSchema = SingleThemeColorConfigSchema.or(MultiThemeColorConfigSchema).describe("Colors used for various workspace elements");
154
154
  var ColorConfigMapSchema = _zod2.default.union([
155
155
  _zod2.default.object({
156
- "base": ColorConfigSchema
156
+ base: ColorConfigSchema
157
157
  }),
158
158
  _zod2.default.record(_zod2.default.string(), ColorConfigSchema)
159
159
  ]);
@@ -334,31 +334,31 @@ _chunkZH7QZ5EFjs.__name.call(void 0, findWorkspaceRoot, "findWorkspaceRoot");
334
334
 
335
335
  // ../config-tools/src/utilities/get-default-config.ts
336
336
  var DEFAULT_COLOR_CONFIG = {
337
- "light": {
338
- "background": "#fafafa",
339
- "foreground": "#1d1e22",
340
- "brand": "#1fb2a6",
341
- "alternate": "#db2777",
342
- "help": "#5C4EE5",
343
- "success": "#087f5b",
344
- "info": "#0550ae",
345
- "warning": "#e3b341",
346
- "danger": "#D8314A",
347
- "positive": "#22c55e",
348
- "negative": "#dc2626"
337
+ light: {
338
+ background: "#fafafa",
339
+ foreground: "#1d1e22",
340
+ brand: "#1fb2a6",
341
+ alternate: "#db2777",
342
+ help: "#5C4EE5",
343
+ success: "#087f5b",
344
+ info: "#0550ae",
345
+ warning: "#e3b341",
346
+ danger: "#D8314A",
347
+ positive: "#22c55e",
348
+ negative: "#dc2626"
349
349
  },
350
- "dark": {
351
- "background": "#1d1e22",
352
- "foreground": "#cbd5e1",
353
- "brand": "#2dd4bf",
354
- "alternate": "#db2777",
355
- "help": "#818cf8",
356
- "success": "#10b981",
357
- "info": "#58a6ff",
358
- "warning": "#f3d371",
359
- "danger": "#D8314A",
360
- "positive": "#22c55e",
361
- "negative": "#dc2626"
350
+ dark: {
351
+ background: "#1d1e22",
352
+ foreground: "#cbd5e1",
353
+ brand: "#2dd4bf",
354
+ alternate: "#db2777",
355
+ help: "#818cf8",
356
+ success: "#10b981",
357
+ info: "#58a6ff",
358
+ warning: "#f3d371",
359
+ danger: "#D8314A",
360
+ positive: "#22c55e",
361
+ negative: "#dc2626"
362
362
  }
363
363
  };
364
364
  var getDefaultConfig = /* @__PURE__ */ _chunkZH7QZ5EFjs.__name.call(void 0, async (root) => {
@@ -1795,17 +1795,17 @@ var addPackageJsonExport = /* @__PURE__ */ _chunkZH7QZ5EFjs.__name.call(void 0,
1795
1795
  entry = entry.replace(sourceRoot, "");
1796
1796
  }
1797
1797
  return {
1798
- "import": {
1799
- "types": `./dist/${entry}.d.${type === "module" ? "ts" : "mts"}`,
1800
- "default": `./dist/${entry}.${type === "module" ? "js" : "mjs"}`
1798
+ import: {
1799
+ types: `./dist/${entry}.d.${type === "module" ? "ts" : "mts"}`,
1800
+ default: `./dist/${entry}.${type === "module" ? "js" : "mjs"}`
1801
1801
  },
1802
- "require": {
1803
- "types": `./dist/${entry}.d.${type === "commonjs" ? "ts" : "cts"}`,
1804
- "default": `./dist/${entry}.${type === "commonjs" ? "js" : "cjs"}`
1802
+ require: {
1803
+ types: `./dist/${entry}.d.${type === "commonjs" ? "ts" : "cts"}`,
1804
+ default: `./dist/${entry}.${type === "commonjs" ? "js" : "cjs"}`
1805
1805
  },
1806
- "default": {
1807
- "types": `./dist/${entry}.d.ts`,
1808
- "default": `./dist/${entry}.js`
1806
+ default: {
1807
+ types: `./dist/${entry}.d.ts`,
1808
+ default: `./dist/${entry}.js`
1809
1809
  }
1810
1810
  };
1811
1811
  }, "addPackageJsonExport");
@@ -2283,7 +2283,6 @@ function bundleTypeDefinitions(filename, outfile, externals, options) {
2283
2283
  overrideTsconfig: {
2284
2284
  compilerOptions: {
2285
2285
  paths: {}
2286
- // bug with api extract + paths
2287
2286
  }
2288
2287
  }
2289
2288
  },
@@ -4052,14 +4051,14 @@ async function presetGeneratorFn(tree, options) {
4052
4051
  };
4053
4052
  json.maintainers ??= [
4054
4053
  {
4055
- "name": "Storm Software",
4056
- "email": "contact@stormsoftware.com",
4057
- "url": "https://stormsoftware.com"
4054
+ name: "Storm Software",
4055
+ email: "contact@stormsoftware.com",
4056
+ url: "https://stormsoftware.com"
4058
4057
  },
4059
4058
  {
4060
- "name": "Pat Sullivan",
4061
- "email": "admin@stormsoftware.com",
4062
- "url": "https://patsullivan.org"
4059
+ name: "Pat Sullivan",
4060
+ email: "admin@stormsoftware.com",
4061
+ url: "https://patsullivan.org"
4063
4062
  }
4064
4063
  ];
4065
4064
  json.funding ??= {
@@ -4075,12 +4074,12 @@ async function presetGeneratorFn(tree, options) {
4075
4074
  };
4076
4075
  json.packageManager ??= "pnpm@9.15.2";
4077
4076
  json.engines ??= {
4078
- "node": ">=20.11.0",
4079
- "pnpm": ">=9.15.2"
4077
+ node: ">=20.11.0",
4078
+ pnpm: ">=9.15.2"
4080
4079
  };
4081
4080
  json.prettier = "@storm-software/prettier/config.json";
4082
4081
  json.nx ??= {
4083
- "includedScripts": [
4082
+ includedScripts: [
4084
4083
  "lint-sherif",
4085
4084
  "lint-knip",
4086
4085
  "lint-ls",
@@ -4174,22 +4173,22 @@ async function presetGeneratorFn(tree, options) {
4174
4173
  "@storm-software/prettier": "latest",
4175
4174
  "@taplo/cli": "0.7.0",
4176
4175
  "@types/node": "^20.14.10",
4177
- "copyfiles": "2.4.1",
4178
- "eslint": "9.5.0",
4179
- "jest": "29.7.0",
4176
+ copyfiles: "2.4.1",
4177
+ eslint: "9.5.0",
4178
+ jest: "29.7.0",
4180
4179
  "jest-environment-node": "29.7.0",
4181
- "knip": "5.25.2",
4182
- "lefthook": "1.6.18",
4183
- "nx": "^20.2.2",
4184
- "prettier": "3.3.2",
4180
+ knip: "5.25.2",
4181
+ lefthook: "1.6.18",
4182
+ nx: "^20.2.2",
4183
+ prettier: "3.3.2",
4185
4184
  "prettier-plugin-prisma": "5.0.0",
4186
- "rimraf": "5.0.7",
4187
- "sherif": "0.10.0",
4185
+ rimraf: "5.0.7",
4186
+ sherif: "0.10.0",
4188
4187
  "ts-jest": "29.1.5",
4189
4188
  "ts-node": "10.9.2",
4190
- "tslib": "2.6.3",
4191
- "typescript": "5.5.3",
4192
- "verdaccio": "5.31.1"
4189
+ tslib: "2.6.3",
4190
+ typescript: "5.5.3",
4191
+ verdaccio: "5.31.1"
4193
4192
  };
4194
4193
  if (options.includeApps) {
4195
4194
  dependencies = {
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-RDD7JUBK.js');
2
2
 
3
3
 
4
- var _chunkK34NGF5Tjs = require('./chunk-K34NGF5T.js');
4
+ var _chunkKPBJR2GKjs = require('./chunk-KPBJR2GK.js');
5
5
  require('./chunk-3HI6WK3M.js');
6
6
  require('./chunk-ZH7QZ5EF.js');
7
7
 
8
8
 
9
- exports.initGeneratorFn = _chunkK34NGF5Tjs.initGeneratorFn;
9
+ exports.initGeneratorFn = _chunkKPBJR2GKjs.initGeneratorFn;
@@ -1,7 +1,7 @@
1
1
  import "./chunk-EEZAWKQ5.mjs";
2
2
  import {
3
3
  initGeneratorFn
4
- } from "./chunk-CFLWQRZK.mjs";
4
+ } from "./chunk-7552AK7D.mjs";
5
5
  import "./chunk-VPWBNTCH.mjs";
6
6
  import "./chunk-VHOQB7WG.mjs";
7
7
  export {
package/dist/index.js CHANGED
@@ -4,7 +4,7 @@
4
4
  var _chunkFVKYD24Tjs = require('./chunk-FVKYD24T.js');
5
5
 
6
6
 
7
- var _chunkK34NGF5Tjs = require('./chunk-K34NGF5T.js');
7
+ var _chunkKPBJR2GKjs = require('./chunk-KPBJR2GK.js');
8
8
  require('./chunk-3HI6WK3M.js');
9
9
 
10
10
 
@@ -16,10 +16,10 @@ var _chunkZH7QZ5EFjs = require('./chunk-ZH7QZ5EF.js');
16
16
  // index.ts
17
17
  var index_exports = {};
18
18
  _chunkZH7QZ5EFjs.__export.call(void 0, index_exports, {
19
- initGeneratorFn: () => _chunkK34NGF5Tjs.initGeneratorFn
19
+ initGeneratorFn: () => _chunkKPBJR2GKjs.initGeneratorFn
20
20
  });
21
21
  _chunkZH7QZ5EFjs.init_cjs_shims.call(void 0, );
22
22
  _chunkZH7QZ5EFjs.__reExport.call(void 0, index_exports, _chunkZH7QZ5EFjs.__toESM.call(void 0, _chunkFVKYD24Tjs.require_components.call(void 0, )));
23
23
 
24
24
 
25
- exports.initGeneratorFn = _chunkK34NGF5Tjs.initGeneratorFn;
25
+ exports.initGeneratorFn = _chunkKPBJR2GKjs.initGeneratorFn;
package/dist/index.mjs CHANGED
@@ -4,7 +4,7 @@ import {
4
4
  } from "./chunk-LYHBU3HI.mjs";
5
5
  import {
6
6
  initGeneratorFn
7
- } from "./chunk-CFLWQRZK.mjs";
7
+ } from "./chunk-7552AK7D.mjs";
8
8
  import "./chunk-VPWBNTCH.mjs";
9
9
  import {
10
10
  __export,
@@ -77,13 +77,13 @@ var StormNxWorkspace = (_class = class extends _nxworkspace.NxWorkspace {
77
77
  */
78
78
  __init4() {this.nxPlugins = [
79
79
  {
80
- "plugin": "@nx/eslint/plugin",
81
- "exclude": [
80
+ plugin: "@nx/eslint/plugin",
81
+ exclude: [
82
82
  "packages/**/__fixtures__/**/*"
83
83
  ],
84
- "options": {
85
- "targetName": "lint",
86
- "useFlatConfig": true
84
+ options: {
85
+ targetName: "lint",
86
+ useFlatConfig: true
87
87
  }
88
88
  },
89
89
  "@storm-software/workspace-tools/plugins/typescript",
@@ -102,7 +102,7 @@ var StormNxWorkspace = (_class = class extends _nxworkspace.NxWorkspace {
102
102
  */
103
103
  __init6() {this.namedInputs = {
104
104
  // https://nx.dev/more-concepts/customizing-inputs#defaults
105
- "sharedGlobals": [
105
+ sharedGlobals: [
106
106
  "{workspaceRoot}/.github/**/*",
107
107
  "{workspaceRoot}/assets/**/*",
108
108
  "{workspaceRoot}/tsconfig.*.json",
@@ -140,11 +140,11 @@ var StormNxWorkspace = (_class = class extends _nxworkspace.NxWorkspace {
140
140
  "{workspaceRoot}/.env",
141
141
  "{workspaceRoot}/.env.local"
142
142
  ],
143
- "default": [
143
+ default: [
144
144
  "sharedGlobals",
145
145
  "{projectRoot}/**/*"
146
146
  ],
147
- "production": [
147
+ production: [
148
148
  "{projectRoot}/**/*",
149
149
  "!{projectRoot}/tools/**/*",
150
150
  "!{projectRoot}/scripts/**/*",
@@ -183,7 +183,7 @@ var StormNxWorkspace = (_class = class extends _nxworkspace.NxWorkspace {
183
183
  "!{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)",
184
184
  "!{projectRoot}/tsconfig.spec.json"
185
185
  ],
186
- "testing": [
186
+ testing: [
187
187
  "sharedGlobals",
188
188
  "{workspaceRoot}/jest.config.ts",
189
189
  "{workspaceRoot}/jest.preset.js",
@@ -216,7 +216,7 @@ var StormNxWorkspace = (_class = class extends _nxworkspace.NxWorkspace {
216
216
  "{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)",
217
217
  "{projectRoot}/tsconfig.spec.json"
218
218
  ],
219
- "linting": [
219
+ linting: [
220
220
  "sharedGlobals",
221
221
  "{workspaceRoot}/.eslintignore",
222
222
  "{workspaceRoot}/eslintrc.json",
@@ -253,7 +253,7 @@ var StormNxWorkspace = (_class = class extends _nxworkspace.NxWorkspace {
253
253
  "{projectRoot}/.prettierrc",
254
254
  "{projectRoot}/.prettierignore"
255
255
  ],
256
- "documentation": [
256
+ documentation: [
257
257
  "sharedGlobals",
258
258
  "{workspaceRoot}/api-extractor.json",
259
259
  "{workspaceRoot}/tsdoc.json",
@@ -288,7 +288,7 @@ var StormNxWorkspace = (_class = class extends _nxworkspace.NxWorkspace {
288
288
  "!{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)",
289
289
  "!{projectRoot}/tsconfig.spec.json"
290
290
  ],
291
- "rust": [
291
+ rust: [
292
292
  "sharedGlobals",
293
293
  "{workspaceRoot}/Cargo.toml",
294
294
  "{workspaceRoot}/Cargo.lock",
@@ -320,7 +320,7 @@ var StormNxWorkspace = (_class = class extends _nxworkspace.NxWorkspace {
320
320
  "!{projectRoot}/tests/**/*",
321
321
  "!{projectRoot}/testing/**/*"
322
322
  ],
323
- "typescript": [
323
+ typescript: [
324
324
  "sharedGlobals",
325
325
  "!{projectRoot}/tsconfig.spec.json",
326
326
  "!{projectRoot}/tsconfig.storybook.json",
@@ -77,13 +77,13 @@ var StormNxWorkspace = class extends NxWorkspace {
77
77
  */
78
78
  nxPlugins = [
79
79
  {
80
- "plugin": "@nx/eslint/plugin",
81
- "exclude": [
80
+ plugin: "@nx/eslint/plugin",
81
+ exclude: [
82
82
  "packages/**/__fixtures__/**/*"
83
83
  ],
84
- "options": {
85
- "targetName": "lint",
86
- "useFlatConfig": true
84
+ options: {
85
+ targetName: "lint",
86
+ useFlatConfig: true
87
87
  }
88
88
  },
89
89
  "@storm-software/workspace-tools/plugins/typescript",
@@ -102,7 +102,7 @@ var StormNxWorkspace = class extends NxWorkspace {
102
102
  */
103
103
  namedInputs = {
104
104
  // https://nx.dev/more-concepts/customizing-inputs#defaults
105
- "sharedGlobals": [
105
+ sharedGlobals: [
106
106
  "{workspaceRoot}/.github/**/*",
107
107
  "{workspaceRoot}/assets/**/*",
108
108
  "{workspaceRoot}/tsconfig.*.json",
@@ -140,11 +140,11 @@ var StormNxWorkspace = class extends NxWorkspace {
140
140
  "{workspaceRoot}/.env",
141
141
  "{workspaceRoot}/.env.local"
142
142
  ],
143
- "default": [
143
+ default: [
144
144
  "sharedGlobals",
145
145
  "{projectRoot}/**/*"
146
146
  ],
147
- "production": [
147
+ production: [
148
148
  "{projectRoot}/**/*",
149
149
  "!{projectRoot}/tools/**/*",
150
150
  "!{projectRoot}/scripts/**/*",
@@ -183,7 +183,7 @@ var StormNxWorkspace = class extends NxWorkspace {
183
183
  "!{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)",
184
184
  "!{projectRoot}/tsconfig.spec.json"
185
185
  ],
186
- "testing": [
186
+ testing: [
187
187
  "sharedGlobals",
188
188
  "{workspaceRoot}/jest.config.ts",
189
189
  "{workspaceRoot}/jest.preset.js",
@@ -216,7 +216,7 @@ var StormNxWorkspace = class extends NxWorkspace {
216
216
  "{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)",
217
217
  "{projectRoot}/tsconfig.spec.json"
218
218
  ],
219
- "linting": [
219
+ linting: [
220
220
  "sharedGlobals",
221
221
  "{workspaceRoot}/.eslintignore",
222
222
  "{workspaceRoot}/eslintrc.json",
@@ -253,7 +253,7 @@ var StormNxWorkspace = class extends NxWorkspace {
253
253
  "{projectRoot}/.prettierrc",
254
254
  "{projectRoot}/.prettierignore"
255
255
  ],
256
- "documentation": [
256
+ documentation: [
257
257
  "sharedGlobals",
258
258
  "{workspaceRoot}/api-extractor.json",
259
259
  "{workspaceRoot}/tsdoc.json",
@@ -288,7 +288,7 @@ var StormNxWorkspace = class extends NxWorkspace {
288
288
  "!{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)",
289
289
  "!{projectRoot}/tsconfig.spec.json"
290
290
  ],
291
- "rust": [
291
+ rust: [
292
292
  "sharedGlobals",
293
293
  "{workspaceRoot}/Cargo.toml",
294
294
  "{workspaceRoot}/Cargo.lock",
@@ -320,7 +320,7 @@ var StormNxWorkspace = class extends NxWorkspace {
320
320
  "!{projectRoot}/tests/**/*",
321
321
  "!{projectRoot}/testing/**/*"
322
322
  ],
323
- "typescript": [
323
+ typescript: [
324
324
  "sharedGlobals",
325
325
  "!{projectRoot}/tsconfig.spec.json",
326
326
  "!{projectRoot}/tsconfig.storybook.json",
@@ -1,10 +1,10 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkK34NGF5Tjs = require('../../../chunk-K34NGF5T.js');
4
+ var _chunkKPBJR2GKjs = require('../../../chunk-KPBJR2GK.js');
5
5
  require('../../../chunk-3HI6WK3M.js');
6
6
  require('../../../chunk-ZH7QZ5EF.js');
7
7
 
8
8
 
9
9
 
10
- exports.default = _chunkK34NGF5Tjs.generator_default; exports.initGeneratorFn = _chunkK34NGF5Tjs.initGeneratorFn;
10
+ exports.default = _chunkKPBJR2GKjs.generator_default; exports.initGeneratorFn = _chunkKPBJR2GKjs.initGeneratorFn;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  generator_default,
3
3
  initGeneratorFn
4
- } from "../../../chunk-CFLWQRZK.mjs";
4
+ } from "../../../chunk-7552AK7D.mjs";
5
5
  import "../../../chunk-VPWBNTCH.mjs";
6
6
  import "../../../chunk-VHOQB7WG.mjs";
7
7
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/projen",
3
- "version": "0.9.12",
3
+ "version": "0.9.14",
4
4
  "type": "commonjs",
5
5
  "description": "Tools for managing Projen configuration automation within a Nx workspace.",
6
6
  "repository": {