@decaf-ts/as-zod 1.8.0 → 1.10.0

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/lib/cjs/index.cjs CHANGED
@@ -24,7 +24,7 @@ __exportStar(require("./overrides.cjs"), exports);
24
24
  * @const VERSION
25
25
  * @memberOf module:as-zod
26
26
  */
27
- exports.VERSION = "1.7.0";
27
+ exports.VERSION = "1.9.0";
28
28
  decoration_1.Metadata.registerLibrary("@decaf-ts/as-zod", exports.VERSION);
29
29
  //# sourceMappingURL=index.js.map
30
30
  //# sourceMappingURL=index.js.map
package/lib/esm/index.js CHANGED
@@ -7,6 +7,6 @@ export * from "./overrides.js";
7
7
  * @const VERSION
8
8
  * @memberOf module:as-zod
9
9
  */
10
- export const VERSION = "1.7.0";
10
+ export const VERSION = "1.9.0";
11
11
  Metadata.registerLibrary("@decaf-ts/as-zod", VERSION);
12
12
  //# sourceMappingURL=index.js.map
@@ -6,4 +6,4 @@ export * from "./overrides.cjs";
6
6
  * @const VERSION
7
7
  * @memberOf module:as-zod
8
8
  */
9
- export declare const VERSION = "1.7.0";
9
+ export declare const VERSION = "1.9.0";
@@ -6,4 +6,4 @@ export * from "./overrides.js";
6
6
  * @const VERSION
7
7
  * @memberOf module:as-zod
8
8
  */
9
- export declare const VERSION = "1.7.0";
9
+ export declare const VERSION = "1.9.0";
@@ -6,4 +6,4 @@ export * from "./overrides";
6
6
  * @const VERSION
7
7
  * @memberOf module:as-zod
8
8
  */
9
- export declare const VERSION = "1.7.0";
9
+ export declare const VERSION = "1.9.0";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@decaf-ts/as-zod",
3
- "version": "1.8.0",
3
+ "version": "1.10.0",
4
4
  "description": "Zod compatibility library",
5
5
  "type": "module",
6
6
  "exports": {
@@ -25,8 +25,8 @@
25
25
  "set-git-auth": "git config url.\"https://api:$(cat .token)@github.com/\".insteadOf \"https://github.com/\" && git config url.\"https://ssh:$(cat .token)@github.com/\".insteadOf \"ssh://git@github.com/\" && git config url.\"https://git:$(cat .token)@github.com/\".insteadOf \"git@github.com:\"",
26
26
  "flash-forward": "npx npm-check-updates -u && npm run do-install",
27
27
  "reset": "rm -rf * && git checkout . && git pull && npm run do-install",
28
- "build": "npx build-scripts --dev",
29
- "build:prod": "npx build-scripts --prod",
28
+ "build": "build-scripts --dev",
29
+ "build:prod": "build-scripts --prod",
30
30
  "test": "jest --runInBand --detectOpenHandles",
31
31
  "test:unit": "jest --testPathPatterns=\"/tests/unit\" --passWithNoTests --detectOpenHandles",
32
32
  "test:integration": "jest --testPathPatterns=\"/tests/(integration)\" --passWithNoTests --detectOpenHandles",
@@ -41,7 +41,7 @@
41
41
  "clean-publish": "npx clean-publish",
42
42
  "drawings": "for FILE in workdocs/drawings/*.drawio; do echo \"converting $FILE to image...\" && docker run --rm -v $(pwd):/data rlespinasse/drawio-export --format png $FILE; done && cp -rf workdocs/drawings/export/* workdocs/resources/",
43
43
  "uml": "cd workdocs/uml && for FILE in ./*.puml; do docker run --rm -v $(pwd):/work -w /work miy4/plantuml -DPLANTUML_LIMIT_SIZE=8192 -tpng $FILE; done && cd ../.. && cp -fr workdocs/uml/*.png workdocs/resources/",
44
- "docs": "npx rimraf ./docs && mkdir docs && npx build-scripts --docs",
44
+ "docs": "npx rimraf ./docs && mkdir docs && build-scripts --docs",
45
45
  "publish-docs": "docker run -it --rm --user $(id -u):$(id -g) -v \"$(pwd)/workdocs/confluence:/content\" -e ATLASSIAN_API_TOKEN=$(cat .confluence-token) ghcr.io/markdown-confluence/publish:latest",
46
46
  "docker:login": "docker login ghcr.io -u $(cat .dockeruser) -p $(cat .dockertoken)",
47
47
  "docker:build": "npm run docker:build-base",