@storm-software/cloudflare-tools 0.26.0 → 0.27.1
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 +14 -0
- package/README.md +1 -1
- package/index.js +6 -7
- package/meta.json +1 -1
- package/package.json +1 -1
- package/packages/build-tools/src/config/browser-config.d.ts +1 -1
- package/packages/build-tools/src/config/default-config.d.ts +1 -1
- package/packages/build-tools/src/config/neutral-config.d.ts +1 -1
- package/packages/build-tools/src/config/node-config.d.ts +2 -2
- package/packages/build-tools/src/plugins/index.d.ts +1 -0
- package/packages/build-tools/src/plugins/ts-resolve.d.ts +6 -0
- package/packages/build-tools/src/utils/out-extension.d.ts +3 -1
- package/src/executors/cloudflare-publish/executor.js +5 -6
- package/src/executors/serve/executor.js +5 -6
- package/src/generators/init/generator.js +1 -1
- package/src/generators/worker/generator.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/cloudflare-tools",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.27.1",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"description": "⚡The Storm-Ops monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.",
|
|
6
6
|
"repository": {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import type { BuildOptions, GetConfigParams } from "../../declarations";
|
|
2
|
-
export declare const browserConfig: ({ entry, outDir, projectRoot, workspaceRoot, tsconfig, splitting, treeshake, debug, shims, external, banner, platform, verbose, metafile, skipNativeModulesPlugin, define, env, plugins, generatePackageJson,
|
|
2
|
+
export declare const browserConfig: ({ entry, outDir, projectRoot, workspaceRoot, tsconfig, splitting, treeshake, debug, shims, external, banner, platform, verbose, metafile, skipNativeModulesPlugin, define, env, plugins, generatePackageJson, minify, getTransform }: GetConfigParams) => BuildOptions;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import type { BuildOptions, GetConfigParams } from "../../declarations";
|
|
2
|
-
export declare function defaultConfig({ entry, outDir, projectRoot, workspaceRoot, tsconfig, splitting, treeshake, format, debug, shims, external, banner, platform, verbose, apiReport, docModel, tsdocMetadata, metafile, skipNativeModulesPlugin, define, env, plugins, generatePackageJson,
|
|
2
|
+
export declare function defaultConfig({ entry, outDir, projectRoot, workspaceRoot, tsconfig, splitting, treeshake, format, debug, shims, external, banner, platform, verbose, apiReport, docModel, tsdocMetadata, metafile, skipNativeModulesPlugin, define, env, plugins, generatePackageJson, minify, getTransform }: GetConfigParams): BuildOptions;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import type { BuildOptions, GetConfigParams } from "../../declarations";
|
|
2
|
-
export declare const neutralConfig: ({ entry, outDir, projectRoot, workspaceRoot, tsconfig, splitting, treeshake, debug, shims, external, banner, platform, verbose, metafile, skipNativeModulesPlugin, define, env, apiReport, docModel, tsdocMetadata, plugins, generatePackageJson,
|
|
2
|
+
export declare const neutralConfig: ({ entry, outDir, projectRoot, workspaceRoot, tsconfig, splitting, treeshake, debug, shims, external, banner, platform, verbose, metafile, skipNativeModulesPlugin, define, env, apiReport, docModel, tsdocMetadata, plugins, generatePackageJson, minify, getTransform }: GetConfigParams) => BuildOptions;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { BuildOptions, GetConfigParams } from "../../declarations";
|
|
2
|
-
export declare function nodeConfig({ entry, outDir, projectRoot, workspaceRoot, tsconfig, splitting, treeshake, debug, shims, external, banner, platform, verbose, apiReport, docModel, tsdocMetadata, metafile, skipNativeModulesPlugin, define, env, plugins, generatePackageJson,
|
|
3
|
-
export declare function workerConfig({ entry, outDir, projectRoot, workspaceRoot, tsconfig, splitting, treeshake, debug, external, banner, verbose, apiReport, docModel, tsdocMetadata, shims, metafile, skipNativeModulesPlugin, define, env, plugins, generatePackageJson,
|
|
2
|
+
export declare function nodeConfig({ entry, outDir, projectRoot, workspaceRoot, tsconfig, splitting, treeshake, debug, shims, external, banner, platform, verbose, apiReport, docModel, tsdocMetadata, metafile, skipNativeModulesPlugin, define, env, plugins, generatePackageJson, minify, getTransform }: GetConfigParams): BuildOptions;
|
|
3
|
+
export declare function workerConfig({ entry, outDir, projectRoot, workspaceRoot, tsconfig, splitting, treeshake, debug, external, banner, verbose, apiReport, docModel, tsdocMetadata, shims, metafile, skipNativeModulesPlugin, define, env, plugins, generatePackageJson, getTransform }: GetConfigParams): BuildOptions;
|
|
@@ -618532,14 +618532,13 @@ async function presetGeneratorFn(tree, options) {
|
|
|
618532
618532
|
options.name,
|
|
618533
618533
|
options.namespace,
|
|
618534
618534
|
"storm",
|
|
618535
|
-
"
|
|
618535
|
+
"storm-stack",
|
|
618536
618536
|
"storm-ops",
|
|
618537
618537
|
"acidic",
|
|
618538
|
-
"acidic-
|
|
618539
|
-
"acidic-model",
|
|
618538
|
+
"acidic-engine",
|
|
618540
618539
|
"cyclone-ui",
|
|
618541
|
-
"
|
|
618542
|
-
"
|
|
618540
|
+
"rust",
|
|
618541
|
+
"nx",
|
|
618543
618542
|
"graphql",
|
|
618544
618543
|
"sullivanpj",
|
|
618545
618544
|
"monorepo"
|
|
@@ -618563,7 +618562,7 @@ async function presetGeneratorFn(tree, options) {
|
|
|
618563
618562
|
},
|
|
618564
618563
|
{
|
|
618565
618564
|
"name": "Pat Sullivan",
|
|
618566
|
-
"email": "
|
|
618565
|
+
"email": "admin@stormsoftware.com",
|
|
618567
618566
|
"url": "https://patsullivan.org"
|
|
618568
618567
|
}
|
|
618569
618568
|
];
|
|
@@ -618580,14 +618580,13 @@ async function presetGeneratorFn(tree, options) {
|
|
|
618580
618580
|
options.name,
|
|
618581
618581
|
options.namespace,
|
|
618582
618582
|
"storm",
|
|
618583
|
-
"
|
|
618583
|
+
"storm-stack",
|
|
618584
618584
|
"storm-ops",
|
|
618585
618585
|
"acidic",
|
|
618586
|
-
"acidic-
|
|
618587
|
-
"acidic-model",
|
|
618586
|
+
"acidic-engine",
|
|
618588
618587
|
"cyclone-ui",
|
|
618589
|
-
"
|
|
618590
|
-
"
|
|
618588
|
+
"rust",
|
|
618589
|
+
"nx",
|
|
618591
618590
|
"graphql",
|
|
618592
618591
|
"sullivanpj",
|
|
618593
618592
|
"monorepo"
|
|
@@ -618611,7 +618610,7 @@ async function presetGeneratorFn(tree, options) {
|
|
|
618611
618610
|
},
|
|
618612
618611
|
{
|
|
618613
618612
|
"name": "Pat Sullivan",
|
|
618614
|
-
"email": "
|
|
618613
|
+
"email": "admin@stormsoftware.com",
|
|
618615
618614
|
"url": "https://patsullivan.org"
|
|
618616
618615
|
}
|
|
618617
618616
|
];
|
|
@@ -427545,7 +427545,7 @@ var require_package3 = __commonJS({
|
|
|
427545
427545
|
"packages/cloudflare-tools/package.json"(exports2, module2) {
|
|
427546
427546
|
module2.exports = {
|
|
427547
427547
|
name: "@storm-software/cloudflare-tools",
|
|
427548
|
-
version: "0.
|
|
427548
|
+
version: "0.27.1",
|
|
427549
427549
|
type: "commonjs",
|
|
427550
427550
|
description: "\u26A1The Storm-Ops monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.",
|
|
427551
427551
|
repository: {
|
|
@@ -660097,7 +660097,7 @@ var require_package13 = __commonJS({
|
|
|
660097
660097
|
"packages/cloudflare-tools/package.json"(exports2, module2) {
|
|
660098
660098
|
module2.exports = {
|
|
660099
660099
|
name: "@storm-software/cloudflare-tools",
|
|
660100
|
-
version: "0.
|
|
660100
|
+
version: "0.27.1",
|
|
660101
660101
|
type: "commonjs",
|
|
660102
660102
|
description: "\u26A1The Storm-Ops monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.",
|
|
660103
660103
|
repository: {
|