@automate.ax/codec 0.75.0 → 0.77.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/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import z from "zod";
1
+ import * as z from "zod";
2
2
  export type { ObjectProducingSchema, ProducingSchema } from "./schema.js";
3
3
  /**
4
4
  * Values accepted by the codec encoder, including recursively nested containers
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import z from "zod";
1
+ import * as z from "zod";
2
2
  import { isPlainObject } from "./lib/utils.js";
3
3
  import { packr } from "./packr.js";
4
4
  import { bufferAsyncValues } from "./walk.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automate.ax/codec",
3
- "version": "0.75.0",
3
+ "version": "0.77.0",
4
4
  "description": "Msgpack-based encoding helpers for Automate.ax runtime data.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -40,8 +40,8 @@
40
40
  },
41
41
  "scripts": {
42
42
  "typecheck": "tsc --noEmit",
43
- "lint": "concurrently --success all --kill-others-on-fail \"oxlint --type-aware\" \"bun --bun eslint .\"",
44
- "lint:fix": "concurrently --success all --kill-others-on-fail \"oxlint --type-aware --fix --fix-suggestions\" \"bun --bun eslint . --fix\"",
43
+ "lint": "oxlint --type-aware --threads=2 && bun --bun eslint . --cache --cache-strategy content",
44
+ "lint:fix": "oxlint --type-aware --threads=2 --fix --fix-suggestions && bun --bun eslint . --fix --cache --cache-strategy content",
45
45
  "check": "bun run typecheck && bun run lint",
46
46
  "test": "vitest run --testTimeout 10000",
47
47
  "build": "zshy",
@@ -61,7 +61,6 @@
61
61
  "@types/bun": "latest",
62
62
  "@typescript/native": "npm:typescript@^7.0.2",
63
63
  "@zachsents/oxlint-config": "^0.4.1",
64
- "concurrently": "^10.0.4",
65
64
  "eslint": "^9.39.5",
66
65
  "oxlint": "^1.76.0",
67
66
  "oxlint-tsgolint": "^7.0.2001",
package/src/index.ts CHANGED
@@ -1,4 +1,4 @@
1
- import z from "zod"
1
+ import * as z from "zod"
2
2
  import { isPlainObject } from "./lib/utils"
3
3
  import { packr } from "./packr"
4
4
  import { bufferAsyncValues } from "./walk"