waiit 4.0.0 → 4.0.1

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 +3 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -134,7 +134,9 @@ waiit 3000 && echo "3 seconds passed"
134
134
  | `app.js` | ESM module (`import wait from 'waiit'`) |
135
135
  | `app.cjs` | CommonJS module (`require('waiit')`) |
136
136
  | `app.global.js` | UMD for browsers (`<script>` tag → `window.wait`) |
137
- | `app.d.ts` | TypeScript type definitions |
137
+ | `app.d.ts` | TypeScript type definitions (ESM) |
138
+ | `app.cjs.d.ts` | TypeScript type definitions (CommonJS) |
139
+ | `app.global.d.ts` | TypeScript type definitions (Global/UMD) |
138
140
  | `app.cli.js` | CLI binary (`npx waiit 1000`) |
139
141
 
140
142
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waiit",
3
- "version": "4.0.0",
3
+ "version": "4.0.1",
4
4
  "description": "Promise-based delay utility. Tiny, typed, zero dependencies.",
5
5
  "main": "app.cjs",
6
6
  "module": "app.js",