@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.
@@ -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 _chunk27FYXNIOcjs = require('./chunk-27FYXNIO.cjs');
4
+ var _chunkL5ZIZMUDcjs = require('./chunk-L5ZIZMUD.cjs');
5
5
 
6
6
 
7
7
 
8
8
 
9
- var _chunk3STWFZKGcjs = require('./chunk-3STWFZKG.cjs');
9
+ var _chunkR3UVYT3Bcjs = require('./chunk-R3UVYT3B.cjs');
10
10
 
11
11
  // src/generators/markdown.ts
12
- _chunk3STWFZKGcjs.init_cjs_shims.call(void 0, );
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
- _chunk3STWFZKGcjs.__name.call(void 0, generateMarkdown, "generateMarkdown");
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
- _chunk3STWFZKGcjs.__name.call(void 0, generateMarkdownLevel, "generateMarkdownLevel");
47
+ _chunkR3UVYT3Bcjs.__name.call(void 0, generateMarkdownLevel, "generateMarkdownLevel");
48
48
  function generateMarkdownFile(schema, file, config) {
49
49
  try {
50
- const declarations = _chunk3STWFZKGcjs.getOutputFile.call(void 0, file, "md");
51
- _chunk27FYXNIOcjs.writeTrace.call(void 0, `Writing type markdown file ${declarations}`, config);
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
- _chunk27FYXNIOcjs.writeError.call(void 0, `Error writing markdown file for ${file.name}
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
- _chunk3STWFZKGcjs.__name.call(void 0, generateMarkdownFile, "generateMarkdownFile");
66
+ _chunkR3UVYT3Bcjs.__name.call(void 0, generateMarkdownFile, "generateMarkdownFile");
67
67
 
68
68
 
69
69
 
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+
3
+ var _chunkR3UVYT3Bcjs = require('./chunk-R3UVYT3B.cjs');
4
+
5
+ // src/generators/index.ts
6
+ _chunkR3UVYT3Bcjs.init_cjs_shims.call(void 0, );
@@ -4,7 +4,7 @@ import {
4
4
  __require,
5
5
  __toESM,
6
6
  init_esm_shims
7
- } from "./chunk-VSFHJTTZ.js";
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
- env: z.enum([
7006
+ mode: z.enum([
7007
7007
  "development",
7008
7008
  "staging",
7009
7009
  "production"
7010
- ]).default("production").describe("The current runtime environment name for the package"),
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?"),
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  init_esm_shims
3
- } from "./chunk-VSFHJTTZ.js";
3
+ } from "./chunk-ZFOG3DH7.js";
4
4
 
5
5
  // src/generators/index.ts
6
6
  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.1__@swc+core@1.7.26_@swc+h_a526057502c6ea8838db81b326f137cd/node_modules/tsup/assets/cjs_shims.js
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.1__@swc+core@1.7.26_@swc+h_a526057502c6ea8838db81b326f137cd/node_modules/tsup/assets/cjs_shims.js"() {
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-AORGS2JP.js";
4
+ } from "./chunk-PPS7IOSE.js";
5
5
  import {
6
6
  __name,
7
7
  getOutputFile,
8
8
  init_esm_shims
9
- } from "./chunk-VSFHJTTZ.js";
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 _chunk27FYXNIOcjs = require('./chunk-27FYXNIO.cjs');
4
+ var _chunkL5ZIZMUDcjs = require('./chunk-L5ZIZMUD.cjs');
5
5
 
6
6
 
7
7
 
8
8
 
9
- var _chunk3STWFZKGcjs = require('./chunk-3STWFZKG.cjs');
9
+ var _chunkR3UVYT3Bcjs = require('./chunk-R3UVYT3B.cjs');
10
10
 
11
11
  // src/generators/json-schema.ts
12
- _chunk3STWFZKGcjs.init_cjs_shims.call(void 0, );
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 = _chunk3STWFZKGcjs.getOutputFile.call(void 0, file, "json");
17
- _chunk27FYXNIOcjs.writeTrace.call(void 0, `Writing JSON schema file ${jsonSchema}`, config);
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
- _chunk27FYXNIOcjs.writeError.call(void 0, `Error writing JSON schema file for ${file.name}
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
- _chunk3STWFZKGcjs.__name.call(void 0, generateJsonSchemaFile, "generateJsonSchemaFile");
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-AORGS2JP.js";
4
+ } from "./chunk-PPS7IOSE.js";
5
5
  import {
6
6
  __name,
7
7
  getOutputFile,
8
8
  init_esm_shims
9
- } from "./chunk-VSFHJTTZ.js";
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.1__@swc+core@1.7.26_@swc+h_a526057502c6ea8838db81b326f137cd/node_modules/tsup/assets/esm_shims.js
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.1__@swc+core@1.7.26_@swc+h_a526057502c6ea8838db81b326f137cd/node_modules/tsup/assets/esm_shims.js"() {
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 _chunkUJFQSB2Mcjs = require('./chunk-UJFQSB2M.cjs');
4
- require('./chunk-S6C63FCT.cjs');
5
- require('./chunk-3KJNEJ3C.cjs');
6
- require('./chunk-QECHN5Y2.cjs');
7
- require('./chunk-27FYXNIO.cjs');
8
- require('./chunk-3STWFZKG.cjs');
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 = _chunkUJFQSB2Mcjs.getGenerateAction;
11
+ exports.getGenerateAction = _chunk565KWKJPcjs.getGenerateAction;
@@ -1,4 +1,4 @@
1
- import { S as StormConfig } from './types-BHTvEliD.cjs';
1
+ import { S as StormConfig } from './types-BMxueS2m.cjs';
2
2
  import 'zod';
3
3
 
4
4
  declare const getGenerateAction: (config: StormConfig) => (options: {
@@ -1,4 +1,4 @@
1
- import { S as StormConfig } from './types-BHTvEliD.js';
1
+ import { S as StormConfig } from './types-BMxueS2m.js';
2
2
  import 'zod';
3
3
 
4
4
  declare const getGenerateAction: (config: StormConfig) => (options: {
package/dist/generate.js CHANGED
@@ -1,11 +1,11 @@
1
1
  import {
2
2
  getGenerateAction
3
- } from "./chunk-QAKF7CSX.js";
4
- import "./chunk-A4R3AMIX.js";
5
- import "./chunk-FONZ2AHB.js";
6
- import "./chunk-EYLEPVOU.js";
7
- import "./chunk-AORGS2JP.js";
8
- import "./chunk-VSFHJTTZ.js";
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 _chunkUJFQSB2Mcjs = require('./chunk-UJFQSB2M.cjs');
4
- require('./chunk-OCGQTU2G.cjs');
3
+ var _chunk565KWKJPcjs = require('./chunk-565KWKJP.cjs');
4
+ require('./chunk-LZTKJ7LV.cjs');
5
5
 
6
6
 
7
7
 
8
- var _chunkS6C63FCTcjs = require('./chunk-S6C63FCT.cjs');
8
+ var _chunk3MKS4WE3cjs = require('./chunk-3MKS4WE3.cjs');
9
9
 
10
10
 
11
- var _chunk3KJNEJ3Ccjs = require('./chunk-3KJNEJ3C.cjs');
11
+ var _chunkULBXDLC5cjs = require('./chunk-ULBXDLC5.cjs');
12
12
 
13
13
 
14
14
 
15
- var _chunkQECHN5Y2cjs = require('./chunk-QECHN5Y2.cjs');
16
- require('./chunk-27FYXNIO.cjs');
15
+ var _chunkLSXMALRLcjs = require('./chunk-LSXMALRL.cjs');
16
+ require('./chunk-L5ZIZMUD.cjs');
17
17
 
18
18
 
19
19
 
20
- var _chunk3STWFZKGcjs = require('./chunk-3STWFZKG.cjs');
20
+ var _chunkR3UVYT3Bcjs = require('./chunk-R3UVYT3B.cjs');
21
21
 
22
22
  // src/index.ts
23
- _chunk3STWFZKGcjs.init_cjs_shims.call(void 0, );
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 = _chunkS6C63FCTcjs.generateDeclaration; exports.generateDeclarationFile = _chunkS6C63FCTcjs.generateDeclarationFile; exports.generateJsonSchemaFile = _chunk3KJNEJ3Ccjs.generateJsonSchemaFile; exports.generateMarkdown = _chunkQECHN5Y2cjs.generateMarkdown; exports.generateMarkdownFile = _chunkQECHN5Y2cjs.generateMarkdownFile; exports.getGenerateAction = _chunkUJFQSB2Mcjs.getGenerateAction; exports.getOutputFile = _chunk3STWFZKGcjs.getOutputFile;
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-BHTvEliD.cjs';
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-BHTvEliD.js';
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-QAKF7CSX.js";
4
- import "./chunk-E3JIROMO.js";
3
+ } from "./chunk-IM2C2753.js";
4
+ import "./chunk-PSDXUHWK.js";
5
5
  import {
6
6
  generateDeclaration,
7
7
  generateDeclarationFile
8
- } from "./chunk-A4R3AMIX.js";
8
+ } from "./chunk-W7BRQM6C.js";
9
9
  import {
10
10
  generateJsonSchemaFile
11
- } from "./chunk-FONZ2AHB.js";
11
+ } from "./chunk-HZZGHXZC.js";
12
12
  import {
13
13
  generateMarkdown,
14
14
  generateMarkdownFile
15
- } from "./chunk-EYLEPVOU.js";
16
- import "./chunk-AORGS2JP.js";
15
+ } from "./chunk-SQDAJDQD.js";
16
+ import "./chunk-PPS7IOSE.js";
17
17
  import {
18
18
  getOutputFile,
19
19
  init_esm_shims
20
- } from "./chunk-VSFHJTTZ.js";
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
- env: z.ZodDefault<z.ZodEnum<["development", "staging", "production"]>>;
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
- env: "development" | "staging" | "production";
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
- env?: "development" | "staging" | "production" | undefined;
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
- env: z.ZodDefault<z.ZodEnum<["development", "staging", "production"]>>;
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
- env: "development" | "staging" | "production";
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
- env?: "development" | "staging" | "production" | undefined;
1161
+ mode?: "development" | "staging" | "production" | undefined;
1162
1162
  workspaceRoot?: string | undefined;
1163
1163
  externalPackagePatterns?: string[] | undefined;
1164
1164
  skipCache?: boolean | undefined;
@@ -1,6 +1,6 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunk3STWFZKGcjs = require('./chunk-3STWFZKG.cjs');
3
+ var _chunkR3UVYT3Bcjs = require('./chunk-R3UVYT3B.cjs');
4
4
 
5
5
 
6
- exports.getOutputFile = _chunk3STWFZKGcjs.getOutputFile;
6
+ exports.getOutputFile = _chunkR3UVYT3Bcjs.getOutputFile;
package/dist/utilities.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  getOutputFile
3
- } from "./chunk-VSFHJTTZ.js";
3
+ } from "./chunk-ZFOG3DH7.js";
4
4
  export {
5
5
  getOutputFile
6
6
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/untyped",
3
- "version": "0.11.4",
3
+ "version": "0.11.6",
4
4
  "type": "module",
5
5
  "description": "A package containing `untyped` utilities for building Storm Software libraries and applications",
6
6
  "repository": {
@@ -1,6 +0,0 @@
1
- "use strict";
2
-
3
- var _chunk3STWFZKGcjs = require('./chunk-3STWFZKG.cjs');
4
-
5
- // src/generators/index.ts
6
- _chunk3STWFZKGcjs.init_cjs_shims.call(void 0, );