@storm-software/cloudflare-tools 0.17.0 → 0.18.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 +16 -0
- package/README.md +1 -1
- package/index.js +8889 -12129
- package/meta.json +1 -1
- package/package.json +10 -7
- package/packages/build-tools/src/config/get-rolldown-config.d.ts +1 -1
- package/packages/build-tools/src/config/get-unbuild-config.d.ts +4 -4
- package/packages/build-tools/src/types.d.ts +4 -2
- package/packages/build-tools/src/utils/generate-package-json.d.ts +3 -0
- package/packages/cloudflare-tools/src/executors/serve/executor.d.ts +3 -3
- package/packages/config/src/define-config.d.ts +18 -0
- package/packages/config/src/schema.d.ts +254 -0
- package/packages/config-tools/src/config-file/get-config-file.d.ts +1 -1
- package/packages/config-tools/src/create-storm-config.d.ts +1 -1
- package/packages/config-tools/src/utilities/get-default-config.d.ts +1 -1
- package/packages/config-tools/src/utilities/logger.d.ts +1 -1
- package/packages/workspace-tools/index.d.ts +13 -11
- package/packages/workspace-tools/src/executors/rolldown/executor.d.ts +1 -1
- package/packages/workspace-tools/src/executors/size-limit/executor.d.ts +8 -0
- package/packages/workspace-tools/src/executors/unbuild/executor.d.ts +2 -2
- package/src/executors/cloudflare-publish/executor.js +6649 -5255
- package/src/executors/serve/executor.js +6651 -5283
- package/src/generators/init/generator.js +96 -94
- package/src/generators/worker/generator.js +655 -4291
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
## 0.18.0 (2024-07-30)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
- **eslint:** Added the header plugin ([cc0cbbea](https://github.com/storm-software/storm-ops/commit/cc0cbbea))
|
|
7
|
+
|
|
8
|
+
- **eslint:** Removed invalid JSON configuration from package ([2622ee7e](https://github.com/storm-software/storm-ops/commit/2622ee7e))
|
|
9
|
+
|
|
10
|
+
## 0.17.1 (2024-07-23)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
- **eslint:** Resolve issues with `json` plugin config spread ([088d498a](https://github.com/storm-software/storm-ops/commit/088d498a))
|
|
16
|
+
|
|
1
17
|
## 0.17.0 (2024-07-23)
|
|
2
18
|
|
|
3
19
|
|
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 -->
|