@alwatr/flux 6.1.1 → 6.2.0
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 +10 -0
- package/package.json +17 -17
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
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
|
+
## [6.2.0](https://github.com/Alwatr/flux/compare/v6.1.1...v6.2.0) (2026-02-18)
|
|
7
|
+
|
|
8
|
+
### 🔨 Code Refactoring
|
|
9
|
+
|
|
10
|
+
* migrate to bun package manager ([545c1ae](https://github.com/Alwatr/flux/commit/545c1ae31f04ece1ef1abd4db7237b47b65b0473))
|
|
11
|
+
|
|
12
|
+
### 🔗 Dependencies update
|
|
13
|
+
|
|
14
|
+
* update dependencies across packages to latest versions ([6ac0147](https://github.com/Alwatr/flux/commit/6ac01476b0803d662035d4c291bb5c77ae4207f6))
|
|
15
|
+
|
|
6
16
|
## [6.1.1](https://github.com/Alwatr/flux/compare/v6.1.0...v6.1.1) (2025-11-12)
|
|
7
17
|
|
|
8
18
|
### 🐛 Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwatr/flux",
|
|
3
3
|
"description": "Flux is not just another state management library; it's a paradigm shift. It provides a cohesive, type-safe, and incredibly performant ecosystem for orchestrating application state, from simple reactive values to complex, resilient workflows. Built on the principles of predictability and simplicity, Flux empowers you to write clean, decoupled, and highly maintainable code.",
|
|
4
|
-
"version": "6.
|
|
4
|
+
"version": "6.2.0",
|
|
5
5
|
"author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",
|
|
6
6
|
"bugs": "https://github.com/Alwatr/flux/issues",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@alwatr/fsm": "6.
|
|
9
|
-
"@alwatr/signal": "6.
|
|
8
|
+
"@alwatr/fsm": "6.2.0",
|
|
9
|
+
"@alwatr/signal": "6.2.0"
|
|
10
10
|
},
|
|
11
11
|
"devDependencies": {
|
|
12
|
-
"@alwatr/nano-build": "^6.
|
|
13
|
-
"@alwatr/prettier-config": "^
|
|
12
|
+
"@alwatr/nano-build": "^6.4.1",
|
|
13
|
+
"@alwatr/prettier-config": "^6.0.2",
|
|
14
14
|
"@alwatr/tsconfig-base": "^6.0.3",
|
|
15
|
-
"@alwatr/type-helper": "^
|
|
15
|
+
"@alwatr/type-helper": "^7.0.1",
|
|
16
16
|
"@types/node": "^22.19.1",
|
|
17
17
|
"jest": "^30.2.0",
|
|
18
18
|
"typescript": "^5.9.3"
|
|
@@ -49,23 +49,23 @@
|
|
|
49
49
|
"directory": "packages/signal"
|
|
50
50
|
},
|
|
51
51
|
"scripts": {
|
|
52
|
-
"b": "
|
|
53
|
-
"build": "
|
|
52
|
+
"b": "bun run build",
|
|
53
|
+
"build": "bun run build:ts & bun run build:es",
|
|
54
54
|
"build:es": "nano-build --preset=module",
|
|
55
55
|
"build:ts": "tsc --build",
|
|
56
|
-
"c": "
|
|
57
|
-
"cb": "
|
|
56
|
+
"c": "bun run clean",
|
|
57
|
+
"cb": "bun run clean && bun run build",
|
|
58
58
|
"clean": "rm -rfv dist *.tsbuildinfo",
|
|
59
|
-
"d": "
|
|
60
|
-
"t": "
|
|
59
|
+
"d": "bun run build:es && bun run --enable-source-maps --trace-warnings",
|
|
60
|
+
"t": "bun run test",
|
|
61
61
|
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --enable-source-maps --experimental-vm-modules\" jest",
|
|
62
|
-
"w": "
|
|
63
|
-
"watch": "
|
|
64
|
-
"watch:es": "
|
|
65
|
-
"watch:ts": "
|
|
62
|
+
"w": "bun run watch",
|
|
63
|
+
"watch": "bun run watch:ts & bun run watch:es",
|
|
64
|
+
"watch:es": "bun run build:es --watch",
|
|
65
|
+
"watch:ts": "bun run build:ts --watch --preserveWatchOutput"
|
|
66
66
|
},
|
|
67
67
|
"sideEffects": false,
|
|
68
68
|
"type": "module",
|
|
69
69
|
"types": "./dist/main.d.ts",
|
|
70
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "04de851ade742a7d995918103ab04f28a6787622"
|
|
71
71
|
}
|