@storm-software/terraform-tools 0.6.0 → 0.8.0

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,17 @@
1
+ ## 0.8.0 (2024-08-04)
2
+
3
+
4
+ ### Features
5
+
6
+ - **config:** Added the `docs` and `licensing` options to the Storm configuration ([c867efe1](https://github.com/storm-software/storm-ops/commit/c867efe1))
7
+
8
+ ## 0.7.0 (2024-08-03)
9
+
10
+
11
+ ### Features
12
+
13
+ - **eslint:** Ignore `prefer-nullish-coalescing` for strings ([dbae2a58](https://github.com/storm-software/storm-ops/commit/dbae2a58))
14
+
1
15
  ## 0.6.0 (2024-08-03)
2
16
 
3
17
 
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.5.0-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.7.0-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 -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/terraform-tools",
3
- "version": "0.6.0",
3
+ "version": "0.8.0",
4
4
  "type": "commonjs",
5
5
  "description": "⚡ A Nx plugin package that contains various executors, generators, and utilities that assist in managing Terraform IoC.",
6
6
  "repository": {
@@ -0,0 +1,3 @@
1
+ export declare const STORM_DEFAULT_DOCS = "https://docs.stormsoftware.com";
2
+ export declare const STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
3
+ export declare const STORM_DEFAULT_LICENSING = "https://license.stormsoftware.com";
@@ -143,6 +143,8 @@ export declare const defineConfig: (input: StormConfigInput) => {
143
143
  repository?: string | undefined;
144
144
  license?: string | undefined;
145
145
  homepage?: string | undefined;
146
+ docs?: string | undefined;
147
+ licensing?: string | undefined;
146
148
  branch?: string | undefined;
147
149
  preid?: string | undefined;
148
150
  owner?: string | undefined;
@@ -6,6 +6,7 @@
6
6
  *
7
7
  * @packageDocumentation
8
8
  */
9
+ export * from "./constants";
10
+ export * from "./define-config";
9
11
  export * from "./schema";
10
12
  export * from "./types";
11
- export * from "./define-config";
@@ -917,6 +917,8 @@ export declare const StormConfigSchema: z.ZodObject<{
917
917
  repository: z.ZodOptional<z.ZodString>;
918
918
  license: z.ZodDefault<z.ZodString>;
919
919
  homepage: z.ZodDefault<z.ZodString>;
920
+ docs: z.ZodDefault<z.ZodString>;
921
+ licensing: z.ZodDefault<z.ZodString>;
920
922
  branch: z.ZodDefault<z.ZodString>;
921
923
  preid: z.ZodOptional<z.ZodString>;
922
924
  owner: z.ZodDefault<z.ZodString>;
@@ -1583,6 +1585,8 @@ export declare const StormConfigSchema: z.ZodObject<{
1583
1585
  organization: string;
1584
1586
  license: string;
1585
1587
  homepage: string;
1588
+ docs: string;
1589
+ licensing: string;
1586
1590
  branch: string;
1587
1591
  owner: string;
1588
1592
  worker: string;
@@ -1880,6 +1884,8 @@ export declare const StormConfigSchema: z.ZodObject<{
1880
1884
  repository?: string | undefined;
1881
1885
  license?: string | undefined;
1882
1886
  homepage?: string | undefined;
1887
+ docs?: string | undefined;
1888
+ licensing?: string | undefined;
1883
1889
  branch?: string | undefined;
1884
1890
  preid?: string | undefined;
1885
1891
  owner?: string | undefined;