@alwatr/signal 4.0.3 → 4.0.5
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 +17 -0
- package/dist/main.cjs +1 -1
- package/dist/main.mjs +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,23 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [4.0.5](https://github.com/Alwatr/flux/compare/v4.0.4...v4.0.5) (2025-03-13)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* bump @alwatr/nanolib to version 5.5.1 across multiple packages for iOS issues ([70d879e](https://github.com/Alwatr/flux/commit/70d879e379a560fbcbe41f7176a638942ee22152)) by @
|
|
11
|
+
|
|
12
|
+
### Dependencies update
|
|
13
|
+
|
|
14
|
+
* update @types/node to version 22.13.10 and bump [@lerna-lite](https://github.com/lerna-lite) packages to version 3.12.3 ([e918359](https://github.com/Alwatr/flux/commit/e918359ec013c32b3224aebf04f92553be31b395)) by @
|
|
15
|
+
|
|
16
|
+
## [4.0.4](https://github.com/Alwatr/flux/compare/v4.0.3...v4.0.4) (2025-03-06)
|
|
17
|
+
|
|
18
|
+
### Dependencies update
|
|
19
|
+
|
|
20
|
+
* bump @alwatr/nanolib, @alwatr/nano-build, and @alwatr/type-helper to version 5.5.0 across multiple packages ([db73076](https://github.com/Alwatr/flux/commit/db7307671b0f14cb19072656bd6021144b27dadb)) by @
|
|
21
|
+
* **deps-dev:** bump the dependencies group across 1 directory with 6 updates ([5978202](https://github.com/Alwatr/flux/commit/5978202acbdc6b2e3db6d315dc3c114daa4f0289)) by @dependabot[bot]
|
|
22
|
+
|
|
6
23
|
## [4.0.3](https://github.com/Alwatr/flux/compare/v4.0.2...v4.0.3) (2025-02-18)
|
|
7
24
|
|
|
8
25
|
### Dependencies update
|
package/dist/main.cjs
CHANGED
package/dist/main.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwatr/signal",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.5",
|
|
4
4
|
"description": "A simple and efficient TypeScript library for event-driven communication using signals.",
|
|
5
5
|
"author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",
|
|
6
6
|
"keywords": [
|
|
@@ -56,17 +56,17 @@
|
|
|
56
56
|
"clean": "rm -rfv dist *.tsbuildinfo"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@alwatr/nanolib": "^5.
|
|
60
|
-
"@alwatr/observable": "^4.0.
|
|
59
|
+
"@alwatr/nanolib": "^5.5.1",
|
|
60
|
+
"@alwatr/observable": "^4.0.5"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@alwatr/nano-build": "^5.
|
|
63
|
+
"@alwatr/nano-build": "^5.5.0",
|
|
64
64
|
"@alwatr/prettier-config": "^5.0.0",
|
|
65
65
|
"@alwatr/tsconfig-base": "^5.0.0",
|
|
66
|
-
"@alwatr/type-helper": "^5.
|
|
67
|
-
"@types/node": "^22.13.
|
|
66
|
+
"@alwatr/type-helper": "^5.4.0",
|
|
67
|
+
"@types/node": "^22.13.10",
|
|
68
68
|
"jest": "^29.7.0",
|
|
69
|
-
"typescript": "^5.
|
|
69
|
+
"typescript": "^5.8.2"
|
|
70
70
|
},
|
|
71
|
-
"gitHead": "
|
|
71
|
+
"gitHead": "5cb1db2aa97cdb1f2b093ade62bccaca691a5d46"
|
|
72
72
|
}
|