@jesscss/awaitable-pipe 2.0.0-alpha.8 → 2.0.0-alpha.9

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 +5 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,7 +2,11 @@
2
2
 
3
3
  A tiny, strongly-typed pipe that stays synchronous until a step returns a Promise — with one optional error handler.
4
4
 
5
- It’s a small utility from the [Jess](https://github.com/jesscss/jess) project (Less.js v5, a ground-up rewrite of the Less CSS preprocessor), where hot paths call functions that are usually — but not always — synchronous. It’s zero-dependency and usable on its own: it stays sync when everything is sync, and turns into a Promise only when something is async. No wrappers, no ceremony.
5
+ It’s a small utility from the [Jess](https://github.com/jesscss/jess) project,
6
+ where hot paths call functions that are usually — but not always —
7
+ synchronous. It’s zero-dependency and usable on its own: it stays sync when
8
+ everything is sync, and turns into a Promise only when something is async. No
9
+ wrappers, no ceremony.
6
10
 
7
11
  - **Stays sync when it can**: all-sync pipelines return a plain value
8
12
  - **Goes async when it must**: any async input/step returns a Promise
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jesscss/awaitable-pipe",
3
- "version": "2.0.0-alpha.8",
3
+ "version": "2.0.0-alpha.9",
4
4
  "description": "A tiny, strongly-typed pipe that stays sync when possible and becomes a Promise when needed. With an optional single-point error handler.",
5
5
  "type": "module",
6
6
  "main": "lib/index.cjs",