@alwatr/fsm 4.0.4 → 4.0.5

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,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
+ ## [4.0.5](https://github.com/Alwatr/flux/compare/v4.0.4...v4.0.5) (2025-03-13)
7
+
8
+ ### Bug Fixes
9
+
10
+ * bump @alwatr/nanolib to version 5.5.1 across multiple packages for iOS issues ([70d879e](https://github.com/Alwatr/flux/commit/70d879e379a560fbcbe41f7176a638942ee22152)) by @
11
+
12
+ ### Dependencies update
13
+
14
+ * update @types/node to version 22.13.10 and bump [@lerna-lite](https://github.com/lerna-lite) packages to version 3.12.3 ([e918359](https://github.com/Alwatr/flux/commit/e918359ec013c32b3224aebf04f92553be31b395)) by @
15
+
6
16
  ## [4.0.4](https://github.com/Alwatr/flux/compare/v4.0.3...v4.0.4) (2025-03-06)
7
17
 
8
18
  ### Dependencies update
package/dist/main.cjs CHANGED
@@ -1,4 +1,4 @@
1
- /* @alwatr/fsm v4.0.4 */
1
+ /* @alwatr/fsm v4.0.5 */
2
2
  "use strict";
3
3
  var __defProp = Object.defineProperty;
4
4
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
@@ -29,7 +29,7 @@ module.exports = __toCommonJS(main_exports);
29
29
  // src/base.ts
30
30
  var import_nanolib = require("@alwatr/nanolib");
31
31
  var import_observable = require("@alwatr/observable");
32
- __dev_mode__: import_nanolib.packageTracer.add("@alwatr/fsm", "4.0.4");
32
+ __dev_mode__: import_nanolib.packageTracer.add("@alwatr/fsm", "4.0.5");
33
33
  var AlwatrFluxStateMachineBase = class extends import_observable.AlwatrObservable {
34
34
  constructor(config) {
35
35
  config.loggerPrefix ?? (config.loggerPrefix = "flux-state-machine");
package/dist/main.mjs CHANGED
@@ -1,9 +1,9 @@
1
- /* @alwatr/fsm v4.0.4 */
1
+ /* @alwatr/fsm v4.0.5 */
2
2
 
3
3
  // src/base.ts
4
4
  import { packageTracer } from "@alwatr/nanolib";
5
5
  import { AlwatrObservable } from "@alwatr/observable";
6
- __dev_mode__: packageTracer.add("@alwatr/fsm", "4.0.4");
6
+ __dev_mode__: packageTracer.add("@alwatr/fsm", "4.0.5");
7
7
  var AlwatrFluxStateMachineBase = class extends AlwatrObservable {
8
8
  constructor(config) {
9
9
  config.loggerPrefix ?? (config.loggerPrefix = "flux-state-machine");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwatr/fsm",
3
- "version": "4.0.4",
3
+ "version": "4.0.5",
4
4
  "description": "A robust TypeScript library for implementing Flux (Finite) State Machines, enabling clear and organized management of application state and transitions.",
5
5
  "author": "S. Ali Mihandoost <ali.mihandoost@gmail.com> (https://ali.mihandoost.com)",
6
6
  "keywords": [
@@ -58,17 +58,17 @@
58
58
  "clean": "rm -rfv dist *.tsbuildinfo"
59
59
  },
60
60
  "dependencies": {
61
- "@alwatr/nanolib": "^5.5.0",
62
- "@alwatr/observable": "^4.0.4"
61
+ "@alwatr/nanolib": "^5.5.1",
62
+ "@alwatr/observable": "^4.0.5"
63
63
  },
64
64
  "devDependencies": {
65
65
  "@alwatr/nano-build": "^5.5.0",
66
66
  "@alwatr/prettier-config": "^5.0.0",
67
67
  "@alwatr/tsconfig-base": "^5.0.0",
68
68
  "@alwatr/type-helper": "^5.4.0",
69
- "@types/node": "^22.13.9",
69
+ "@types/node": "^22.13.10",
70
70
  "jest": "^29.7.0",
71
71
  "typescript": "^5.8.2"
72
72
  },
73
- "gitHead": "d6f693f97c837142a92a8b83dc0a9a608c2af01e"
73
+ "gitHead": "5cb1db2aa97cdb1f2b093ade62bccaca691a5d46"
74
74
  }