@storm-software/config-tools 1.39.1 → 1.39.3
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 +24 -0
- package/README.md +6 -4
- package/index.cjs +9425 -9084
- package/index.js +9429 -9088
- package/meta.cjs.json +1 -1
- package/meta.esm.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
## 1.39.3 (2024-04-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **config-tools:** Resolved issue with missing fields in Storm configuration ([cf157d2a](https://github.com/storm-software/storm-ops/commit/cf157d2a))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
13
|
+
## 1.39.2 (2024-04-15)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### 🩹 Fixes
|
|
17
|
+
|
|
18
|
+
- **config-tools:** Clean up the README markdown ([676d23d3](https://github.com/storm-software/storm-ops/commit/676d23d3))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### ❤️ Thank You
|
|
22
|
+
|
|
23
|
+
- Patrick Sullivan
|
|
24
|
+
|
|
1
25
|
## 1.39.1 (2024-04-15)
|
|
2
26
|
|
|
3
27
|
|
package/README.md
CHANGED
|
@@ -16,7 +16,9 @@
|
|
|
16
16
|
This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages include CLI utility applications, tools, and various libraries used to create modern, scalable web applications.
|
|
17
17
|
<br />
|
|
18
18
|
|
|
19
|
-
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3
|
|
19
|
+
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3>
|
|
20
|
+
|
|
21
|
+
<br />
|
|
20
22
|
|
|
21
23
|
[](https://prettier.io/)
|
|
22
24
|
[](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://docusaurus.io/) 
|
|
@@ -26,7 +28,6 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
26
28
|
|
|
27
29
|
<br />
|
|
28
30
|
|
|
29
|
-
|
|
30
31
|
<!-- markdownlint-restore -->
|
|
31
32
|
<!-- prettier-ignore-end -->
|
|
32
33
|
|
|
@@ -40,7 +41,8 @@ Below is a list of the available configuration values that can be set through en
|
|
|
40
41
|
|
|
41
42
|
| Name | Description | Default |
|
|
42
43
|
| ----------------------- | -------------------------------------------------------------------------------------- | --------------------------- |
|
|
43
|
-
|
|
|
44
|
+
| STORM_COLOR_LIGHT | The workspace's light background theme color | `#f4f4f5` |
|
|
45
|
+
| STORM_COLOR_DARK | The workspace's dark background theme color | `#1d232a` |
|
|
44
46
|
| STORM_COLOR_ERROR | The workspace's error theme color | `#990000` |
|
|
45
47
|
| STORM_COLOR_FATAL | The workspace's fatal theme color | `#7d1a1a` |
|
|
46
48
|
| STORM_COLOR_INFO | The workspace's info theme color | `#0ea5e9` |
|
|
@@ -54,7 +56,7 @@ Below is a list of the available configuration values that can be set through en
|
|
|
54
56
|
| STORM_LOG_LEVEL | The current maximum level of messages to write to the logs | "info" |
|
|
55
57
|
| STORM_ORGANIZATION | The organization of the workspace | "storm-software" |
|
|
56
58
|
| STORM_REPOSITORY | The repo URL of the workspace (i.e. GitHub URL) |
|
|
57
|
-
| STORM_RUNTIME_DIRECTORY | The default directory of the storm runtime for storage/generation | "
|
|
59
|
+
| STORM_RUNTIME_DIRECTORY | The default directory of the storm runtime for storage/generation | "./.storm" |
|
|
58
60
|
| STORM_RUNTIME_VERSION | The global version of the Storm runtime | "1.0.0" |
|
|
59
61
|
| STORM_TIMEZONE | The default timezone of the workspace | "America/New_York" |
|
|
60
62
|
| STORM_BOT | The worker of the package (this is the bot that will be used to perform various tasks) | "stormie-bot" |
|