@storm-software/untyped 0.11.4 → 0.11.6
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/README.md +1 -1
- package/bin/untyped.cjs +9 -9
- package/bin/untyped.js +9 -9
- package/dist/{chunk-S6C63FCT.cjs → chunk-3MKS4WE3.cjs} +8 -8
- package/dist/{chunk-UJFQSB2M.cjs → chunk-565KWKJP.cjs} +16 -16
- package/dist/{chunk-FONZ2AHB.js → chunk-HZZGHXZC.js} +2 -2
- package/dist/{chunk-QAKF7CSX.js → chunk-IM2C2753.js} +5 -5
- package/dist/{chunk-27FYXNIO.cjs → chunk-L5ZIZMUD.cjs} +205 -205
- package/dist/{chunk-QECHN5Y2.cjs → chunk-LSXMALRL.cjs} +9 -9
- package/dist/chunk-LZTKJ7LV.cjs +6 -0
- package/dist/{chunk-AORGS2JP.js → chunk-PPS7IOSE.js} +3 -3
- package/dist/{chunk-E3JIROMO.js → chunk-PSDXUHWK.js} +1 -1
- package/dist/{chunk-3STWFZKG.cjs → chunk-R3UVYT3B.cjs} +2 -2
- package/dist/{chunk-EYLEPVOU.js → chunk-SQDAJDQD.js} +2 -2
- package/dist/{chunk-3KJNEJ3C.cjs → chunk-ULBXDLC5.cjs} +7 -7
- package/dist/{chunk-A4R3AMIX.js → chunk-W7BRQM6C.js} +2 -2
- package/dist/{chunk-VSFHJTTZ.js → chunk-ZFOG3DH7.js} +2 -2
- package/dist/generate.cjs +7 -7
- package/dist/generate.d.cts +1 -1
- package/dist/generate.d.ts +1 -1
- package/dist/generate.js +6 -6
- package/dist/index.cjs +9 -9
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +7 -7
- package/dist/{types-BHTvEliD.d.cts → types-BMxueS2m.d.cts} +3 -3
- package/dist/{types-BHTvEliD.d.ts → types-BMxueS2m.d.ts} +3 -3
- package/dist/utilities.cjs +2 -2
- package/dist/utilities.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-OCGQTU2G.cjs +0 -6
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkL5ZIZMUDcjs = require('./chunk-L5ZIZMUD.cjs');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
var
|
|
9
|
+
var _chunkR3UVYT3Bcjs = require('./chunk-R3UVYT3B.cjs');
|
|
10
10
|
|
|
11
11
|
// src/generators/markdown.ts
|
|
12
|
-
|
|
12
|
+
_chunkR3UVYT3Bcjs.init_cjs_shims.call(void 0, );
|
|
13
13
|
var _promises = require('fs/promises');
|
|
14
14
|
function generateMarkdown(schema) {
|
|
15
15
|
return `
|
|
@@ -20,7 +20,7 @@ ${generateMarkdownLevel(schema, schema.title || "", "#").join("\n")}
|
|
|
20
20
|
|
|
21
21
|
`;
|
|
22
22
|
}
|
|
23
|
-
|
|
23
|
+
_chunkR3UVYT3Bcjs.__name.call(void 0, generateMarkdown, "generateMarkdown");
|
|
24
24
|
function generateMarkdownLevel(schema, title, level) {
|
|
25
25
|
const lines = [];
|
|
26
26
|
lines.push(`${level} ${title}`);
|
|
@@ -44,14 +44,14 @@ function generateMarkdownLevel(schema, title, level) {
|
|
|
44
44
|
}
|
|
45
45
|
return lines;
|
|
46
46
|
}
|
|
47
|
-
|
|
47
|
+
_chunkR3UVYT3Bcjs.__name.call(void 0, generateMarkdownLevel, "generateMarkdownLevel");
|
|
48
48
|
function generateMarkdownFile(schema, file, config) {
|
|
49
49
|
try {
|
|
50
|
-
const declarations =
|
|
51
|
-
|
|
50
|
+
const declarations = _chunkR3UVYT3Bcjs.getOutputFile.call(void 0, file, "md");
|
|
51
|
+
_chunkL5ZIZMUDcjs.writeTrace.call(void 0, `Writing type markdown file ${declarations}`, config);
|
|
52
52
|
return _promises.writeFile.call(void 0, declarations, generateMarkdown(schema));
|
|
53
53
|
} catch (error) {
|
|
54
|
-
|
|
54
|
+
_chunkL5ZIZMUDcjs.writeError.call(void 0, `Error writing markdown file for ${file.name}
|
|
55
55
|
|
|
56
56
|
Error:
|
|
57
57
|
${_optionalChain([error, 'optionalAccess', _ => _.message]) ? error.message : JSON.stringify(error)}${_optionalChain([error, 'optionalAccess', _2 => _2.stack]) ? `
|
|
@@ -63,7 +63,7 @@ ${JSON.stringify(schema)}
|
|
|
63
63
|
throw error;
|
|
64
64
|
}
|
|
65
65
|
}
|
|
66
|
-
|
|
66
|
+
_chunkR3UVYT3Bcjs.__name.call(void 0, generateMarkdownFile, "generateMarkdownFile");
|
|
67
67
|
|
|
68
68
|
|
|
69
69
|
|
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
__require,
|
|
5
5
|
__toESM,
|
|
6
6
|
init_esm_shims
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-ZFOG3DH7.js";
|
|
8
8
|
|
|
9
9
|
// ../../node_modules/.pnpm/color-name@1.1.4/node_modules/color-name/index.js
|
|
10
10
|
var require_color_name = __commonJS({
|
|
@@ -7003,11 +7003,11 @@ var StormConfigSchema = z.object({
|
|
|
7003
7003
|
preid: z.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
7004
7004
|
owner: z.string().trim().default("@storm-software/admin").describe("The owner of the package"),
|
|
7005
7005
|
bot: WorkspaceBotConfigSchema,
|
|
7006
|
-
|
|
7006
|
+
mode: z.enum([
|
|
7007
7007
|
"development",
|
|
7008
7008
|
"staging",
|
|
7009
7009
|
"production"
|
|
7010
|
-
]).default("production").describe("The current runtime environment
|
|
7010
|
+
]).default("production").describe("The current runtime environment mode for the package"),
|
|
7011
7011
|
workspaceRoot: z.string().trim().default("").describe("The root directory of the workspace"),
|
|
7012
7012
|
externalPackagePatterns: z.array(z.string()).default([]).describe("The build will use these package patterns to determine if they should be external to the bundle"),
|
|
7013
7013
|
skipCache: z.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
@@ -34,9 +34,9 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
34
34
|
mod
|
|
35
35
|
));
|
|
36
36
|
|
|
37
|
-
// ../../node_modules/.pnpm/tsup@8.3.5_@microsoft+api-extractor@7.50.0_@types+node@22.13.
|
|
37
|
+
// ../../node_modules/.pnpm/tsup@8.3.5_@microsoft+api-extractor@7.50.0_@types+node@22.13.4__@swc+core@1.7.26_@swc+h_73a1907be974ba33a2ccc4e2bb5df2f6/node_modules/tsup/assets/cjs_shims.js
|
|
38
38
|
var init_cjs_shims = __esm({
|
|
39
|
-
"../../node_modules/.pnpm/tsup@8.3.5_@microsoft+api-extractor@7.50.0_@types+node@22.13.
|
|
39
|
+
"../../node_modules/.pnpm/tsup@8.3.5_@microsoft+api-extractor@7.50.0_@types+node@22.13.4__@swc+core@1.7.26_@swc+h_73a1907be974ba33a2ccc4e2bb5df2f6/node_modules/tsup/assets/cjs_shims.js"() {
|
|
40
40
|
}
|
|
41
41
|
});
|
|
42
42
|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import {
|
|
2
2
|
writeError,
|
|
3
3
|
writeTrace
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-PPS7IOSE.js";
|
|
5
5
|
import {
|
|
6
6
|
__name,
|
|
7
7
|
getOutputFile,
|
|
8
8
|
init_esm_shims
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-ZFOG3DH7.js";
|
|
10
10
|
|
|
11
11
|
// src/generators/markdown.ts
|
|
12
12
|
init_esm_shims();
|
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkL5ZIZMUDcjs = require('./chunk-L5ZIZMUD.cjs');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
var
|
|
9
|
+
var _chunkR3UVYT3Bcjs = require('./chunk-R3UVYT3B.cjs');
|
|
10
10
|
|
|
11
11
|
// src/generators/json-schema.ts
|
|
12
|
-
|
|
12
|
+
_chunkR3UVYT3Bcjs.init_cjs_shims.call(void 0, );
|
|
13
13
|
var _promises = require('fs/promises');
|
|
14
14
|
function generateJsonSchemaFile(schema, file, config) {
|
|
15
15
|
try {
|
|
16
|
-
const jsonSchema =
|
|
17
|
-
|
|
16
|
+
const jsonSchema = _chunkR3UVYT3Bcjs.getOutputFile.call(void 0, file, "json");
|
|
17
|
+
_chunkL5ZIZMUDcjs.writeTrace.call(void 0, `Writing JSON schema file ${jsonSchema}`, config);
|
|
18
18
|
return _promises.writeFile.call(void 0, jsonSchema, JSON.stringify(schema, null, 2));
|
|
19
19
|
} catch (error) {
|
|
20
|
-
|
|
20
|
+
_chunkL5ZIZMUDcjs.writeError.call(void 0, `Error writing JSON schema file for ${file.name}
|
|
21
21
|
|
|
22
22
|
Error:
|
|
23
23
|
${_optionalChain([error, 'optionalAccess', _ => _.message]) ? error.message : JSON.stringify(error)}${_optionalChain([error, 'optionalAccess', _2 => _2.stack]) ? `
|
|
@@ -29,7 +29,7 @@ ${JSON.stringify(schema)}
|
|
|
29
29
|
throw error;
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
|
-
|
|
32
|
+
_chunkR3UVYT3Bcjs.__name.call(void 0, generateJsonSchemaFile, "generateJsonSchemaFile");
|
|
33
33
|
|
|
34
34
|
|
|
35
35
|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import {
|
|
2
2
|
writeError,
|
|
3
3
|
writeTrace
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-PPS7IOSE.js";
|
|
5
5
|
import {
|
|
6
6
|
__name,
|
|
7
7
|
getOutputFile,
|
|
8
8
|
init_esm_shims
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-ZFOG3DH7.js";
|
|
10
10
|
|
|
11
11
|
// src/generators/dts.ts
|
|
12
12
|
init_esm_shims();
|
|
@@ -34,9 +34,9 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
34
34
|
mod
|
|
35
35
|
));
|
|
36
36
|
|
|
37
|
-
// ../../node_modules/.pnpm/tsup@8.3.5_@microsoft+api-extractor@7.50.0_@types+node@22.13.
|
|
37
|
+
// ../../node_modules/.pnpm/tsup@8.3.5_@microsoft+api-extractor@7.50.0_@types+node@22.13.4__@swc+core@1.7.26_@swc+h_73a1907be974ba33a2ccc4e2bb5df2f6/node_modules/tsup/assets/esm_shims.js
|
|
38
38
|
var init_esm_shims = __esm({
|
|
39
|
-
"../../node_modules/.pnpm/tsup@8.3.5_@microsoft+api-extractor@7.50.0_@types+node@22.13.
|
|
39
|
+
"../../node_modules/.pnpm/tsup@8.3.5_@microsoft+api-extractor@7.50.0_@types+node@22.13.4__@swc+core@1.7.26_@swc+h_73a1907be974ba33a2ccc4e2bb5df2f6/node_modules/tsup/assets/esm_shims.js"() {
|
|
40
40
|
}
|
|
41
41
|
});
|
|
42
42
|
|
package/dist/generate.cjs
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('./chunk-
|
|
5
|
-
require('./chunk-
|
|
6
|
-
require('./chunk-
|
|
7
|
-
require('./chunk-
|
|
8
|
-
require('./chunk-
|
|
3
|
+
var _chunk565KWKJPcjs = require('./chunk-565KWKJP.cjs');
|
|
4
|
+
require('./chunk-3MKS4WE3.cjs');
|
|
5
|
+
require('./chunk-ULBXDLC5.cjs');
|
|
6
|
+
require('./chunk-LSXMALRL.cjs');
|
|
7
|
+
require('./chunk-L5ZIZMUD.cjs');
|
|
8
|
+
require('./chunk-R3UVYT3B.cjs');
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
exports.getGenerateAction =
|
|
11
|
+
exports.getGenerateAction = _chunk565KWKJPcjs.getGenerateAction;
|
package/dist/generate.d.cts
CHANGED
package/dist/generate.d.ts
CHANGED
package/dist/generate.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
getGenerateAction
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
5
|
-
import "./chunk-
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
8
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-IM2C2753.js";
|
|
4
|
+
import "./chunk-W7BRQM6C.js";
|
|
5
|
+
import "./chunk-HZZGHXZC.js";
|
|
6
|
+
import "./chunk-SQDAJDQD.js";
|
|
7
|
+
import "./chunk-PPS7IOSE.js";
|
|
8
|
+
import "./chunk-ZFOG3DH7.js";
|
|
9
9
|
export {
|
|
10
10
|
getGenerateAction
|
|
11
11
|
};
|
package/dist/index.cjs
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('./chunk-
|
|
3
|
+
var _chunk565KWKJPcjs = require('./chunk-565KWKJP.cjs');
|
|
4
|
+
require('./chunk-LZTKJ7LV.cjs');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
var
|
|
8
|
+
var _chunk3MKS4WE3cjs = require('./chunk-3MKS4WE3.cjs');
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
var
|
|
11
|
+
var _chunkULBXDLC5cjs = require('./chunk-ULBXDLC5.cjs');
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
var
|
|
16
|
-
require('./chunk-
|
|
15
|
+
var _chunkLSXMALRLcjs = require('./chunk-LSXMALRL.cjs');
|
|
16
|
+
require('./chunk-L5ZIZMUD.cjs');
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
var
|
|
20
|
+
var _chunkR3UVYT3Bcjs = require('./chunk-R3UVYT3B.cjs');
|
|
21
21
|
|
|
22
22
|
// src/index.ts
|
|
23
|
-
|
|
23
|
+
_chunkR3UVYT3Bcjs.init_cjs_shims.call(void 0, );
|
|
24
24
|
|
|
25
25
|
|
|
26
26
|
|
|
@@ -29,4 +29,4 @@ _chunk3STWFZKGcjs.init_cjs_shims.call(void 0, );
|
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
|
|
32
|
-
exports.generateDeclaration =
|
|
32
|
+
exports.generateDeclaration = _chunk3MKS4WE3cjs.generateDeclaration; exports.generateDeclarationFile = _chunk3MKS4WE3cjs.generateDeclarationFile; exports.generateJsonSchemaFile = _chunkULBXDLC5cjs.generateJsonSchemaFile; exports.generateMarkdown = _chunkLSXMALRLcjs.generateMarkdown; exports.generateMarkdownFile = _chunkLSXMALRLcjs.generateMarkdownFile; exports.getGenerateAction = _chunk565KWKJPcjs.getGenerateAction; exports.getOutputFile = _chunkR3UVYT3Bcjs.getOutputFile;
|
package/dist/index.d.cts
CHANGED
|
@@ -3,7 +3,7 @@ export { generateDeclaration, generateDeclarationFile } from './generators/dts.c
|
|
|
3
3
|
export { generateJsonSchemaFile } from './generators/json-schema.cjs';
|
|
4
4
|
export { generateMarkdown, generateMarkdownFile } from './generators/markdown.cjs';
|
|
5
5
|
export { getOutputFile } from './utilities.cjs';
|
|
6
|
-
import './types-
|
|
6
|
+
import './types-BMxueS2m.cjs';
|
|
7
7
|
import 'zod';
|
|
8
8
|
import 'glob';
|
|
9
9
|
import 'untyped';
|
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ export { generateDeclaration, generateDeclarationFile } from './generators/dts.j
|
|
|
3
3
|
export { generateJsonSchemaFile } from './generators/json-schema.js';
|
|
4
4
|
export { generateMarkdown, generateMarkdownFile } from './generators/markdown.js';
|
|
5
5
|
export { getOutputFile } from './utilities.js';
|
|
6
|
-
import './types-
|
|
6
|
+
import './types-BMxueS2m.js';
|
|
7
7
|
import 'zod';
|
|
8
8
|
import 'glob';
|
|
9
9
|
import 'untyped';
|
package/dist/index.js
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
import {
|
|
2
2
|
getGenerateAction
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-IM2C2753.js";
|
|
4
|
+
import "./chunk-PSDXUHWK.js";
|
|
5
5
|
import {
|
|
6
6
|
generateDeclaration,
|
|
7
7
|
generateDeclarationFile
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-W7BRQM6C.js";
|
|
9
9
|
import {
|
|
10
10
|
generateJsonSchemaFile
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-HZZGHXZC.js";
|
|
12
12
|
import {
|
|
13
13
|
generateMarkdown,
|
|
14
14
|
generateMarkdownFile
|
|
15
|
-
} from "./chunk-
|
|
16
|
-
import "./chunk-
|
|
15
|
+
} from "./chunk-SQDAJDQD.js";
|
|
16
|
+
import "./chunk-PPS7IOSE.js";
|
|
17
17
|
import {
|
|
18
18
|
getOutputFile,
|
|
19
19
|
init_esm_shims
|
|
20
|
-
} from "./chunk-
|
|
20
|
+
} from "./chunk-ZFOG3DH7.js";
|
|
21
21
|
|
|
22
22
|
// src/index.ts
|
|
23
23
|
init_esm_shims();
|
|
@@ -27,7 +27,7 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
27
27
|
name?: string | undefined;
|
|
28
28
|
email?: string | undefined;
|
|
29
29
|
}>;
|
|
30
|
-
|
|
30
|
+
mode: z.ZodDefault<z.ZodEnum<["development", "staging", "production"]>>;
|
|
31
31
|
workspaceRoot: z.ZodDefault<z.ZodString>;
|
|
32
32
|
externalPackagePatterns: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
33
33
|
skipCache: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -806,7 +806,7 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
806
806
|
name: string;
|
|
807
807
|
email: string;
|
|
808
808
|
};
|
|
809
|
-
|
|
809
|
+
mode: "development" | "staging" | "production";
|
|
810
810
|
workspaceRoot: string;
|
|
811
811
|
externalPackagePatterns: string[];
|
|
812
812
|
skipCache: boolean;
|
|
@@ -1158,7 +1158,7 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
1158
1158
|
branch?: string | undefined;
|
|
1159
1159
|
preid?: string | undefined;
|
|
1160
1160
|
owner?: string | undefined;
|
|
1161
|
-
|
|
1161
|
+
mode?: "development" | "staging" | "production" | undefined;
|
|
1162
1162
|
workspaceRoot?: string | undefined;
|
|
1163
1163
|
externalPackagePatterns?: string[] | undefined;
|
|
1164
1164
|
skipCache?: boolean | undefined;
|
|
@@ -27,7 +27,7 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
27
27
|
name?: string | undefined;
|
|
28
28
|
email?: string | undefined;
|
|
29
29
|
}>;
|
|
30
|
-
|
|
30
|
+
mode: z.ZodDefault<z.ZodEnum<["development", "staging", "production"]>>;
|
|
31
31
|
workspaceRoot: z.ZodDefault<z.ZodString>;
|
|
32
32
|
externalPackagePatterns: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
33
33
|
skipCache: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -806,7 +806,7 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
806
806
|
name: string;
|
|
807
807
|
email: string;
|
|
808
808
|
};
|
|
809
|
-
|
|
809
|
+
mode: "development" | "staging" | "production";
|
|
810
810
|
workspaceRoot: string;
|
|
811
811
|
externalPackagePatterns: string[];
|
|
812
812
|
skipCache: boolean;
|
|
@@ -1158,7 +1158,7 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
1158
1158
|
branch?: string | undefined;
|
|
1159
1159
|
preid?: string | undefined;
|
|
1160
1160
|
owner?: string | undefined;
|
|
1161
|
-
|
|
1161
|
+
mode?: "development" | "staging" | "production" | undefined;
|
|
1162
1162
|
workspaceRoot?: string | undefined;
|
|
1163
1163
|
externalPackagePatterns?: string[] | undefined;
|
|
1164
1164
|
skipCache?: boolean | undefined;
|
package/dist/utilities.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkR3UVYT3Bcjs = require('./chunk-R3UVYT3B.cjs');
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
exports.getOutputFile =
|
|
6
|
+
exports.getOutputFile = _chunkR3UVYT3Bcjs.getOutputFile;
|
package/dist/utilities.js
CHANGED
package/package.json
CHANGED