ooxml.js 2.9.4 → 2.9.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.
Files changed (2) hide show
  1. package/README.md +7 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -201,12 +201,13 @@ const out = encodeCompactPackage(compact); // CompactPackage -> OOXML bytes dire
201
201
  ## Build, test, and lint
202
202
 
203
203
  ```sh
204
- pnpm build # tsdown -> dist/ (one ESM + CJS + .d.ts set per source module, via tsdown.config.ts)
205
- pnpm lint # eslint . --fix --cache --max-warnings 0
206
- pnpm typecheck # tsc --noEmit
207
- pnpm test # vitest run
208
- pnpm test:watch # vitest
209
- pnpm test:smoke # builds dist/, then runs test/smoke.test.mjs to verify the built ESM and CJS artifacts both load and behave identically
204
+ pnpm build # turbo run _build (tsdown -> dist/: one ESM + CJS + .d.ts set per source module, via tsdown.config.ts)
205
+ pnpm lint # turbo run _lint (eslint . --fix --cache --max-warnings 0)
206
+ pnpm typecheck # turbo run _typecheck _typecheck:node (tsc against tsconfig.json + tsconfig.node.json, the dual-tsconfig setup)
207
+ pnpm test # turbo run _test (vitest run --project unit)
208
+ pnpm test:watch # vitest --project unit
209
+ pnpm test:workers # turbo run _test:workers (vitest run --config vitest.workers.config.ts)
210
+ pnpm test:smoke # turbo run _test:smoke (builds dist/, then runs test/smoke.test.mjs to verify the built ESM and CJS artifacts both load and behave identically)
210
211
  ```
211
212
 
212
213
  `pnpm prepublishOnly` runs `lint`, `typecheck`, `tsdown`, `publint`, and `@arethetypeswrong/cli` (`attw --pack`) — the full publish-readiness check — before a release.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ooxml.js",
3
- "version": "2.9.4",
3
+ "version": "2.9.5",
4
4
  "description": "Type-safe, lossless round-trip conversion between OOXML packages (docx, pptx, xlsx) and JSON, built on Zod 4 codecs.",
5
5
  "type": "module",
6
6
  "repository": {