@webreflection/signals 0.1.6 → 0.1.7

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 +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -78,7 +78,7 @@ You know, nowadays it's hard to find libraries that are still 100% under control
78
78
  * [signal](https://github.com/WebReflection/signals/blob/main/src/signal.js) is 26 LOC.
79
79
  * [computed](https://github.com/WebReflection/signals/blob/main/src/computed.js) is 33 LOC.
80
80
  * the shared [stack](https://github.com/WebReflection/signals/blob/main/src/stack.js) is 18 LOC.
81
- * [effect](https://github.com/WebReflection/signals/blob/main/src/effect.js) is where business happens, 75 LOC.
81
+ * [effect](https://github.com/WebReflection/signals/blob/main/src/effect.js) is where business happens, 74 LOC.
82
82
  * [disposable](https://github.com/WebReflection/signals/blob/main/src/disposable.js) is 10 LOC, based on the core library mentioned in the previous points.
83
83
  * [branded](https://github.com/WebReflection/signals/blob/main/src/branded.js) is 25 LOC extra needed only for libraries building on top.
84
84
 
@@ -87,7 +87,7 @@ I mean ... that's coding, isn't it ... today I really needed something that woul
87
87
 
88
88
  #### Benchmark
89
89
 
90
- ![benchmark](/WebReflection/usignal/raw/main/test/benchmark.png)
90
+ ![benchmark](https://raw.githubusercontent.com/WebReflection/usignal/main/test/benchmark.png)
91
91
 
92
92
  There is a *huge* difference between *NodeJS* and *Bun* but that's likely because *JSC* handles *Set* or *Map* in a better way, meaning all *WebKit* based browsers and mobile devices will have similar *Preact* performance, while *Chromium* based browsers will have half Preact size, but 1.5X slowdown.
93
93
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webreflection/signals",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "A minimalistic Preact-like signals implementation",
5
5
  "main": "src/index.js",
6
6
  "module": "src/index.js",