@storm-software/cloudflare-tools 0.50.2 → 0.50.4

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.
Files changed (37) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/README.md +1 -1
  3. package/dist/{chunk-IUVV2SM4.js → chunk-3JJSMPBT.js} +41 -41
  4. package/dist/{chunk-MH545KJZ.js → chunk-6J7ASNGW.js} +12 -12
  5. package/dist/{chunk-T6VDL633.mjs → chunk-6PVMDNO7.mjs} +44 -482
  6. package/dist/{chunk-JCB2DTP6.js → chunk-ABCBYQGV.js} +3 -3
  7. package/dist/{chunk-4AK2RSE7.mjs → chunk-ITAWFL6G.mjs} +3 -3
  8. package/dist/{chunk-ULTJPRDX.js → chunk-MHBXIMZJ.js} +183 -621
  9. package/dist/{chunk-SUASGTND.js → chunk-O2XVQQLQ.js} +16 -16
  10. package/dist/{chunk-VYOULWAK.mjs → chunk-OTQ3T47C.mjs} +1 -1
  11. package/dist/{chunk-6RM4MALM.mjs → chunk-PSZIL5F5.mjs} +1 -1
  12. package/dist/{chunk-RCE3CC76.js → chunk-TH4KH35P.js} +1 -2
  13. package/dist/{chunk-HPCGVJ7R.mjs → chunk-TKQA6SOX.mjs} +3 -3
  14. package/dist/{chunk-4AMWR76J.mjs → chunk-UOZU7VQX.mjs} +1 -1
  15. package/dist/{chunk-7VU6EPB4.js → chunk-VXZZKKIL.js} +1 -1
  16. package/dist/{chunk-NSLK6ZDO.mjs → chunk-XBFOA367.mjs} +0 -1
  17. package/dist/executors.js +5 -5
  18. package/dist/executors.mjs +5 -5
  19. package/dist/generators.js +5 -5
  20. package/dist/generators.mjs +4 -4
  21. package/dist/index.js +8 -8
  22. package/dist/index.mjs +7 -7
  23. package/dist/src/executors/cloudflare-publish/executor.js +3 -3
  24. package/dist/src/executors/cloudflare-publish/executor.mjs +3 -3
  25. package/dist/src/executors/r2-upload-publish/executor.js +5 -5
  26. package/dist/src/executors/r2-upload-publish/executor.mjs +4 -4
  27. package/dist/src/executors/serve/executor.js +4 -4
  28. package/dist/src/executors/serve/executor.mjs +3 -3
  29. package/dist/src/generators/init/generator.js +2 -2
  30. package/dist/src/generators/init/generator.mjs +1 -1
  31. package/dist/src/generators/worker/generator.js +5 -5
  32. package/dist/src/generators/worker/generator.mjs +4 -4
  33. package/dist/src/utils/index.js +3 -3
  34. package/dist/src/utils/index.mjs +2 -2
  35. package/dist/src/utils/r2-bucket-helpers.js +3 -3
  36. package/dist/src/utils/r2-bucket-helpers.mjs +2 -2
  37. package/package.json +1 -1
@@ -1,7 +1,7 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } }
2
2
 
3
3
 
4
- var _chunkRCE3CC76js = require('./chunk-RCE3CC76.js');
4
+ var _chunkTH4KH35Pjs = require('./chunk-TH4KH35P.js');
5
5
 
6
6
 
7
7
  var _chunkJ5SB6L2Ljs = require('./chunk-J5SB6L2L.js');
@@ -11,7 +11,7 @@ var _crypto = require('crypto');
11
11
  var r2UploadFile = /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(void 0, async (client, bucketName, projectPath, fileName, version, fileContent, contentType = "text/plain", isDryRun = false) => {
12
12
  const checksum = _crypto.createHash.call(void 0, "sha256").update(fileContent).digest("base64");
13
13
  const fileKey = `${projectPath}/${fileName.startsWith("/") ? fileName.substring(1) : fileName}`;
14
- _chunkRCE3CC76js.writeDebug.call(void 0, `Uploading file: ${fileKey}`);
14
+ _chunkTH4KH35Pjs.writeDebug.call(void 0, `Uploading file: ${fileKey}`);
15
15
  if (!isDryRun) {
16
16
  await client.putObject({
17
17
  Bucket: bucketName,
@@ -24,7 +24,7 @@ var r2UploadFile = /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(void 0, async (c
24
24
  }
25
25
  });
26
26
  } else {
27
- _chunkRCE3CC76js.writeWarning.call(void 0, "[Dry run]: skipping upload to the Cyclone Registry.");
27
+ _chunkTH4KH35Pjs.writeWarning.call(void 0, "[Dry run]: skipping upload to the Cyclone Registry.");
28
28
  }
29
29
  }, "r2UploadFile");
30
30
  var getInternalDependencies = /* @__PURE__ */ _chunkJ5SB6L2Ljs.__name.call(void 0, (projectName, graph) => {
@@ -1,9 +1,9 @@
1
1
  import {
2
2
  generator_default
3
- } from "./chunk-6RM4MALM.mjs";
3
+ } from "./chunk-PSZIL5F5.mjs";
4
4
  import {
5
5
  loadStormConfig
6
- } from "./chunk-4AMWR76J.mjs";
6
+ } from "./chunk-UOZU7VQX.mjs";
7
7
  import {
8
8
  findWorkspaceRoot,
9
9
  getStopwatch,
@@ -12,7 +12,7 @@ import {
12
12
  writeFatal,
13
13
  writeInfo,
14
14
  writeTrace
15
- } from "./chunk-NSLK6ZDO.mjs";
15
+ } from "./chunk-XBFOA367.mjs";
16
16
  import {
17
17
  __dirname,
18
18
  __name