@storm-software/untyped 0.19.4 → 0.19.5
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 +2 -5
- package/bin/untyped.js +2 -5
- 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/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
|
@@ -66018,16 +66018,13 @@ schemaRegistry.add(packageManagerSchema, {
|
|
|
66018
66018
|
description: "The JavaScript/TypeScript package manager used by the repository"
|
|
66019
66019
|
});
|
|
66020
66020
|
var timezoneSchema = _default(
|
|
66021
|
-
string2().check(_trim()
|
|
66021
|
+
string2().check(_trim()),
|
|
66022
66022
|
"America/New_York"
|
|
66023
66023
|
);
|
|
66024
66024
|
schemaRegistry.add(timezoneSchema, {
|
|
66025
66025
|
description: "The default timezone of the workspace"
|
|
66026
66026
|
});
|
|
66027
|
-
var localeSchema = _default(
|
|
66028
|
-
string2().check(_trim(), _toLowerCase()),
|
|
66029
|
-
"en-US"
|
|
66030
|
-
);
|
|
66027
|
+
var localeSchema = _default(string2().check(_trim()), "en-US");
|
|
66031
66028
|
schemaRegistry.add(localeSchema, {
|
|
66032
66029
|
description: "The default locale of the workspace"
|
|
66033
66030
|
});
|
package/bin/untyped.js
CHANGED
|
@@ -66216,16 +66216,13 @@ schemaRegistry.add(packageManagerSchema, {
|
|
|
66216
66216
|
description: "The JavaScript/TypeScript package manager used by the repository"
|
|
66217
66217
|
});
|
|
66218
66218
|
var timezoneSchema = _default(
|
|
66219
|
-
string2().check(_trim()
|
|
66219
|
+
string2().check(_trim()),
|
|
66220
66220
|
"America/New_York"
|
|
66221
66221
|
);
|
|
66222
66222
|
schemaRegistry.add(timezoneSchema, {
|
|
66223
66223
|
description: "The default timezone of the workspace"
|
|
66224
66224
|
});
|
|
66225
|
-
var localeSchema = _default(
|
|
66226
|
-
string2().check(_trim(), _toLowerCase()),
|
|
66227
|
-
"en-US"
|
|
66228
|
-
);
|
|
66225
|
+
var localeSchema = _default(string2().check(_trim()), "en-US");
|
|
66229
66226
|
schemaRegistry.add(localeSchema, {
|
|
66230
66227
|
description: "The default locale of the workspace"
|
|
66231
66228
|
});
|
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-Ca7EE8eb.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-Ca7EE8eb.js';
|
|
7
7
|
import 'zod';
|
|
8
8
|
import 'zod/mini';
|
|
9
9
|
import 'glob';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/untyped",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.5",
|
|
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": "dd148e6f766439815722095415f6b77d8b9b705f"
|
|
201
201
|
}
|