@alwatr/flux 6.1.0 → 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 CHANGED
@@ -3,6 +3,26 @@
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
+
16
+ ## [6.1.1](https://github.com/Alwatr/flux/compare/v6.1.0...v6.1.1) (2025-11-12)
17
+
18
+ ### 🐛 Bug Fixes
19
+
20
+ * add sideEffects property to package.json for better tree-shaking ([b62663c](https://github.com/Alwatr/flux/commit/b62663ceedac43e9f642c59130a6be0cd4bdc90d))
21
+
22
+ ### 🔗 Dependencies update
23
+
24
+ * update dependencies and devDependencies versions across packages ([ab923fa](https://github.com/Alwatr/flux/commit/ab923fa8ec7f504a3ce59e0ec944d05d361f60be))
25
+
6
26
  ## [6.1.0](https://github.com/Alwatr/flux/compare/v6.0.2...v6.1.0) (2025-09-22)
7
27
 
8
28
  ### 🔗 Dependencies update
package/dist/main.cjs CHANGED
@@ -1,4 +1,4 @@
1
- /** 📦 @alwatr/flux v6.1.0 */
2
- __dev_mode__: console.debug("📦 @alwatr/flux v6.1.0");
1
+ /** 📦 @alwatr/flux v6.1.1 */
2
+ __dev_mode__: console.debug("📦 @alwatr/flux v6.1.1");
3
3
  "use strict";var __defProp=Object.defineProperty;var __getOwnPropDesc=Object.getOwnPropertyDescriptor;var __getOwnPropNames=Object.getOwnPropertyNames;var __hasOwnProp=Object.prototype.hasOwnProperty;var __copyProps=(to,from,except,desc)=>{if(from&&typeof from==="object"||typeof from==="function"){for(let key of __getOwnPropNames(from))if(!__hasOwnProp.call(to,key)&&key!==except)__defProp(to,key,{get:()=>from[key],enumerable:!(desc=__getOwnPropDesc(from,key))||desc.enumerable})}return to};var __reExport=(target,mod,secondTarget)=>(__copyProps(target,mod,"default"),secondTarget&&__copyProps(secondTarget,mod,"default"));var __toCommonJS=mod=>__copyProps(__defProp({},"__esModule",{value:true}),mod);var main_exports={};module.exports=__toCommonJS(main_exports);__reExport(main_exports,require("@alwatr/fsm"),module.exports);__reExport(main_exports,require("@alwatr/signal"),module.exports);0&&(module.exports={...require("@alwatr/fsm"),...require("@alwatr/signal")});
4
4
  //# sourceMappingURL=main.cjs.map
package/dist/main.mjs CHANGED
@@ -1,4 +1,4 @@
1
- /** 📦 @alwatr/flux v6.1.0 */
2
- __dev_mode__: console.debug("📦 @alwatr/flux v6.1.0");
1
+ /** 📦 @alwatr/flux v6.1.1 */
2
+ __dev_mode__: console.debug("📦 @alwatr/flux v6.1.1");
3
3
  export*from"@alwatr/fsm";export*from"@alwatr/signal";
4
4
  //# sourceMappingURL=main.mjs.map
package/package.json CHANGED
@@ -1,21 +1,21 @@
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.0",
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.0",
9
- "@alwatr/signal": "6.1.0"
8
+ "@alwatr/fsm": "6.2.0",
9
+ "@alwatr/signal": "6.2.0"
10
10
  },
11
11
  "devDependencies": {
12
- "@alwatr/nano-build": "^6.3.2",
13
- "@alwatr/prettier-config": "^5.0.4",
14
- "@alwatr/tsconfig-base": "^6.0.2",
15
- "@alwatr/type-helper": "^6.1.2",
16
- "@types/node": "^22.18.6",
17
- "jest": "^30.1.3",
18
- "typescript": "^5.9.2"
12
+ "@alwatr/nano-build": "^6.4.1",
13
+ "@alwatr/prettier-config": "^6.0.2",
14
+ "@alwatr/tsconfig-base": "^6.0.3",
15
+ "@alwatr/type-helper": "^7.0.1",
16
+ "@types/node": "^22.19.1",
17
+ "jest": "^30.2.0",
18
+ "typescript": "^5.9.3"
19
19
  },
20
20
  "exports": {
21
21
  ".": {
@@ -49,22 +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
+ "sideEffects": false,
67
68
  "type": "module",
68
69
  "types": "./dist/main.d.ts",
69
- "gitHead": "612960b22abc85db7da2bdbfc815e685edb69c2f"
70
+ "gitHead": "04de851ade742a7d995918103ab04f28a6787622"
70
71
  }