@storm-software/cloudflare-tools 0.70.48 → 0.70.49

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.
@@ -0,0 +1,209 @@
1
+ import {
2
+ createCliOptions,
3
+ getPackageInfo
4
+ } from "./chunk-PH3DHY4Q.mjs";
5
+ import {
6
+ getInternalDependencies,
7
+ r2UploadFile
8
+ } from "./chunk-5N2NVDKX.mjs";
9
+ import {
10
+ findWorkspaceRoot,
11
+ getConfig
12
+ } from "./chunk-PTTJW7MW.mjs";
13
+ import {
14
+ writeDebug,
15
+ writeInfo,
16
+ writeSuccess,
17
+ writeWarning
18
+ } from "./chunk-6MATO2MJ.mjs";
19
+
20
+ // src/executors/r2-upload-publish/executor.ts
21
+ import { S3 } from "@aws-sdk/client-s3";
22
+ import {
23
+ createProjectGraphAsync,
24
+ joinPathFragments,
25
+ readCachedProjectGraph
26
+ } from "@nx/devkit";
27
+ import { glob } from "glob";
28
+ import { execSync } from "node:child_process";
29
+ import { readFile } from "node:fs/promises";
30
+ async function runExecutor(options, context) {
31
+ const isDryRun = process.env.NX_DRY_RUN === "true" || options.dryRun || false;
32
+ if (!context.projectName) {
33
+ throw new Error("The executor requires a projectName.");
34
+ }
35
+ console.info(
36
+ `\u{1F680} Running Storm Cloudflare Publish executor on the ${context.projectName} worker`
37
+ );
38
+ if (!context.projectName || !context.projectsConfigurations?.projects || !context.projectsConfigurations.projects[context.projectName] || !context.projectsConfigurations.projects[context.projectName]?.root) {
39
+ throw new Error("The executor requires projectsConfigurations.");
40
+ }
41
+ try {
42
+ const workspaceRoot = findWorkspaceRoot();
43
+ const config = await getConfig(workspaceRoot);
44
+ const sourceRoot = context.projectsConfigurations.projects[context.projectName]?.sourceRoot ?? workspaceRoot;
45
+ const projectName = context.projectsConfigurations.projects[context.projectName]?.name ?? context.projectName;
46
+ const projectDetails = getPackageInfo(
47
+ context.projectsConfigurations.projects[context.projectName]
48
+ );
49
+ if (!projectDetails?.content) {
50
+ throw new Error(
51
+ `Could not find the project details for ${context.projectName}`
52
+ );
53
+ }
54
+ const args = createCliOptions({ ...options });
55
+ if (isDryRun) {
56
+ args.push("--dry-run");
57
+ }
58
+ const cloudflareAccountId = process.env.STORM_BOT_CLOUDFLARE_ACCOUNT;
59
+ if (!options?.registry && !cloudflareAccountId) {
60
+ throw new Error(
61
+ "The Storm Registry URL is not set in the Storm config. Please set either the `extensions.cyclone.registry` or `config.extensions.cyclone.accountId` property in the Storm config."
62
+ );
63
+ }
64
+ if (!process.env.AWS_ACCESS_KEY_ID || !process.env.AWS_SECRET_ACCESS_KEY) {
65
+ throw new Error(
66
+ "The AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY environment variables are not set. Please set these environment variables to upload to the Cyclone Registry."
67
+ );
68
+ }
69
+ const endpoint = options?.registry ? options.registry : `https://${cloudflareAccountId}.r2.cloudflarestorage.com`;
70
+ let projectGraph;
71
+ try {
72
+ projectGraph = readCachedProjectGraph();
73
+ } catch {
74
+ await createProjectGraphAsync();
75
+ projectGraph = readCachedProjectGraph();
76
+ }
77
+ if (!projectGraph) {
78
+ throw new Error(
79
+ "The executor failed because the project graph is not available. Please run the build command again."
80
+ );
81
+ }
82
+ writeInfo(
83
+ `Publishing ${context.projectName} to the Storm Registry at ${endpoint}`
84
+ );
85
+ const s3Client = new S3({
86
+ region: "auto",
87
+ endpoint,
88
+ credentials: {
89
+ accessKeyId: process.env.AWS_ACCESS_KEY_ID,
90
+ secretAccessKey: process.env.AWS_SECRET_ACCESS_KEY
91
+ }
92
+ });
93
+ const version = projectDetails.content?.version;
94
+ writeInfo(`Generated component version: ${version}`);
95
+ const files = await glob(joinPathFragments(sourceRoot, "**/*"), {
96
+ ignore: "**/{*.stories.tsx,*.stories.ts,*.spec.tsx,*.spec.ts}"
97
+ });
98
+ const projectPath = `registry/${context.projectName}`;
99
+ const internalDependencies = await getInternalDependencies(
100
+ context.projectName,
101
+ projectGraph
102
+ );
103
+ const dependencies = internalDependencies.filter(
104
+ (projectNode) => !projectNode.data.tags || projectNode.data.tags.every((tag) => tag.toLowerCase() !== "component")
105
+ ).reduce((ret, dep) => {
106
+ if (!ret[dep.name]) {
107
+ ret[dep.name] = "latest";
108
+ }
109
+ return ret;
110
+ }, projectDetails.content.dependencies ?? {});
111
+ const release = options.tag ?? execSync("npm config get tag").toString().trim();
112
+ writeInfo(`Clearing out existing items in ${projectPath}`);
113
+ if (!isDryRun) {
114
+ const response = await s3Client.listObjects({
115
+ Bucket: options.bucketId,
116
+ Prefix: projectPath
117
+ });
118
+ if (response?.Contents && response.Contents.length > 0) {
119
+ writeDebug(
120
+ `Deleting the following existing items from the component registry: ${response.Contents.map((item) => item.Key).join(", ")}`
121
+ );
122
+ await Promise.all(
123
+ response.Contents.map(
124
+ (item) => s3Client.deleteObjects({
125
+ Bucket: options.bucketId,
126
+ Delete: {
127
+ Objects: [
128
+ {
129
+ Key: item.Key
130
+ }
131
+ ],
132
+ Quiet: false
133
+ }
134
+ })
135
+ )
136
+ );
137
+ } else {
138
+ writeDebug(
139
+ `No existing items to delete in the component registry path ${projectPath}`
140
+ );
141
+ }
142
+ } else {
143
+ writeWarning("[Dry run]: skipping upload to the Cyclone Registry.");
144
+ }
145
+ const meta = {
146
+ name: context.projectName,
147
+ version,
148
+ release,
149
+ description: projectDetails.content.description,
150
+ tags: projectDetails.content.keywords,
151
+ dependencies,
152
+ devDependencies: null,
153
+ internalDependencies: internalDependencies.filter(
154
+ (projectNode) => projectNode.data.tags && projectNode.data.tags.some((tag) => tag.toLowerCase() === "component")
155
+ ).map((dep) => dep.name)
156
+ };
157
+ if (projectDetails.type === "package.json") {
158
+ meta.devDependencies = projectDetails.content.devDependencies;
159
+ }
160
+ const metaJson = JSON.stringify(meta);
161
+ writeInfo(`Generating meta.json file:
162
+ ${metaJson}`);
163
+ await r2UploadFile(
164
+ s3Client,
165
+ options.bucketId,
166
+ projectPath,
167
+ "meta.json",
168
+ version,
169
+ metaJson,
170
+ "application/json",
171
+ isDryRun
172
+ );
173
+ await Promise.all(
174
+ files.map((file) => {
175
+ const fileName = file.replaceAll("\\", "/").replace(sourceRoot.replaceAll("\\", "/"), "");
176
+ return readFile(file, { encoding: "utf8" }).then(
177
+ (fileContent) => r2UploadFile(
178
+ s3Client,
179
+ options.bucketId,
180
+ projectPath,
181
+ fileName,
182
+ version,
183
+ fileContent,
184
+ "text/plain",
185
+ isDryRun
186
+ )
187
+ );
188
+ })
189
+ );
190
+ writeSuccess(
191
+ `Successfully uploaded the ${projectName} component to the Cyclone Registry`,
192
+ config
193
+ );
194
+ return {
195
+ success: true
196
+ };
197
+ } catch (error) {
198
+ console.error("Failed to publish to Cloudflare Workers Registry");
199
+ console.error(error);
200
+ console.log("");
201
+ return {
202
+ success: false
203
+ };
204
+ }
205
+ }
206
+
207
+ export {
208
+ runExecutor
209
+ };
@@ -9,7 +9,7 @@ var __commonJS = (cb, mod) => function __require2() {
9
9
  return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
10
10
  };
11
11
 
12
- // ../../node_modules/.pnpm/tsup@8.4.0_patch_hash=751a554d775c3572381af4e7e5fa22eeda6dd6856012fb1cf521d6806eb2dc74__43fc91a315b32f908dbbc4137dbe8c2e/node_modules/tsup/assets/esm_shims.js
12
+ // ../../node_modules/.pnpm/tsup@8.4.0_patch_hash=751a554d775c3572381af4e7e5fa22eeda6dd6856012fb1cf521d6806eb2dc74__a793dd249f39ab21a45375c80b03a1ea/node_modules/tsup/assets/esm_shims.js
13
13
  import { fileURLToPath } from "url";
14
14
  import path from "path";
15
15
  var getFilename = () => fileURLToPath(import.meta.url);
@@ -0,0 +1,265 @@
1
+ import {
2
+ findWorkspaceRoot,
3
+ getConfig
4
+ } from "./chunk-PTTJW7MW.mjs";
5
+ import {
6
+ getStopwatch,
7
+ writeDebug,
8
+ writeError,
9
+ writeFatal,
10
+ writeInfo,
11
+ writeTrace
12
+ } from "./chunk-6MATO2MJ.mjs";
13
+ import {
14
+ generator_default
15
+ } from "./chunk-2B7ISOXH.mjs";
16
+ import {
17
+ __dirname
18
+ } from "./chunk-UEJFDB6Y.mjs";
19
+
20
+ // src/generators/worker/generator.ts
21
+ import {
22
+ convertNxGenerator,
23
+ ensurePackage,
24
+ formatFiles,
25
+ generateFiles,
26
+ joinPathFragments,
27
+ names,
28
+ readProjectConfiguration,
29
+ runTasksInSerial,
30
+ updateJson,
31
+ updateProjectConfiguration
32
+ } from "@nx/devkit";
33
+ import { determineProjectNameAndRootOptions } from "@nx/devkit/src/generators/project-name-and-root-utils";
34
+ import { applicationGenerator as nodeApplicationGenerator } from "@nx/node";
35
+ import { nxVersion } from "@nx/node/src/utils/versions";
36
+ import { join } from "path";
37
+
38
+ // src/generators/worker/libs/get-account-id.ts
39
+ function getAccountId(accountId) {
40
+ return `account_id = "${accountId}"`;
41
+ }
42
+
43
+ // src/generators/worker/libs/vitest-imports.ts
44
+ var vitestImports = `import { describe, expect, it, beforeAll, afterAll } from 'vitest';`;
45
+
46
+ // src/generators/worker/libs/vitest-script.ts
47
+ var vitestScript = `"test": "vitest run"`;
48
+
49
+ // src/generators/worker/generator.ts
50
+ async function applicationGenerator(tree, schema) {
51
+ const stopwatch = getStopwatch("Storm Worker generator");
52
+ let config;
53
+ try {
54
+ writeInfo(`\u26A1 Running the Storm Worker generator...
55
+
56
+ `, config);
57
+ const workspaceRoot = findWorkspaceRoot();
58
+ writeDebug(
59
+ `Loading the Storm Config from environment variables and storm.json file...
60
+ - workspaceRoot: ${workspaceRoot}`,
61
+ config
62
+ );
63
+ config = await getConfig(workspaceRoot);
64
+ writeTrace(
65
+ `Loaded Storm config into env:
66
+ ${Object.keys(process.env).map((key) => ` - ${key}=${JSON.stringify(process.env[key])}`).join("\n")}`,
67
+ config
68
+ );
69
+ const options = await normalizeOptions(tree, schema, config);
70
+ const tasks = [];
71
+ tasks.push(
72
+ await generator_default(tree, {
73
+ ...options,
74
+ skipFormat: true
75
+ })
76
+ );
77
+ tasks.push(
78
+ await nodeApplicationGenerator(tree, {
79
+ ...options,
80
+ framework: "none",
81
+ skipFormat: true,
82
+ unitTestRunner: options.unitTestRunner == "vitest" ? "none" : options.unitTestRunner,
83
+ e2eTestRunner: "none",
84
+ name: schema.name
85
+ })
86
+ );
87
+ if (options.unitTestRunner === "vitest") {
88
+ const { vitestGenerator, createOrEditViteConfig } = ensurePackage(
89
+ "@nx/vite",
90
+ nxVersion
91
+ );
92
+ const vitestTask = await vitestGenerator(tree, {
93
+ project: options.name,
94
+ uiFramework: "none",
95
+ coverageProvider: "v8",
96
+ skipFormat: true,
97
+ testEnvironment: "node"
98
+ });
99
+ tasks.push(vitestTask);
100
+ createOrEditViteConfig(
101
+ tree,
102
+ {
103
+ project: options.name,
104
+ includeLib: false,
105
+ includeVitest: true,
106
+ testEnvironment: "node"
107
+ },
108
+ true
109
+ );
110
+ }
111
+ addCloudflareFiles(tree, options);
112
+ updateTsAppConfig(tree, options);
113
+ addTargets(tree, options);
114
+ if (options.unitTestRunner === "none") {
115
+ removeTestFiles(tree, options);
116
+ }
117
+ if (!options.skipFormat) {
118
+ await formatFiles(tree);
119
+ }
120
+ if (options.template === "hono") {
121
+ tasks.push(() => {
122
+ const packageJsonPath = joinPathFragments(
123
+ options.directory ?? "",
124
+ "package.json"
125
+ );
126
+ if (tree.exists(packageJsonPath)) {
127
+ updateJson(tree, packageJsonPath, (json) => ({
128
+ ...json,
129
+ dependencies: {
130
+ hono: "4.4.0",
131
+ ...json?.dependencies
132
+ }
133
+ }));
134
+ }
135
+ });
136
+ }
137
+ return runTasksInSerial(...tasks);
138
+ } catch (error) {
139
+ return () => {
140
+ writeFatal(
141
+ "A fatal error occurred while running the generator - the process was forced to terminate",
142
+ config
143
+ );
144
+ writeError(
145
+ `An exception was thrown in the generator's process
146
+ - Details: ${error.message}
147
+ - Stacktrace: ${error.stack}`,
148
+ config
149
+ );
150
+ };
151
+ } finally {
152
+ stopwatch();
153
+ }
154
+ }
155
+ function updateTsAppConfig(tree, options) {
156
+ updateJson(tree, join(options.appProjectRoot, "tsconfig.app.json"), (json) => {
157
+ json.compilerOptions = {
158
+ ...json.compilerOptions,
159
+ esModuleInterop: true,
160
+ target: "es2021",
161
+ lib: ["es2021"],
162
+ module: "es2022",
163
+ moduleResolution: "node",
164
+ resolveJsonModule: true,
165
+ allowJs: true,
166
+ checkJs: false,
167
+ noEmit: true,
168
+ isolatedModules: true,
169
+ allowSyntheticDefaultImports: true,
170
+ forceConsistentCasingInFileNames: true,
171
+ strict: true,
172
+ skipLibCheck: true
173
+ };
174
+ json.compilerOptions.types = [
175
+ ...json.compilerOptions.types,
176
+ "@cloudflare/workers-types"
177
+ ];
178
+ return json;
179
+ });
180
+ }
181
+ function addCloudflareFiles(tree, options) {
182
+ tree.delete(join(options.appProjectRoot, "src/main.ts"));
183
+ generateFiles(
184
+ tree,
185
+ join(__dirname, "./files/common"),
186
+ options.appProjectRoot,
187
+ {
188
+ ...options,
189
+ tmpl: "",
190
+ name: options.name,
191
+ accountId: options.accountId ? getAccountId(options.accountId) : "",
192
+ vitestScript: options.unitTestRunner === "vitest" ? vitestScript : ""
193
+ }
194
+ );
195
+ if (options.template && options.template !== "none") {
196
+ generateFiles(
197
+ tree,
198
+ join(__dirname, `./files/${options.template}`),
199
+ join(options.appProjectRoot, "src"),
200
+ {
201
+ ...options,
202
+ tmpl: "",
203
+ name: options.name,
204
+ accountId: options.accountId ? getAccountId(options.accountId) : "",
205
+ vitestScript: options.unitTestRunner === "vitest" ? vitestScript : "",
206
+ vitestImports: options.unitTestRunner === "vitest" ? vitestImports : ""
207
+ }
208
+ );
209
+ }
210
+ }
211
+ function addTargets(tree, options) {
212
+ try {
213
+ const projectConfiguration = readProjectConfiguration(tree, options.name);
214
+ projectConfiguration.targets = {
215
+ ...projectConfiguration.targets ?? {},
216
+ serve: {
217
+ executor: "@storm-software/cloudflare-tools:serve",
218
+ options: {
219
+ port: options.port
220
+ }
221
+ },
222
+ "nx-release-publish": {
223
+ executor: "@storm-software/cloudflare-tools:cloudflare-publish"
224
+ }
225
+ };
226
+ if (projectConfiguration.targets.build) {
227
+ delete projectConfiguration.targets.build;
228
+ }
229
+ updateProjectConfiguration(tree, options.name, projectConfiguration);
230
+ } catch (e) {
231
+ console.error(e);
232
+ }
233
+ }
234
+ function removeTestFiles(tree, options) {
235
+ tree.delete(join(options.appProjectRoot, "src", "index.test.ts"));
236
+ }
237
+ async function normalizeOptions(host, options, config) {
238
+ const { projectName: appProjectName, projectRoot: appProjectRoot } = await determineProjectNameAndRootOptions(host, {
239
+ name: options.name,
240
+ projectType: "application",
241
+ directory: options.directory,
242
+ rootProject: options.rootProject
243
+ });
244
+ options.rootProject = appProjectRoot === ".";
245
+ return {
246
+ addPlugin: process.env.NX_ADD_PLUGINS !== "false",
247
+ accountId: process.env.STORM_BOT_CLOUDFLARE_ACCOUNT,
248
+ ...options,
249
+ name: names(appProjectName).fileName,
250
+ frontendProject: options.frontendProject ? names(options.frontendProject).fileName : void 0,
251
+ appProjectRoot,
252
+ unitTestRunner: options.unitTestRunner ?? "vitest",
253
+ rootProject: options.rootProject ?? false,
254
+ template: options.template ?? "fetch-handler",
255
+ port: options.port ?? 3e3
256
+ };
257
+ }
258
+ var generator_default2 = applicationGenerator;
259
+ var applicationSchematic = convertNxGenerator(applicationGenerator);
260
+
261
+ export {
262
+ applicationGenerator,
263
+ generator_default2 as generator_default,
264
+ applicationSchematic
265
+ };
@@ -1,9 +1,9 @@
1
1
  import "./chunk-YSCEY447.mjs";
2
- import "./chunk-FMEUIW3K.mjs";
3
- import "./chunk-XFCVGJUC.mjs";
2
+ import "./chunk-BIFOD6C3.mjs";
3
+ import "./chunk-3JEOBMM5.mjs";
4
4
  import "./chunk-WBUCIAVK.mjs";
5
5
  import "./chunk-5N2NVDKX.mjs";
6
6
  import "./chunk-PH3DHY4Q.mjs";
7
7
  import "./chunk-PTTJW7MW.mjs";
8
8
  import "./chunk-6MATO2MJ.mjs";
9
- import "./chunk-I4HGWOGD.mjs";
9
+ import "./chunk-UEJFDB6Y.mjs";
@@ -2,11 +2,11 @@
2
2
 
3
3
 
4
4
 
5
- var _chunkKTIS7T4Kjs = require('./chunk-KTIS7T4K.js');
5
+ var _chunk6KHWP2MOjs = require('./chunk-6KHWP2MO.js');
6
6
 
7
7
 
8
8
 
9
- var _chunkT6EOPD4Wjs = require('./chunk-T6EOPD4W.js');
9
+ var _chunkD4JUMEICjs = require('./chunk-D4JUMEIC.js');
10
10
  require('./chunk-EQXEFXCV.js');
11
11
  require('./chunk-4BWM53AA.js');
12
12
  require('./chunk-MCKGQKYU.js');
@@ -15,4 +15,4 @@ require('./chunk-MCKGQKYU.js');
15
15
 
16
16
 
17
17
 
18
- exports.applicationGenerator = _chunkKTIS7T4Kjs.applicationGenerator; exports.applicationSchematic = _chunkKTIS7T4Kjs.applicationSchematic; exports.initGenerator = _chunkT6EOPD4Wjs.initGenerator; exports.initSchematic = _chunkT6EOPD4Wjs.initSchematic;
18
+ exports.applicationGenerator = _chunk6KHWP2MOjs.applicationGenerator; exports.applicationSchematic = _chunk6KHWP2MOjs.applicationSchematic; exports.initGenerator = _chunkD4JUMEICjs.initGenerator; exports.initSchematic = _chunkD4JUMEICjs.initSchematic;
@@ -2,14 +2,14 @@ import "./chunk-3J7KBHMJ.mjs";
2
2
  import {
3
3
  applicationGenerator,
4
4
  applicationSchematic
5
- } from "./chunk-XK2GK744.mjs";
5
+ } from "./chunk-JEMQ2Y24.mjs";
6
6
  import {
7
7
  initGenerator,
8
8
  initSchematic
9
- } from "./chunk-KOHPCG2W.mjs";
9
+ } from "./chunk-2B7ISOXH.mjs";
10
10
  import "./chunk-PTTJW7MW.mjs";
11
11
  import "./chunk-6MATO2MJ.mjs";
12
- import "./chunk-I4HGWOGD.mjs";
12
+ import "./chunk-UEJFDB6Y.mjs";
13
13
  export {
14
14
  applicationGenerator,
15
15
  applicationSchematic,
package/dist/index.js CHANGED
@@ -3,11 +3,11 @@ require('./chunk-DHBG5ASJ.js');
3
3
 
4
4
 
5
5
 
6
- var _chunkKTIS7T4Kjs = require('./chunk-KTIS7T4K.js');
6
+ var _chunk6KHWP2MOjs = require('./chunk-6KHWP2MO.js');
7
7
 
8
8
 
9
9
 
10
- var _chunkT6EOPD4Wjs = require('./chunk-T6EOPD4W.js');
10
+ var _chunkD4JUMEICjs = require('./chunk-D4JUMEIC.js');
11
11
  require('./chunk-CVGPWUNP.js');
12
12
  require('./chunk-IRORGRVZ.js');
13
13
  require('./chunk-YAUK66IM.js');
@@ -155,4 +155,4 @@ function createPackageJson(projectJsonPath, workspaceRoot) {
155
155
 
156
156
 
157
157
 
158
- exports.applicationGenerator = _chunkKTIS7T4Kjs.applicationGenerator; exports.applicationSchematic = _chunkKTIS7T4Kjs.applicationSchematic; exports.createNodesV2 = createNodesV2; exports.getInternalDependencies = _chunkFFOLWRMAjs.getInternalDependencies; exports.initGenerator = _chunkT6EOPD4Wjs.initGenerator; exports.initSchematic = _chunkT6EOPD4Wjs.initSchematic; exports.name = name; exports.r2UploadFile = _chunkFFOLWRMAjs.r2UploadFile;
158
+ exports.applicationGenerator = _chunk6KHWP2MOjs.applicationGenerator; exports.applicationSchematic = _chunk6KHWP2MOjs.applicationSchematic; exports.createNodesV2 = createNodesV2; exports.getInternalDependencies = _chunkFFOLWRMAjs.getInternalDependencies; exports.initGenerator = _chunkD4JUMEICjs.initGenerator; exports.initSchematic = _chunkD4JUMEICjs.initSchematic; exports.name = name; exports.r2UploadFile = _chunkFFOLWRMAjs.r2UploadFile;
package/dist/index.mjs CHANGED
@@ -3,14 +3,14 @@ import "./chunk-3J7KBHMJ.mjs";
3
3
  import {
4
4
  applicationGenerator,
5
5
  applicationSchematic
6
- } from "./chunk-XK2GK744.mjs";
6
+ } from "./chunk-JEMQ2Y24.mjs";
7
7
  import {
8
8
  initGenerator,
9
9
  initSchematic
10
- } from "./chunk-KOHPCG2W.mjs";
10
+ } from "./chunk-2B7ISOXH.mjs";
11
11
  import "./chunk-7Z5PILRU.mjs";
12
- import "./chunk-FMEUIW3K.mjs";
13
- import "./chunk-XFCVGJUC.mjs";
12
+ import "./chunk-BIFOD6C3.mjs";
13
+ import "./chunk-3JEOBMM5.mjs";
14
14
  import "./chunk-WBUCIAVK.mjs";
15
15
  import {
16
16
  getInternalDependencies,
@@ -22,7 +22,7 @@ import {
22
22
  } from "./chunk-PH3DHY4Q.mjs";
23
23
  import "./chunk-PTTJW7MW.mjs";
24
24
  import "./chunk-6MATO2MJ.mjs";
25
- import "./chunk-I4HGWOGD.mjs";
25
+ import "./chunk-UEJFDB6Y.mjs";
26
26
 
27
27
  // src/plugins/index.ts
28
28
  import {
@@ -1,11 +1,11 @@
1
1
  import {
2
2
  runExecutor
3
- } from "../../../chunk-FMEUIW3K.mjs";
4
- import "../../../chunk-XFCVGJUC.mjs";
3
+ } from "../../../chunk-BIFOD6C3.mjs";
4
+ import "../../../chunk-3JEOBMM5.mjs";
5
5
  import "../../../chunk-PH3DHY4Q.mjs";
6
6
  import "../../../chunk-PTTJW7MW.mjs";
7
7
  import "../../../chunk-6MATO2MJ.mjs";
8
- import "../../../chunk-I4HGWOGD.mjs";
8
+ import "../../../chunk-UEJFDB6Y.mjs";
9
9
  export {
10
10
  runExecutor as default
11
11
  };
@@ -5,7 +5,7 @@ import "../../../chunk-5N2NVDKX.mjs";
5
5
  import "../../../chunk-PH3DHY4Q.mjs";
6
6
  import "../../../chunk-PTTJW7MW.mjs";
7
7
  import "../../../chunk-6MATO2MJ.mjs";
8
- import "../../../chunk-I4HGWOGD.mjs";
8
+ import "../../../chunk-UEJFDB6Y.mjs";
9
9
  export {
10
10
  runExecutor as default
11
11
  };
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  withRunExecutor
3
- } from "../../../chunk-XFCVGJUC.mjs";
3
+ } from "../../../chunk-3JEOBMM5.mjs";
4
4
  import {
5
5
  createCliOptions
6
6
  } from "../../../chunk-PH3DHY4Q.mjs";
@@ -8,7 +8,7 @@ import "../../../chunk-PTTJW7MW.mjs";
8
8
  import "../../../chunk-6MATO2MJ.mjs";
9
9
  import {
10
10
  __require
11
- } from "../../../chunk-I4HGWOGD.mjs";
11
+ } from "../../../chunk-UEJFDB6Y.mjs";
12
12
 
13
13
  // src/executors/serve/executor.ts
14
14
  import { createAsyncIterable } from "@nx/devkit/src/utils/async-iterable";
@@ -2,10 +2,10 @@
2
2
 
3
3
 
4
4
 
5
- var _chunkT6EOPD4Wjs = require('../../../chunk-T6EOPD4W.js');
5
+ var _chunkD4JUMEICjs = require('../../../chunk-D4JUMEIC.js');
6
6
  require('../../../chunk-MCKGQKYU.js');
7
7
 
8
8
 
9
9
 
10
10
 
11
- exports.default = _chunkT6EOPD4Wjs.generator_default; exports.initGenerator = _chunkT6EOPD4Wjs.initGenerator; exports.initSchematic = _chunkT6EOPD4Wjs.initSchematic;
11
+ exports.default = _chunkD4JUMEICjs.generator_default; exports.initGenerator = _chunkD4JUMEICjs.initGenerator; exports.initSchematic = _chunkD4JUMEICjs.initSchematic;
@@ -2,8 +2,8 @@ import {
2
2
  generator_default,
3
3
  initGenerator,
4
4
  initSchematic
5
- } from "../../../chunk-KOHPCG2W.mjs";
6
- import "../../../chunk-I4HGWOGD.mjs";
5
+ } from "../../../chunk-2B7ISOXH.mjs";
6
+ import "../../../chunk-UEJFDB6Y.mjs";
7
7
  export {
8
8
  generator_default as default,
9
9
  initGenerator,
@@ -2,8 +2,8 @@
2
2
 
3
3
 
4
4
 
5
- var _chunkKTIS7T4Kjs = require('../../../chunk-KTIS7T4K.js');
6
- require('../../../chunk-T6EOPD4W.js');
5
+ var _chunk6KHWP2MOjs = require('../../../chunk-6KHWP2MO.js');
6
+ require('../../../chunk-D4JUMEIC.js');
7
7
  require('../../../chunk-EQXEFXCV.js');
8
8
  require('../../../chunk-4BWM53AA.js');
9
9
  require('../../../chunk-MCKGQKYU.js');
@@ -11,4 +11,4 @@ require('../../../chunk-MCKGQKYU.js');
11
11
 
12
12
 
13
13
 
14
- exports.applicationGenerator = _chunkKTIS7T4Kjs.applicationGenerator; exports.applicationSchematic = _chunkKTIS7T4Kjs.applicationSchematic; exports.default = _chunkKTIS7T4Kjs.generator_default;
14
+ exports.applicationGenerator = _chunk6KHWP2MOjs.applicationGenerator; exports.applicationSchematic = _chunk6KHWP2MOjs.applicationSchematic; exports.default = _chunk6KHWP2MOjs.generator_default;