@storm-software/config-tools 1.39.2 → 1.40.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 +24 -0
- package/README.md +10 -6
- package/index.cjs +9640 -9147
- package/index.js +9644 -9151
- package/meta.cjs.json +1 -1
- package/meta.esm.json +1 -1
- package/package.json +1 -1
- package/utilities/find-workspace-root.cjs +11 -4
- package/utilities/find-workspace-root.js +11 -4
- package/utilities/logger.cjs +3918 -41
- package/utilities/logger.js +3918 -41
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
## 1.40.0 (2024-04-22)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🚀 Features
|
|
5
|
+
|
|
6
|
+
- **cloudflare-tools:** Added the `worker`, `init`, and `serve` tools ([b4b92c2c](https://github.com/storm-software/storm-ops/commit/b4b92c2c))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
13
|
+
## 1.39.3 (2024-04-15)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### 🩹 Fixes
|
|
17
|
+
|
|
18
|
+
- **config-tools:** Resolved issue with missing fields in Storm configuration ([cf157d2a](https://github.com/storm-software/storm-ops/commit/cf157d2a))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### ❤️ Thank You
|
|
22
|
+
|
|
23
|
+
- Patrick Sullivan
|
|
24
|
+
|
|
1
25
|
## 1.39.2 (2024-04-15)
|
|
2
26
|
|
|
3
27
|
|
package/README.md
CHANGED
|
@@ -8,7 +8,10 @@
|
|
|
8
8
|
|
|
9
9
|
<div align="center">
|
|
10
10
|
<b>
|
|
11
|
-
<a href="https://stormsoftware.com" target="_blank">Website</a>
|
|
11
|
+
<a href="https://stormsoftware.com" target="_blank">Website</a> •
|
|
12
|
+
<a href="https://github.com/storm-software/storm-ops" target="_blank">GitHub</a> •
|
|
13
|
+
<a href="https://discord.gg/MQ6YVzakM5">Discord</a> • <a href="https://stormstack.github.io/stormstack/" target="_blank">Docs</a> • <a href="https://stormsoftware.com/contact" target="_blank">Contact</a> •
|
|
14
|
+
<a href="https://github.com/storm-software/storm-ops/issues/new?assignees=&labels=bug&template=bug-report.yml&title=Bug Report%3A+">Report a Bug</a>
|
|
12
15
|
</b>
|
|
13
16
|
</div>
|
|
14
17
|
|
|
@@ -16,11 +19,9 @@
|
|
|
16
19
|
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
20
|
<br />
|
|
18
21
|
|
|
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 />
|
|
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 />
|
|
22
23
|
|
|
23
|
-
[](https://prettier.io/)
|
|
24
25
|
[](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://docusaurus.io/) 
|
|
25
26
|
|
|
26
27
|
> [!IMPORTANT]
|
|
@@ -28,6 +29,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
28
29
|
|
|
29
30
|
<br />
|
|
30
31
|
|
|
32
|
+
|
|
31
33
|
<!-- markdownlint-restore -->
|
|
32
34
|
<!-- prettier-ignore-end -->
|
|
33
35
|
|
|
@@ -219,7 +221,9 @@ This project follows the [all-contributors](https://github.com/all-contributors/
|
|
|
219
221
|
<br />
|
|
220
222
|
|
|
221
223
|
<div align="center">
|
|
222
|
-
<
|
|
224
|
+
<b>
|
|
225
|
+
<a href="https://stormsoftware.com" target="_blank">Website</a> • <a href="https://stormsoftware.com/contact" target="_blank">Contact</a> • <a href="https://discord.gg/MQ6YVzakM5">Discord</a> • <a href="https://linkedin.com/in/pat-sullivan-dev" target="_blank">LinkedIn</a> • <a href="https://medium.com/@pat.joseph.sullivan" target="_blank">Medium</a> • <a href="https://github.com/storm-software" target="_blank">GitHub</a> • <a href="https://keybase.io/sullivanp" target="_blank">OpenPGP Key</a>
|
|
226
|
+
</b>
|
|
223
227
|
</div>
|
|
224
228
|
|
|
225
229
|
<div align="center">
|