@storm-software/cloudflare-tools 0.63.41 → 0.63.42
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 +9 -0
- package/README.md +1 -1
- package/dist/{chunk-VZKF4MGJ.mjs → chunk-35RTYQX5.mjs} +2 -3
- package/dist/{chunk-BPQM3TJO.mjs → chunk-5CBAPSWU.mjs} +3 -3
- package/dist/{chunk-KTSIPYX6.mjs → chunk-5TSMUCK7.mjs} +3 -3
- package/dist/{chunk-QFLO73FL.js → chunk-6HO4SE5I.js} +2 -2
- package/dist/{chunk-53PYIWAT.mjs → chunk-DADPPALG.mjs} +1 -1
- package/dist/{chunk-MIU47PPG.js → chunk-JU6D63FQ.js} +2 -3
- package/dist/{chunk-C7KE3V74.js → chunk-MZMVYPGX.js} +3 -3
- package/dist/{chunk-4MSDFFY7.js → chunk-OVVMIP6M.js} +44 -44
- package/dist/{chunk-ZNJASYTA.js → chunk-OZCZ4LBJ.js} +118 -118
- package/dist/{chunk-GVYCSD3B.js → chunk-P7GMTWQM.js} +16 -16
- package/dist/{chunk-QJUZMEKH.mjs → chunk-QCOL6VUC.mjs} +4 -4
- package/dist/{chunk-K3TXQOVH.mjs → chunk-QCZ2SDC7.mjs} +1 -1
- package/dist/{chunk-OBZTKW5Y.mjs → chunk-UHJ6SPET.mjs} +3 -3
- package/dist/{chunk-MVGWR7ND.js → chunk-X7OMWG6Z.js} +12 -12
- package/dist/{chunk-AYTN3EEV.mjs → chunk-XCADCGCM.mjs} +1 -1
- package/dist/{chunk-BEQIWUAS.mjs → chunk-YDKLGL5J.mjs} +1 -1
- package/dist/executors.js +5 -5
- package/dist/executors.mjs +7 -7
- package/dist/generators.js +5 -5
- package/dist/generators.mjs +5 -5
- package/dist/index.js +8 -8
- package/dist/index.mjs +9 -9
- package/dist/src/executors/cloudflare-publish/executor.js +3 -3
- package/dist/src/executors/cloudflare-publish/executor.mjs +5 -5
- package/dist/src/executors/r2-upload-publish/executor.js +5 -5
- package/dist/src/executors/r2-upload-publish/executor.mjs +5 -5
- package/dist/src/executors/serve/executor.js +4 -4
- package/dist/src/executors/serve/executor.mjs +4 -4
- package/dist/src/generators/init/generator.js +2 -2
- package/dist/src/generators/init/generator.mjs +2 -2
- package/dist/src/generators/worker/generator.js +5 -5
- package/dist/src/generators/worker/generator.mjs +5 -5
- package/dist/src/utils/index.js +3 -3
- package/dist/src/utils/index.mjs +3 -3
- package/dist/src/utils/r2-bucket-helpers.js +3 -3
- package/dist/src/utils/r2-bucket-helpers.mjs +3 -3
- package/dist/tsup.config.mjs +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Cloudflare Tools
|
|
4
4
|
|
|
5
|
+
## [0.63.41](https://github.com/storm-software/storm-ops/releases/tag/cloudflare-tools%400.63.41) (2025-07-10)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Update links and `zod` to v4
|
|
10
|
+
([fbdb2f1e6](https://github.com/storm-software/storm-ops/commit/fbdb2f1e6))
|
|
11
|
+
- **monorepo:** Regenerate README markdown files
|
|
12
|
+
([113ca7595](https://github.com/storm-software/storm-ops/commit/113ca7595))
|
|
13
|
+
|
|
5
14
|
## [0.63.40](https://github.com/storm-software/storm-ops/releases/tag/cloudflare-tools%400.63.40) (2025-07-10)
|
|
6
15
|
|
|
7
16
|
### Miscellaneous
|
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 -->
|
|
@@ -248,7 +248,6 @@ var STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
|
|
|
248
248
|
var STORM_DEFAULT_CONTACT = "https://stormsoftware.com/contact";
|
|
249
249
|
var STORM_DEFAULT_LICENSING = "https://stormsoftware.com/license";
|
|
250
250
|
var STORM_DEFAULT_LICENSE = "Apache-2.0";
|
|
251
|
-
var STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/brand-banner.png";
|
|
252
251
|
var STORM_DEFAULT_SOCIAL_TWITTER = "StormSoftwareHQ";
|
|
253
252
|
var STORM_DEFAULT_SOCIAL_DISCORD = "https://discord.gg/MQ6YVzakM5";
|
|
254
253
|
var STORM_DEFAULT_SOCIAL_TELEGRAM = "https://t.me/storm_software";
|
|
@@ -364,13 +363,13 @@ var WorkspaceBotConfigSchema = z.object({
|
|
|
364
363
|
"The workspace's bot user's config used to automated various operations tasks"
|
|
365
364
|
);
|
|
366
365
|
var WorkspaceReleaseConfigSchema = z.object({
|
|
367
|
-
banner: z.string().trim().
|
|
366
|
+
banner: z.string().trim().optional().describe(
|
|
368
367
|
"A URL to a banner image used to display the workspace's release"
|
|
369
368
|
),
|
|
370
369
|
header: z.string().trim().optional().describe(
|
|
371
370
|
"A header message appended to the start of the workspace's release notes"
|
|
372
371
|
),
|
|
373
|
-
footer: z.string().trim().
|
|
372
|
+
footer: z.string().trim().optional().describe(
|
|
374
373
|
"A footer message appended to the end of the workspace's release notes"
|
|
375
374
|
)
|
|
376
375
|
}).describe("The workspace's release config used during the release process");
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
import {
|
|
6
6
|
getConfig,
|
|
7
7
|
getWorkspaceConfig
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-XCADCGCM.mjs";
|
|
9
9
|
import {
|
|
10
10
|
findWorkspaceRoot,
|
|
11
11
|
formatLogMessage,
|
|
@@ -19,11 +19,11 @@ import {
|
|
|
19
19
|
writeSuccess,
|
|
20
20
|
writeTrace,
|
|
21
21
|
writeWarning
|
|
22
|
-
} from "./chunk-
|
|
22
|
+
} from "./chunk-35RTYQX5.mjs";
|
|
23
23
|
import {
|
|
24
24
|
__dirname,
|
|
25
25
|
__require
|
|
26
|
-
} from "./chunk-
|
|
26
|
+
} from "./chunk-DADPPALG.mjs";
|
|
27
27
|
|
|
28
28
|
// ../config-tools/src/utilities/apply-workspace-tokens.ts
|
|
29
29
|
var applyWorkspaceBaseTokens = async (option, tokenParams) => {
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import {
|
|
2
2
|
__commonJS
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-DADPPALG.mjs";
|
|
4
4
|
|
|
5
5
|
// package.json
|
|
6
6
|
var require_package = __commonJS({
|
|
7
7
|
"package.json"(exports, module) {
|
|
8
8
|
module.exports = {
|
|
9
9
|
name: "@storm-software/cloudflare-tools",
|
|
10
|
-
version: "0.63.
|
|
10
|
+
version: "0.63.41",
|
|
11
11
|
description: "A Nx plugin package that contains various executors, generators, and utilities that assist in managing Cloudflare services.",
|
|
12
12
|
repository: {
|
|
13
13
|
type: "github",
|
|
@@ -175,7 +175,7 @@ var require_package = __commonJS({
|
|
|
175
175
|
nx: "catalog:",
|
|
176
176
|
tsup: "catalog:",
|
|
177
177
|
untyped: "catalog:",
|
|
178
|
-
wrangler: "^4.24.
|
|
178
|
+
wrangler: "^4.24.3"
|
|
179
179
|
},
|
|
180
180
|
publishConfig: {
|
|
181
181
|
access: "public"
|
|
@@ -7,7 +7,7 @@ var require_package = _chunkMCKGQKYUjs.__commonJS.call(void 0, {
|
|
|
7
7
|
"package.json"(exports, module) {
|
|
8
8
|
module.exports = {
|
|
9
9
|
name: "@storm-software/cloudflare-tools",
|
|
10
|
-
version: "0.63.
|
|
10
|
+
version: "0.63.41",
|
|
11
11
|
description: "A Nx plugin package that contains various executors, generators, and utilities that assist in managing Cloudflare services.",
|
|
12
12
|
repository: {
|
|
13
13
|
type: "github",
|
|
@@ -175,7 +175,7 @@ var require_package = _chunkMCKGQKYUjs.__commonJS.call(void 0, {
|
|
|
175
175
|
nx: "catalog:",
|
|
176
176
|
tsup: "catalog:",
|
|
177
177
|
untyped: "catalog:",
|
|
178
|
-
wrangler: "^4.24.
|
|
178
|
+
wrangler: "^4.24.3"
|
|
179
179
|
},
|
|
180
180
|
publishConfig: {
|
|
181
181
|
access: "public"
|
|
@@ -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=
|
|
12
|
+
// ../../node_modules/.pnpm/tsup@8.4.0_patch_hash=751a554d775c3572381af4e7e5fa22eeda6dd6856012fb1cf521d6806eb2dc74__88d953d492406e78e6083133318a7a17/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);
|
|
@@ -248,7 +248,6 @@ var STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
|
|
|
248
248
|
var STORM_DEFAULT_CONTACT = "https://stormsoftware.com/contact";
|
|
249
249
|
var STORM_DEFAULT_LICENSING = "https://stormsoftware.com/license";
|
|
250
250
|
var STORM_DEFAULT_LICENSE = "Apache-2.0";
|
|
251
|
-
var STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/brand-banner.png";
|
|
252
251
|
var STORM_DEFAULT_SOCIAL_TWITTER = "StormSoftwareHQ";
|
|
253
252
|
var STORM_DEFAULT_SOCIAL_DISCORD = "https://discord.gg/MQ6YVzakM5";
|
|
254
253
|
var STORM_DEFAULT_SOCIAL_TELEGRAM = "https://t.me/storm_software";
|
|
@@ -364,13 +363,13 @@ var WorkspaceBotConfigSchema = z.object({
|
|
|
364
363
|
"The workspace's bot user's config used to automated various operations tasks"
|
|
365
364
|
);
|
|
366
365
|
var WorkspaceReleaseConfigSchema = z.object({
|
|
367
|
-
banner: z.string().trim().
|
|
366
|
+
banner: z.string().trim().optional().describe(
|
|
368
367
|
"A URL to a banner image used to display the workspace's release"
|
|
369
368
|
),
|
|
370
369
|
header: z.string().trim().optional().describe(
|
|
371
370
|
"A header message appended to the start of the workspace's release notes"
|
|
372
371
|
),
|
|
373
|
-
footer: z.string().trim().
|
|
372
|
+
footer: z.string().trim().optional().describe(
|
|
374
373
|
"A footer message appended to the end of the workspace's release notes"
|
|
375
374
|
)
|
|
376
375
|
}).describe("The workspace's release config used during the release process");
|
|
@@ -1,14 +1,14 @@
|
|
|
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
|
|
4
|
+
var _chunkJU6D63FQjs = require('./chunk-JU6D63FQ.js');
|
|
5
5
|
|
|
6
6
|
// src/utils/r2-bucket-helpers.ts
|
|
7
7
|
var _crypto = require('crypto');
|
|
8
8
|
var r2UploadFile = async (client, bucketName, projectPath, fileName, version, fileContent, contentType = "text/plain", isDryRun = false) => {
|
|
9
9
|
const checksum = _crypto.createHash.call(void 0, "sha256").update(fileContent).digest("base64");
|
|
10
10
|
const fileKey = `${projectPath}/${fileName.startsWith("/") ? fileName.substring(1) : fileName}`;
|
|
11
|
-
|
|
11
|
+
_chunkJU6D63FQjs.writeDebug.call(void 0, `Uploading file: ${fileKey}`);
|
|
12
12
|
if (!isDryRun) {
|
|
13
13
|
await client.putObject({
|
|
14
14
|
Bucket: bucketName,
|
|
@@ -21,7 +21,7 @@ var r2UploadFile = async (client, bucketName, projectPath, fileName, version, fi
|
|
|
21
21
|
}
|
|
22
22
|
});
|
|
23
23
|
} else {
|
|
24
|
-
|
|
24
|
+
_chunkJU6D63FQjs.writeWarning.call(void 0, "[Dry run]: skipping upload to the Cyclone Registry.");
|
|
25
25
|
}
|
|
26
26
|
};
|
|
27
27
|
var getInternalDependencies = (projectName, graph) => {
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
var
|
|
18
|
+
var _chunkJU6D63FQjs = require('./chunk-JU6D63FQ.js');
|
|
19
19
|
|
|
20
20
|
// ../config-tools/src/create-storm-config.ts
|
|
21
21
|
var _defu = require('defu'); var _defu2 = _interopRequireDefault(_defu);
|
|
@@ -24,7 +24,7 @@ var _defu = require('defu'); var _defu2 = _interopRequireDefault(_defu);
|
|
|
24
24
|
var _c12 = require('c12');
|
|
25
25
|
|
|
26
26
|
var getConfigFileByName = async (fileName, filePath, options = {}) => {
|
|
27
|
-
const workspacePath = filePath ||
|
|
27
|
+
const workspacePath = filePath || _chunkJU6D63FQjs.findWorkspaceRoot.call(void 0, filePath);
|
|
28
28
|
const configs = await Promise.all([
|
|
29
29
|
_c12.loadConfig.call(void 0, {
|
|
30
30
|
cwd: workspacePath,
|
|
@@ -33,7 +33,7 @@ var getConfigFileByName = async (fileName, filePath, options = {}) => {
|
|
|
33
33
|
envName: _optionalChain([fileName, 'optionalAccess', _ => _.toUpperCase, 'call', _2 => _2()]),
|
|
34
34
|
jitiOptions: {
|
|
35
35
|
debug: false,
|
|
36
|
-
fsCache: process.env.STORM_SKIP_CACHE === "true" ? false :
|
|
36
|
+
fsCache: process.env.STORM_SKIP_CACHE === "true" ? false : _chunkJU6D63FQjs.joinPaths.call(void 0,
|
|
37
37
|
process.env.STORM_CACHE_DIR || "node_modules/.cache/storm",
|
|
38
38
|
"jiti"
|
|
39
39
|
)
|
|
@@ -47,7 +47,7 @@ var getConfigFileByName = async (fileName, filePath, options = {}) => {
|
|
|
47
47
|
envName: _optionalChain([fileName, 'optionalAccess', _3 => _3.toUpperCase, 'call', _4 => _4()]),
|
|
48
48
|
jitiOptions: {
|
|
49
49
|
debug: false,
|
|
50
|
-
fsCache: process.env.STORM_SKIP_CACHE === "true" ? false :
|
|
50
|
+
fsCache: process.env.STORM_SKIP_CACHE === "true" ? false : _chunkJU6D63FQjs.joinPaths.call(void 0,
|
|
51
51
|
process.env.STORM_CACHE_DIR || "node_modules/.cache/storm",
|
|
52
52
|
"jiti"
|
|
53
53
|
)
|
|
@@ -59,12 +59,12 @@ var getConfigFileByName = async (fileName, filePath, options = {}) => {
|
|
|
59
59
|
return _defu2.default.call(void 0, _nullishCoalesce(configs[0], () => ( {})), _nullishCoalesce(configs[1], () => ( {})));
|
|
60
60
|
};
|
|
61
61
|
var getConfigFile = async (filePath, additionalFileNames = []) => {
|
|
62
|
-
const workspacePath = filePath ? filePath :
|
|
62
|
+
const workspacePath = filePath ? filePath : _chunkJU6D63FQjs.findWorkspaceRoot.call(void 0, filePath);
|
|
63
63
|
const result = await getConfigFileByName("storm-workspace", workspacePath);
|
|
64
64
|
let config = result.config;
|
|
65
65
|
const configFile = result.configFile;
|
|
66
66
|
if (config && configFile && Object.keys(config).length > 0 && !config.skipConfigLogging) {
|
|
67
|
-
|
|
67
|
+
_chunkJU6D63FQjs.writeTrace.call(void 0,
|
|
68
68
|
`Found Storm configuration file "${configFile.includes(`${workspacePath}/`) ? configFile.replace(`${workspacePath}/`, "") : configFile}" at "${workspacePath}"`,
|
|
69
69
|
{
|
|
70
70
|
logLevel: "all"
|
|
@@ -80,7 +80,7 @@ var getConfigFile = async (filePath, additionalFileNames = []) => {
|
|
|
80
80
|
for (const result2 of results) {
|
|
81
81
|
if (_optionalChain([result2, 'optionalAccess', _5 => _5.config]) && _optionalChain([result2, 'optionalAccess', _6 => _6.configFile]) && Object.keys(result2.config).length > 0) {
|
|
82
82
|
if (!config.skipConfigLogging && !result2.config.skipConfigLogging) {
|
|
83
|
-
|
|
83
|
+
_chunkJU6D63FQjs.writeTrace.call(void 0,
|
|
84
84
|
`Found alternative configuration file "${result2.configFile.includes(`${workspacePath}/`) ? result2.configFile.replace(`${workspacePath}/`, "") : result2.configFile}" at "${workspacePath}"`,
|
|
85
85
|
{
|
|
86
86
|
logLevel: "all"
|
|
@@ -156,15 +156,15 @@ var getConfigEnv = () => {
|
|
|
156
156
|
support: process.env[`${prefix}SUPPORT`] || void 0,
|
|
157
157
|
timezone: process.env[`${prefix}TIMEZONE`] || process.env.TZ || void 0,
|
|
158
158
|
locale: process.env[`${prefix}LOCALE`] || process.env.LOCALE || void 0,
|
|
159
|
-
configFile: process.env[`${prefix}CONFIG_FILE`] ?
|
|
160
|
-
workspaceRoot: process.env[`${prefix}WORKSPACE_ROOT`] ?
|
|
159
|
+
configFile: process.env[`${prefix}CONFIG_FILE`] ? _chunkJU6D63FQjs.correctPaths.call(void 0, process.env[`${prefix}CONFIG_FILE`]) : void 0,
|
|
160
|
+
workspaceRoot: process.env[`${prefix}WORKSPACE_ROOT`] ? _chunkJU6D63FQjs.correctPaths.call(void 0, process.env[`${prefix}WORKSPACE_ROOT`]) : void 0,
|
|
161
161
|
directories: {
|
|
162
|
-
cache: process.env[`${prefix}CACHE_DIR`] ?
|
|
163
|
-
data: process.env[`${prefix}DATA_DIR`] ?
|
|
164
|
-
config: process.env[`${prefix}CONFIG_DIR`] ?
|
|
165
|
-
temp: process.env[`${prefix}TEMP_DIR`] ?
|
|
166
|
-
log: process.env[`${prefix}LOG_DIR`] ?
|
|
167
|
-
build: process.env[`${prefix}BUILD_DIR`] ?
|
|
162
|
+
cache: process.env[`${prefix}CACHE_DIR`] ? _chunkJU6D63FQjs.correctPaths.call(void 0, process.env[`${prefix}CACHE_DIR`]) : process.env[`${prefix}CACHE_DIRECTORY`] ? _chunkJU6D63FQjs.correctPaths.call(void 0, process.env[`${prefix}CACHE_DIRECTORY`]) : void 0,
|
|
163
|
+
data: process.env[`${prefix}DATA_DIR`] ? _chunkJU6D63FQjs.correctPaths.call(void 0, process.env[`${prefix}DATA_DIR`]) : process.env[`${prefix}DATA_DIRECTORY`] ? _chunkJU6D63FQjs.correctPaths.call(void 0, process.env[`${prefix}DATA_DIRECTORY`]) : void 0,
|
|
164
|
+
config: process.env[`${prefix}CONFIG_DIR`] ? _chunkJU6D63FQjs.correctPaths.call(void 0, process.env[`${prefix}CONFIG_DIR`]) : process.env[`${prefix}CONFIG_DIRECTORY`] ? _chunkJU6D63FQjs.correctPaths.call(void 0, process.env[`${prefix}CONFIG_DIRECTORY`]) : void 0,
|
|
165
|
+
temp: process.env[`${prefix}TEMP_DIR`] ? _chunkJU6D63FQjs.correctPaths.call(void 0, process.env[`${prefix}TEMP_DIR`]) : process.env[`${prefix}TEMP_DIRECTORY`] ? _chunkJU6D63FQjs.correctPaths.call(void 0, process.env[`${prefix}TEMP_DIRECTORY`]) : void 0,
|
|
166
|
+
log: process.env[`${prefix}LOG_DIR`] ? _chunkJU6D63FQjs.correctPaths.call(void 0, process.env[`${prefix}LOG_DIR`]) : process.env[`${prefix}LOG_DIRECTORY`] ? _chunkJU6D63FQjs.correctPaths.call(void 0, process.env[`${prefix}LOG_DIRECTORY`]) : void 0,
|
|
167
|
+
build: process.env[`${prefix}BUILD_DIR`] ? _chunkJU6D63FQjs.correctPaths.call(void 0, process.env[`${prefix}BUILD_DIR`]) : process.env[`${prefix}BUILD_DIRECTORY`] ? _chunkJU6D63FQjs.correctPaths.call(void 0, process.env[`${prefix}BUILD_DIRECTORY`]) : void 0
|
|
168
168
|
},
|
|
169
169
|
skipCache: process.env[`${prefix}SKIP_CACHE`] !== void 0 ? Boolean(process.env[`${prefix}SKIP_CACHE`]) : void 0,
|
|
170
170
|
mode: (_nullishCoalesce(_nullishCoalesce(process.env[`${prefix}MODE`], () => ( process.env.NODE_ENV)), () => ( process.env.ENVIRONMENT))) || void 0,
|
|
@@ -188,13 +188,13 @@ var getConfigEnv = () => {
|
|
|
188
188
|
},
|
|
189
189
|
logLevel: process.env[`${prefix}LOG_LEVEL`] !== null && process.env[`${prefix}LOG_LEVEL`] !== void 0 ? process.env[`${prefix}LOG_LEVEL`] && Number.isSafeInteger(
|
|
190
190
|
Number.parseInt(process.env[`${prefix}LOG_LEVEL`])
|
|
191
|
-
) ?
|
|
191
|
+
) ? _chunkJU6D63FQjs.getLogLevelLabel.call(void 0,
|
|
192
192
|
Number.parseInt(process.env[`${prefix}LOG_LEVEL`])
|
|
193
193
|
) : process.env[`${prefix}LOG_LEVEL`] : void 0,
|
|
194
194
|
skipConfigLogging: process.env[`${prefix}SKIP_CONFIG_LOGGING`] !== void 0 ? Boolean(process.env[`${prefix}SKIP_CONFIG_LOGGING`]) : void 0
|
|
195
195
|
};
|
|
196
196
|
const themeNames = Object.keys(process.env).filter(
|
|
197
|
-
(envKey) => envKey.startsWith(`${prefix}COLOR_`) &&
|
|
197
|
+
(envKey) => envKey.startsWith(`${prefix}COLOR_`) && _chunkJU6D63FQjs.COLOR_KEYS.every(
|
|
198
198
|
(colorKey) => !envKey.startsWith(`${prefix}COLOR_LIGHT_${colorKey}`) && !envKey.startsWith(`${prefix}COLOR_DARK_${colorKey}`)
|
|
199
199
|
)
|
|
200
200
|
);
|
|
@@ -205,16 +205,16 @@ var getConfigEnv = () => {
|
|
|
205
205
|
},
|
|
206
206
|
{}
|
|
207
207
|
) : getThemeColorConfigEnv(prefix);
|
|
208
|
-
if (config.docs ===
|
|
209
|
-
if (config.homepage ===
|
|
210
|
-
config.docs = `${
|
|
208
|
+
if (config.docs === _chunkJU6D63FQjs.STORM_DEFAULT_DOCS) {
|
|
209
|
+
if (config.homepage === _chunkJU6D63FQjs.STORM_DEFAULT_HOMEPAGE) {
|
|
210
|
+
config.docs = `${_chunkJU6D63FQjs.STORM_DEFAULT_HOMEPAGE}/projects/${config.name}/docs`;
|
|
211
211
|
} else {
|
|
212
212
|
config.docs = `${config.homepage}/docs`;
|
|
213
213
|
}
|
|
214
214
|
}
|
|
215
|
-
if (config.licensing ===
|
|
216
|
-
if (config.homepage ===
|
|
217
|
-
config.licensing = `${
|
|
215
|
+
if (config.licensing === _chunkJU6D63FQjs.STORM_DEFAULT_LICENSING) {
|
|
216
|
+
if (config.homepage === _chunkJU6D63FQjs.STORM_DEFAULT_HOMEPAGE) {
|
|
217
|
+
config.licensing = `${_chunkJU6D63FQjs.STORM_DEFAULT_HOMEPAGE}/projects/${config.name}/licensing`;
|
|
218
218
|
} else {
|
|
219
219
|
config.licensing = `${config.homepage}/docs`;
|
|
220
220
|
}
|
|
@@ -415,40 +415,40 @@ var setConfigEnv = (config) => {
|
|
|
415
415
|
process.env.LANG = config.locale ? `${config.locale.replaceAll("-", "_")}.UTF-8` : "en_US.UTF-8";
|
|
416
416
|
}
|
|
417
417
|
if (config.configFile) {
|
|
418
|
-
process.env[`${prefix}CONFIG_FILE`] =
|
|
418
|
+
process.env[`${prefix}CONFIG_FILE`] = _chunkJU6D63FQjs.correctPaths.call(void 0, config.configFile);
|
|
419
419
|
}
|
|
420
420
|
if (config.workspaceRoot) {
|
|
421
|
-
process.env[`${prefix}WORKSPACE_ROOT`] =
|
|
422
|
-
process.env.NX_WORKSPACE_ROOT =
|
|
423
|
-
process.env.NX_WORKSPACE_ROOT_PATH =
|
|
421
|
+
process.env[`${prefix}WORKSPACE_ROOT`] = _chunkJU6D63FQjs.correctPaths.call(void 0, config.workspaceRoot);
|
|
422
|
+
process.env.NX_WORKSPACE_ROOT = _chunkJU6D63FQjs.correctPaths.call(void 0, config.workspaceRoot);
|
|
423
|
+
process.env.NX_WORKSPACE_ROOT_PATH = _chunkJU6D63FQjs.correctPaths.call(void 0, config.workspaceRoot);
|
|
424
424
|
}
|
|
425
425
|
if (config.directories) {
|
|
426
426
|
if (!config.skipCache && config.directories.cache) {
|
|
427
|
-
process.env[`${prefix}CACHE_DIR`] =
|
|
427
|
+
process.env[`${prefix}CACHE_DIR`] = _chunkJU6D63FQjs.correctPaths.call(void 0,
|
|
428
428
|
config.directories.cache
|
|
429
429
|
);
|
|
430
430
|
process.env[`${prefix}CACHE_DIRECTORY`] = process.env[`${prefix}CACHE_DIR`];
|
|
431
431
|
}
|
|
432
432
|
if (config.directories.data) {
|
|
433
|
-
process.env[`${prefix}DATA_DIR`] =
|
|
433
|
+
process.env[`${prefix}DATA_DIR`] = _chunkJU6D63FQjs.correctPaths.call(void 0, config.directories.data);
|
|
434
434
|
process.env[`${prefix}DATA_DIRECTORY`] = process.env[`${prefix}DATA_DIR`];
|
|
435
435
|
}
|
|
436
436
|
if (config.directories.config) {
|
|
437
|
-
process.env[`${prefix}CONFIG_DIR`] =
|
|
437
|
+
process.env[`${prefix}CONFIG_DIR`] = _chunkJU6D63FQjs.correctPaths.call(void 0,
|
|
438
438
|
config.directories.config
|
|
439
439
|
);
|
|
440
440
|
process.env[`${prefix}CONFIG_DIRECTORY`] = process.env[`${prefix}CONFIG_DIR`];
|
|
441
441
|
}
|
|
442
442
|
if (config.directories.temp) {
|
|
443
|
-
process.env[`${prefix}TEMP_DIR`] =
|
|
443
|
+
process.env[`${prefix}TEMP_DIR`] = _chunkJU6D63FQjs.correctPaths.call(void 0, config.directories.temp);
|
|
444
444
|
process.env[`${prefix}TEMP_DIRECTORY`] = process.env[`${prefix}TEMP_DIR`];
|
|
445
445
|
}
|
|
446
446
|
if (config.directories.log) {
|
|
447
|
-
process.env[`${prefix}LOG_DIR`] =
|
|
447
|
+
process.env[`${prefix}LOG_DIR`] = _chunkJU6D63FQjs.correctPaths.call(void 0, config.directories.log);
|
|
448
448
|
process.env[`${prefix}LOG_DIRECTORY`] = process.env[`${prefix}LOG_DIR`];
|
|
449
449
|
}
|
|
450
450
|
if (config.directories.build) {
|
|
451
|
-
process.env[`${prefix}BUILD_DIR`] =
|
|
451
|
+
process.env[`${prefix}BUILD_DIR`] = _chunkJU6D63FQjs.correctPaths.call(void 0,
|
|
452
452
|
config.directories.build
|
|
453
453
|
);
|
|
454
454
|
process.env[`${prefix}BUILD_DIRECTORY`] = process.env[`${prefix}BUILD_DIR`];
|
|
@@ -510,9 +510,9 @@ var setConfigEnv = (config) => {
|
|
|
510
510
|
process.env[`${prefix}LOG_LEVEL`] = String(config.logLevel);
|
|
511
511
|
process.env.LOG_LEVEL = String(config.logLevel);
|
|
512
512
|
process.env.NX_VERBOSE_LOGGING = String(
|
|
513
|
-
|
|
513
|
+
_chunkJU6D63FQjs.getLogLevel.call(void 0, config.logLevel) >= _chunkJU6D63FQjs.LogLevel.DEBUG ? true : false
|
|
514
514
|
);
|
|
515
|
-
process.env.RUST_BACKTRACE =
|
|
515
|
+
process.env.RUST_BACKTRACE = _chunkJU6D63FQjs.getLogLevel.call(void 0, config.logLevel) >= _chunkJU6D63FQjs.LogLevel.DEBUG ? "full" : "none";
|
|
516
516
|
}
|
|
517
517
|
if (config.skipConfigLogging !== void 0) {
|
|
518
518
|
process.env[`${prefix}SKIP_CONFIG_LOGGING`] = String(
|
|
@@ -632,13 +632,13 @@ var createStormWorkspaceConfig = async (extensionName, schema, workspaceRoot, sk
|
|
|
632
632
|
if (!_optionalChain([_static_cache, 'optionalAccess', _29 => _29.data]) || !_optionalChain([_static_cache, 'optionalAccess', _30 => _30.timestamp]) || _static_cache.timestamp < Date.now() - 8e3) {
|
|
633
633
|
let _workspaceRoot = workspaceRoot;
|
|
634
634
|
if (!_workspaceRoot) {
|
|
635
|
-
_workspaceRoot =
|
|
635
|
+
_workspaceRoot = _chunkJU6D63FQjs.findWorkspaceRoot.call(void 0, );
|
|
636
636
|
}
|
|
637
637
|
const configEnv = getConfigEnv();
|
|
638
638
|
const configFile = await getConfigFile(_workspaceRoot);
|
|
639
639
|
if (!configFile) {
|
|
640
640
|
if (!skipLogs) {
|
|
641
|
-
|
|
641
|
+
_chunkJU6D63FQjs.writeWarning.call(void 0,
|
|
642
642
|
"No Storm Workspace configuration file found in the current repository. Please ensure this is the expected behavior - you can add a `storm-workspace.json` file to the root of your workspace if it is not.\n",
|
|
643
643
|
{ logLevel: "all" }
|
|
644
644
|
);
|
|
@@ -647,22 +647,22 @@ var createStormWorkspaceConfig = async (extensionName, schema, workspaceRoot, sk
|
|
|
647
647
|
return void 0;
|
|
648
648
|
}
|
|
649
649
|
}
|
|
650
|
-
const defaultConfig = await
|
|
650
|
+
const defaultConfig = await _chunkJU6D63FQjs.getPackageJsonConfig.call(void 0, _workspaceRoot);
|
|
651
651
|
const configInput = _defu2.default.call(void 0,
|
|
652
652
|
configEnv,
|
|
653
653
|
configFile,
|
|
654
654
|
defaultConfig
|
|
655
655
|
);
|
|
656
656
|
try {
|
|
657
|
-
result =
|
|
658
|
-
await
|
|
657
|
+
result = _chunkJU6D63FQjs.applyDefaultConfig.call(void 0,
|
|
658
|
+
await _chunkJU6D63FQjs.stormWorkspaceConfigSchema.parseAsync(configInput)
|
|
659
659
|
);
|
|
660
660
|
result.workspaceRoot ??= _workspaceRoot;
|
|
661
661
|
} catch (error) {
|
|
662
662
|
throw new Error(
|
|
663
663
|
`Failed to parse Storm Workspace configuration${_optionalChain([error, 'optionalAccess', _31 => _31.message]) ? `: ${error.message}` : ""}
|
|
664
664
|
|
|
665
|
-
Please ensure your configuration file is valid JSON and matches the expected schema. The current workspace configuration input is: ${
|
|
665
|
+
Please ensure your configuration file is valid JSON and matches the expected schema. The current workspace configuration input is: ${_chunkJU6D63FQjs.formatLogMessage.call(void 0,
|
|
666
666
|
configInput
|
|
667
667
|
)}`,
|
|
668
668
|
{
|
|
@@ -707,9 +707,9 @@ var loadStormWorkspaceConfig = async (workspaceRoot, skipLogs = false) => {
|
|
|
707
707
|
);
|
|
708
708
|
setConfigEnv(config);
|
|
709
709
|
if (!skipLogs && !config.skipConfigLogging) {
|
|
710
|
-
|
|
710
|
+
_chunkJU6D63FQjs.writeTrace.call(void 0,
|
|
711
711
|
`\u2699\uFE0F Using Storm Workspace configuration:
|
|
712
|
-
${
|
|
712
|
+
${_chunkJU6D63FQjs.formatLogMessage.call(void 0, config)}`,
|
|
713
713
|
config
|
|
714
714
|
);
|
|
715
715
|
}
|
|
@@ -723,7 +723,7 @@ var getConfig = (workspaceRoot, skipLogs = false) => {
|
|
|
723
723
|
var getWorkspaceConfig = (skipLogs = true, options = {}) => {
|
|
724
724
|
let workspaceRoot = options.workspaceRoot;
|
|
725
725
|
if (!workspaceRoot) {
|
|
726
|
-
workspaceRoot =
|
|
726
|
+
workspaceRoot = _chunkJU6D63FQjs.findWorkspaceRoot.call(void 0, options.cwd);
|
|
727
727
|
}
|
|
728
728
|
return getConfig(workspaceRoot, skipLogs);
|
|
729
729
|
};
|