@guanghechen/observable 6.1.1 → 6.1.2
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 +11 -0
- package/lib/types/index.d.ts +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See
|
|
4
4
|
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## <small>6.1.2 (2024-09-18)</small>
|
|
7
|
+
|
|
8
|
+
- :rotating_light: improve: fix lint ([3083212](https://github.com/guanghechen/sora/commit/3083212))
|
|
9
|
+
- :wrench: chore: upgrade devDependencies and fix configs
|
|
10
|
+
([230fb63](https://github.com/guanghechen/sora/commit/230fb63))
|
|
11
|
+
|
|
12
|
+
# Change Log
|
|
13
|
+
|
|
14
|
+
All notable changes to this project will be documented in this file. See
|
|
15
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
16
|
+
|
|
6
17
|
## [6.1.1](https://github.com/guanghechen/sora/compare/@guanghechen/observable@6.1.0...@guanghechen/observable@6.1.1) (2024-03-10)
|
|
7
18
|
|
|
8
19
|
### Bug Fixes
|
package/lib/types/index.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ interface IObservableNextOptions {
|
|
|
19
19
|
*/
|
|
20
20
|
readonly strict?: boolean;
|
|
21
21
|
/**
|
|
22
|
-
* Force trigger the notification of subscribers even the next value
|
|
22
|
+
* Force trigger the notification of subscribers even the next value equals to the current value.
|
|
23
23
|
* @default false
|
|
24
24
|
*/
|
|
25
25
|
readonly force?: boolean;
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@guanghechen/observable",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.2",
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "guanghechen",
|
|
6
6
|
"url": "https://github.com/guanghechen/"
|
|
7
7
|
},
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "https://github.com/guanghechen/sora/tree/@guanghechen/observable@6.1.
|
|
10
|
+
"url": "https://github.com/guanghechen/sora/tree/@guanghechen/observable@6.1.1",
|
|
11
11
|
"directory": "packages/observable"
|
|
12
12
|
},
|
|
13
|
-
"homepage": "https://github.com/guanghechen/sora/tree/@guanghechen/observable@6.1.
|
|
13
|
+
"homepage": "https://github.com/guanghechen/sora/tree/@guanghechen/observable@6.1.1/packages/observable#readme",
|
|
14
14
|
"keywords": [
|
|
15
15
|
"observable"
|
|
16
16
|
],
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"README.md"
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@guanghechen/disposable": "^1.0.0-alpha.
|
|
38
|
-
"@guanghechen/subscriber": "^1.0.0-alpha.
|
|
37
|
+
"@guanghechen/disposable": "^1.0.0-alpha.5",
|
|
38
|
+
"@guanghechen/subscriber": "^1.0.0-alpha.2"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "61841206a2ca8060c0f47a32b9aa177b318f7c2e"
|
|
41
41
|
}
|