@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.
Files changed (2) hide show
  1. package/CHANGELOG.md +10 -0
  2. 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.1.1",
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.1.1",
9
- "@alwatr/signal": "6.1.1"
8
+ "@alwatr/fsm": "6.2.0",
9
+ "@alwatr/signal": "6.2.0"
10
10
  },
11
11
  "devDependencies": {
12
- "@alwatr/nano-build": "^6.3.6",
13
- "@alwatr/prettier-config": "^5.0.5",
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": "^6.1.5",
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": "yarn run build",
53
- "build": "yarn run build:ts & yarn run build:es",
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": "yarn run clean",
57
- "cb": "yarn run clean && yarn run build",
56
+ "c": "bun run clean",
57
+ "cb": "bun run clean && bun run build",
58
58
  "clean": "rm -rfv dist *.tsbuildinfo",
59
- "d": "yarn run build:es && yarn node --enable-source-maps --trace-warnings",
60
- "t": "yarn run test",
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": "yarn run watch",
63
- "watch": "yarn run watch:ts & yarn run watch:es",
64
- "watch:es": "yarn run build:es --watch",
65
- "watch:ts": "yarn run build:ts --watch --preserveWatchOutput"
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": "af2f09113ac8c6ce53ba697ff9f690955008a132"
70
+ "gitHead": "04de851ade742a7d995918103ab04f28a6787622"
71
71
  }