@alwatr/fsm 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/fsm",
3
3
  "description": "A tiny, type-safe, declarative, and reactive finite state machine (FSM) library for modern TypeScript applications, built on top of Alwatr Signals.",
4
- "version": "6.1.1",
4
+ "version": "6.2.0",
5
5
  "author": "S. Ali Mihandoost <ali.mihandoost@gmail.com> (https://ali.mihandoost.com)",
6
6
  "bugs": "https://github.com/Alwatr/flux/issues",
7
7
  "dependencies": {
8
- "@alwatr/logger": "^6.0.10",
9
- "@alwatr/signal": "6.1.1"
8
+ "@alwatr/logger": "^6.0.17",
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"
@@ -51,23 +51,23 @@
51
51
  "directory": "packages/fsm"
52
52
  },
53
53
  "scripts": {
54
- "b": "yarn run build",
55
- "build": "yarn run build:ts & yarn run build:es",
54
+ "b": "bun run build",
55
+ "build": "bun run build:ts & bun run build:es",
56
56
  "build:es": "nano-build --preset=module",
57
57
  "build:ts": "tsc --build",
58
- "c": "yarn run clean",
59
- "cb": "yarn run clean && yarn run build",
58
+ "c": "bun run clean",
59
+ "cb": "bun run clean && bun run build",
60
60
  "clean": "rm -rfv dist *.tsbuildinfo",
61
- "d": "yarn run build:es && yarn node --enable-source-maps --trace-warnings",
62
- "t": "yarn run test",
61
+ "d": "bun run build:es && bun run --enable-source-maps --trace-warnings",
62
+ "t": "bun run test",
63
63
  "test": "NODE_OPTIONS=\"$NODE_OPTIONS --enable-source-maps --experimental-vm-modules\" jest",
64
- "w": "yarn run watch",
65
- "watch": "yarn run watch:ts & yarn run watch:es",
66
- "watch:es": "yarn run build:es --watch",
67
- "watch:ts": "yarn run build:ts --watch --preserveWatchOutput"
64
+ "w": "bun run watch",
65
+ "watch": "bun run watch:ts & bun run watch:es",
66
+ "watch:es": "bun run build:es --watch",
67
+ "watch:ts": "bun run build:ts --watch --preserveWatchOutput"
68
68
  },
69
69
  "sideEffects": false,
70
70
  "type": "module",
71
71
  "types": "./dist/main.d.ts",
72
- "gitHead": "af2f09113ac8c6ce53ba697ff9f690955008a132"
72
+ "gitHead": "04de851ade742a7d995918103ab04f28a6787622"
73
73
  }