@storm-software/untyped 0.19.13 → 0.19.14
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 +12 -0
- package/bin/untyped.js +12 -0
- package/dist/generate.d.cts +1 -1
- package/dist/generate.d.ts +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/{types-HghpYdGB.d.cts → types-5OQltn_C.d.cts} +4 -0
- package/dist/{types-HghpYdGB.d.ts → types-5OQltn_C.d.ts} +4 -0
- package/package.json +2 -2
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 -->
|
package/bin/untyped.cjs
CHANGED
|
@@ -65866,6 +65866,13 @@ var workspaceDirectorySchema = object({
|
|
|
65866
65866
|
schemaRegistry.add(workspaceDirectorySchema, {
|
|
65867
65867
|
description: "Various directories used by the workspace to store data, cache, and configuration files"
|
|
65868
65868
|
});
|
|
65869
|
+
var variantSchema = _default(
|
|
65870
|
+
_enum(["minimal", "monorepo"]),
|
|
65871
|
+
"monorepo"
|
|
65872
|
+
);
|
|
65873
|
+
schemaRegistry.add(variantSchema, {
|
|
65874
|
+
description: "The variant of the workspace. This can be used to enable or disable certain features or configurations."
|
|
65875
|
+
});
|
|
65869
65876
|
var errorCodesFileSchema = _default(
|
|
65870
65877
|
string2().check(_trim()),
|
|
65871
65878
|
STORM_DEFAULT_ERROR_CODES_FILE
|
|
@@ -66063,6 +66070,7 @@ var workspaceConfigSchema = object({
|
|
|
66063
66070
|
$schema: schemaNameSchema,
|
|
66064
66071
|
extends: extendsSchema,
|
|
66065
66072
|
name: nameSchema,
|
|
66073
|
+
variant: variantSchema,
|
|
66066
66074
|
namespace: namespaceSchema,
|
|
66067
66075
|
organization: orgSchema,
|
|
66068
66076
|
repository: repositorySchema,
|
|
@@ -67532,6 +67540,7 @@ var getConfigEnv = () => {
|
|
|
67532
67540
|
let config2 = {
|
|
67533
67541
|
extends: process.env[`${prefix}EXTENDS`] || void 0,
|
|
67534
67542
|
name: process.env[`${prefix}NAME`] || void 0,
|
|
67543
|
+
variant: process.env[`${prefix}VARIANT`] || void 0,
|
|
67535
67544
|
namespace: process.env[`${prefix}NAMESPACE`] || void 0,
|
|
67536
67545
|
owner: process.env[`${prefix}OWNER`] || void 0,
|
|
67537
67546
|
bot: {
|
|
@@ -67757,6 +67766,9 @@ var setConfigEnv = (config2) => {
|
|
|
67757
67766
|
if (config2.name) {
|
|
67758
67767
|
process.env[`${prefix}NAME`] = config2.name;
|
|
67759
67768
|
}
|
|
67769
|
+
if (config2.variant) {
|
|
67770
|
+
process.env[`${prefix}VARIANT`] = config2.variant;
|
|
67771
|
+
}
|
|
67760
67772
|
if (config2.namespace) {
|
|
67761
67773
|
process.env[`${prefix}NAMESPACE`] = config2.namespace;
|
|
67762
67774
|
}
|
package/bin/untyped.js
CHANGED
|
@@ -66064,6 +66064,13 @@ var workspaceDirectorySchema = object({
|
|
|
66064
66064
|
schemaRegistry.add(workspaceDirectorySchema, {
|
|
66065
66065
|
description: "Various directories used by the workspace to store data, cache, and configuration files"
|
|
66066
66066
|
});
|
|
66067
|
+
var variantSchema = _default(
|
|
66068
|
+
_enum(["minimal", "monorepo"]),
|
|
66069
|
+
"monorepo"
|
|
66070
|
+
);
|
|
66071
|
+
schemaRegistry.add(variantSchema, {
|
|
66072
|
+
description: "The variant of the workspace. This can be used to enable or disable certain features or configurations."
|
|
66073
|
+
});
|
|
66067
66074
|
var errorCodesFileSchema = _default(
|
|
66068
66075
|
string2().check(_trim()),
|
|
66069
66076
|
STORM_DEFAULT_ERROR_CODES_FILE
|
|
@@ -66261,6 +66268,7 @@ var workspaceConfigSchema = object({
|
|
|
66261
66268
|
$schema: schemaNameSchema,
|
|
66262
66269
|
extends: extendsSchema,
|
|
66263
66270
|
name: nameSchema,
|
|
66271
|
+
variant: variantSchema,
|
|
66264
66272
|
namespace: namespaceSchema,
|
|
66265
66273
|
organization: orgSchema,
|
|
66266
66274
|
repository: repositorySchema,
|
|
@@ -67727,6 +67735,7 @@ var getConfigEnv = () => {
|
|
|
67727
67735
|
let config2 = {
|
|
67728
67736
|
extends: process.env[`${prefix}EXTENDS`] || void 0,
|
|
67729
67737
|
name: process.env[`${prefix}NAME`] || void 0,
|
|
67738
|
+
variant: process.env[`${prefix}VARIANT`] || void 0,
|
|
67730
67739
|
namespace: process.env[`${prefix}NAMESPACE`] || void 0,
|
|
67731
67740
|
owner: process.env[`${prefix}OWNER`] || void 0,
|
|
67732
67741
|
bot: {
|
|
@@ -67952,6 +67961,9 @@ var setConfigEnv = (config2) => {
|
|
|
67952
67961
|
if (config2.name) {
|
|
67953
67962
|
process.env[`${prefix}NAME`] = config2.name;
|
|
67954
67963
|
}
|
|
67964
|
+
if (config2.variant) {
|
|
67965
|
+
process.env[`${prefix}VARIANT`] = config2.variant;
|
|
67966
|
+
}
|
|
67955
67967
|
if (config2.namespace) {
|
|
67956
67968
|
process.env[`${prefix}NAMESPACE`] = config2.namespace;
|
|
67957
67969
|
}
|
package/dist/generate.d.cts
CHANGED
package/dist/generate.d.ts
CHANGED
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-5OQltn_C.cjs';
|
|
7
7
|
import 'zod';
|
|
8
8
|
import 'zod/mini';
|
|
9
9
|
import 'glob';
|
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-5OQltn_C.js';
|
|
7
7
|
import 'zod';
|
|
8
8
|
import 'zod/mini';
|
|
9
9
|
import 'glob';
|
|
@@ -8,6 +8,10 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
|
|
|
8
8
|
$schema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
9
9
|
extends: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniString<string>>]>>;
|
|
10
10
|
name: z.ZodMiniString<string>;
|
|
11
|
+
variant: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
12
|
+
minimal: "minimal";
|
|
13
|
+
monorepo: "monorepo";
|
|
14
|
+
}>>;
|
|
11
15
|
namespace: z.ZodMiniString<string>;
|
|
12
16
|
organization: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
13
17
|
name: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
@@ -8,6 +8,10 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
|
|
|
8
8
|
$schema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
9
9
|
extends: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniString<string>>]>>;
|
|
10
10
|
name: z.ZodMiniString<string>;
|
|
11
|
+
variant: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
12
|
+
minimal: "minimal";
|
|
13
|
+
monorepo: "monorepo";
|
|
14
|
+
}>>;
|
|
11
15
|
namespace: z.ZodMiniString<string>;
|
|
12
16
|
organization: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
13
17
|
name: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/untyped",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.14",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing `untyped` utilities for building Storm Software libraries and applications",
|
|
6
6
|
"repository": {
|
|
@@ -197,5 +197,5 @@
|
|
|
197
197
|
},
|
|
198
198
|
"publishConfig": { "access": "public" },
|
|
199
199
|
"sideEffects": false,
|
|
200
|
-
"gitHead": "
|
|
200
|
+
"gitHead": "bd2cceced6f34cd309c7a8cf92fca76621c40470"
|
|
201
201
|
}
|