iterflow 0.2.2 → 0.4.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iterflow",
3
- "version": "0.2.2",
3
+ "version": "0.4.0",
4
4
  "description": "Powerful iterator utilities for ES2022+ with statistical operations, windowing, and lazy evaluation. Forward compatible with ES2025 iterator helpers.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -23,18 +23,10 @@
23
23
  ],
24
24
  "scripts": {
25
25
  "build": "tsup",
26
- "test": "vitest run --exclude \"**/async.test.ts\"",
26
+ "test": "vitest run",
27
27
  "test:watch": "vitest",
28
28
  "test:coverage": "vitest run --coverage",
29
29
  "test:types": "tsd",
30
- "bench": "vitest bench",
31
- "bench:transformations": "vitest bench benchmarks/transformations.bench.ts",
32
- "bench:terminals": "vitest bench benchmarks/terminals.bench.ts",
33
- "bench:statistics": "vitest bench benchmarks/statistics.bench.ts",
34
- "bench:windowing": "vitest bench benchmarks/windowing.bench.ts",
35
- "bench:lazy": "vitest bench benchmarks/lazy-evaluation.bench.ts",
36
- "bench:memory": "vitest bench benchmarks/memory-profiling.bench.ts",
37
- "bench:production": "vitest bench benchmarks/production-profiling.bench.ts",
38
30
  "test:production": "vitest run tests/production/",
39
31
  "profile:production": "node scripts/production-profiler.js",
40
32
  "analyze:bundle": "bash scripts/analyze-bundle.sh",