@decaf-ts/as-zod 1.8.0 → 1.9.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 +1 -1
- package/lib/esm/index.js +1 -1
- package/lib/types/index.d.cts +1 -1
- package/lib/types/index.d.mts +1 -1
- package/lib/types/index.d.ts +1 -1
- package/package.json +4 -4
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.
|
|
27
|
+
exports.VERSION = "1.8.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
package/lib/types/index.d.cts
CHANGED
package/lib/types/index.d.mts
CHANGED
package/lib/types/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@decaf-ts/as-zod",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.9.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": "
|
|
29
|
-
"build: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 &&
|
|
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",
|