@mrjacket/ahko 1.1.5 → 1.1.6
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/CHANGELOG.md +7 -0
- package/README.md +13 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.1.6] - 2026-09-24
|
|
9
|
+
|
|
10
|
+
### Documentation
|
|
11
|
+
- Add Coffee <3
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
8
15
|
## [1.1.5] - 2026-09-24 — Batch Collections, Dynamic & Adaptive Concurrency, Task Tags
|
|
9
16
|
|
|
10
17
|
### Added
|
package/README.md
CHANGED
|
@@ -33,6 +33,9 @@
|
|
|
33
33
|
<a href="https://github.com/x-name15/ahko/issues">
|
|
34
34
|
<img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg" alt="PRs Welcome">
|
|
35
35
|
</a>
|
|
36
|
+
<a href="https://buymeacoffee.com/mrjacket">
|
|
37
|
+
<img src="https://img.shields.io/badge/Buy%20Me%20a%20Coffee-ffdd00?logo=buy-me-a-coffee&logoColor=black" alt="Buy Me A Coffee">
|
|
38
|
+
</a>
|
|
36
39
|
</p>
|
|
37
40
|
|
|
38
41
|
`ahko` is a low-energy task scheduler for JavaScript and TypeScript.
|
|
@@ -608,6 +611,16 @@ All scheduler errors inherit from `AhkoError`:
|
|
|
608
611
|
|
|
609
612
|
---
|
|
610
613
|
|
|
614
|
+
## Support & Sponsoring
|
|
615
|
+
|
|
616
|
+
If you liked this library or want to support my work, I'd be eternally grateful for a warm coffee! ☕ <3
|
|
617
|
+
|
|
618
|
+
<a href="https://buymeacoffee.com/mrjacket" target="_blank">
|
|
619
|
+
<img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" width="180">
|
|
620
|
+
</a>
|
|
621
|
+
|
|
622
|
+
---
|
|
623
|
+
|
|
611
624
|
## License
|
|
612
625
|
[GNU General Public License v3.0 (GPL-3.0-only)](LICENSE)
|
|
613
626
|
|