@storm-software/cloudflare-tools 0.48.0 → 0.49.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 +10 -0
- package/dist/chunk-3J7KBHMJ.mjs +0 -0
- package/dist/chunk-7Z5PILRU.mjs +0 -0
- package/dist/chunk-A4ZIZ2JU.mjs +228 -0
- package/dist/chunk-A7FFSBE6.mjs +26 -0
- package/dist/chunk-CVGPWUNP.js +1 -0
- package/dist/chunk-DHBG5ASJ.js +1 -0
- package/dist/chunk-I4XNMV5U.js +227 -0
- package/dist/chunk-J5SB6L2L.js +18 -0
- package/dist/chunk-JCB2DTP6.js +42 -0
- package/dist/chunk-KKOHB7JH.js +239 -0
- package/dist/chunk-MTM5OTKD.mjs +239 -0
- package/dist/chunk-NKCR3FSU.js +153 -0
- package/dist/chunk-NSLK6ZDO.mjs +603 -0
- package/dist/chunk-OARYMVO7.mjs +501 -0
- package/dist/chunk-OJNZ4PXQ.mjs +3466 -0
- package/dist/chunk-QEWY5YJA.mjs +89 -0
- package/dist/chunk-R7AIVBS7.js +89 -0
- package/dist/chunk-RCE3CC76.js +603 -0
- package/dist/chunk-VPT6GF3S.mjs +153 -0
- package/dist/chunk-VTHBMY4B.js +133 -0
- package/dist/chunk-VYOULWAK.mjs +42 -0
- package/dist/chunk-XO66D74Z.js +1 -0
- package/dist/chunk-XU6MTFCV.mjs +133 -0
- package/dist/chunk-YE4FHRXJ.js +501 -0
- package/dist/chunk-YSCEY447.mjs +0 -0
- package/dist/chunk-Z46UO4N7.js +3465 -0
- package/dist/executors.d.mts +2 -0
- package/dist/executors.d.ts +2 -0
- package/dist/executors.js +9 -0
- package/dist/executors.mjs +9 -0
- package/dist/generator-DJ1RuHyR.d.mts +14 -0
- package/dist/generator-DJ1RuHyR.d.ts +14 -0
- package/dist/generator-DW-9W9Fk.d.mts +22 -0
- package/dist/generator-DW-9W9Fk.d.ts +22 -0
- package/dist/generators.d.mts +4 -0
- package/dist/generators.d.ts +4 -0
- package/dist/generators.js +18 -0
- package/dist/generators.mjs +18 -0
- package/dist/index.d.mts +45 -0
- package/dist/index.d.ts +45 -0
- package/dist/index.js +151 -0
- package/dist/index.mjs +151 -0
- package/dist/schema.d-DgA16PUG.d.mts +24 -0
- package/dist/schema.d-DgA16PUG.d.ts +24 -0
- package/dist/schema.d-oSirXiCO.d.mts +11 -0
- package/dist/schema.d-oSirXiCO.d.ts +11 -0
- package/dist/src/executors/cloudflare-publish/executor.d.mts +8 -0
- package/dist/src/executors/cloudflare-publish/executor.d.ts +8 -0
- package/dist/src/executors/cloudflare-publish/executor.js +11 -0
- package/dist/src/executors/cloudflare-publish/executor.mjs +11 -0
- package/dist/src/executors/r2-upload-publish/executor.d.mts +8 -0
- package/dist/src/executors/r2-upload-publish/executor.d.ts +8 -0
- package/dist/src/executors/r2-upload-publish/executor.js +11 -0
- package/dist/src/executors/r2-upload-publish/executor.mjs +11 -0
- package/dist/src/executors/serve/executor.d.mts +1240 -0
- package/dist/src/executors/serve/executor.d.ts +1240 -0
- package/dist/src/executors/serve/executor.js +75 -0
- package/dist/src/executors/serve/executor.mjs +75 -0
- package/dist/src/executors/serve/schema.d.ts +1 -1
- package/dist/src/generators/init/generator.d.mts +2 -0
- package/dist/src/generators/init/generator.d.ts +2 -0
- package/dist/src/generators/init/generator.js +11 -0
- package/dist/src/generators/init/generator.mjs +11 -0
- package/dist/src/generators/worker/generator.d.mts +3 -0
- package/dist/src/generators/worker/generator.d.ts +3 -0
- package/dist/src/generators/worker/generator.js +14 -0
- package/dist/src/generators/worker/generator.mjs +14 -0
- package/dist/src/utils/index.d.mts +3 -0
- package/dist/src/utils/index.d.ts +3 -0
- package/dist/src/utils/index.js +11 -0
- package/dist/src/utils/index.mjs +11 -0
- package/dist/src/utils/r2-bucket-helpers.d.mts +7 -0
- package/dist/src/utils/r2-bucket-helpers.d.ts +7 -0
- package/dist/src/utils/r2-bucket-helpers.js +10 -0
- package/dist/src/utils/r2-bucket-helpers.mjs +10 -0
- package/dist/tsup.config.d.mts +5 -0
- package/dist/tsup.config.d.ts +5 -0
- package/dist/tsup.config.js +35 -0
- package/dist/tsup.config.mjs +35 -0
- package/package.json +1 -1
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ExecutorContext } from '@nx/devkit';
|
|
2
|
+
import { R as R2UploadPublishExecutorSchema } from '../../../schema.d-oSirXiCO.mjs';
|
|
3
|
+
|
|
4
|
+
declare function runExecutor(options: R2UploadPublishExecutorSchema, context: ExecutorContext): Promise<{
|
|
5
|
+
success: boolean;
|
|
6
|
+
}>;
|
|
7
|
+
|
|
8
|
+
export { runExecutor as default };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ExecutorContext } from '@nx/devkit';
|
|
2
|
+
import { R as R2UploadPublishExecutorSchema } from '../../../schema.d-oSirXiCO.js';
|
|
3
|
+
|
|
4
|
+
declare function runExecutor(options: R2UploadPublishExecutorSchema, context: ExecutorContext): Promise<{
|
|
5
|
+
success: boolean;
|
|
6
|
+
}>;
|
|
7
|
+
|
|
8
|
+
export { runExecutor as default };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
|
+
|
|
3
|
+
var _chunkNKCR3FSUjs = require('../../../chunk-NKCR3FSU.js');
|
|
4
|
+
require('../../../chunk-JCB2DTP6.js');
|
|
5
|
+
require('../../../chunk-VTHBMY4B.js');
|
|
6
|
+
require('../../../chunk-YE4FHRXJ.js');
|
|
7
|
+
require('../../../chunk-RCE3CC76.js');
|
|
8
|
+
require('../../../chunk-J5SB6L2L.js');
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
exports.default = _chunkNKCR3FSUjs.runExecutor;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import {
|
|
2
|
+
runExecutor
|
|
3
|
+
} from "../../../chunk-VPT6GF3S.mjs";
|
|
4
|
+
import "../../../chunk-VYOULWAK.mjs";
|
|
5
|
+
import "../../../chunk-XU6MTFCV.mjs";
|
|
6
|
+
import "../../../chunk-OARYMVO7.mjs";
|
|
7
|
+
import "../../../chunk-NSLK6ZDO.mjs";
|
|
8
|
+
import "../../../chunk-A7FFSBE6.mjs";
|
|
9
|
+
export {
|
|
10
|
+
runExecutor as default
|
|
11
|
+
};
|