@alwatr/fsm 3.2.0 → 3.2.2

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,21 @@
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
+ ## [3.2.2](https://github.com/Alwatr/flux/compare/v3.2.1...v3.2.2) (2024-11-02)
7
+
8
+ ### Dependencies update
9
+
10
+ * **deps-dev:** bump @types/node from 22.8.1 to 22.8.6 in the dependencies group ([#224](https://github.com/Alwatr/flux/issues/224)) ([2ffa758](https://github.com/Alwatr/flux/commit/2ffa7587f46b55bddc98be25c60940c3eb61f815)) by @dependabot[bot]
11
+ * **deps:** bump the alwatr group with 6 updates ([#225](https://github.com/Alwatr/flux/issues/225)) ([6f22eda](https://github.com/Alwatr/flux/commit/6f22eda4e9ee6c31e4c32b23b870a5c148a818da)) by @dependabot[bot]
12
+
13
+ ## [3.2.1](https://github.com/Alwatr/flux/compare/v3.2.0...v3.2.1) (2024-10-28)
14
+
15
+ ### Dependencies update
16
+
17
+ * bump the alwatr-dependencies group with 2 updates ([#217](https://github.com/Alwatr/flux/issues/217)) ([a5fd542](https://github.com/Alwatr/flux/commit/a5fd542e8866589a4edcaaf4312bdc4f322dc59f)) by @dependabot[bot]
18
+ * bump the development-dependencies group across 1 directory with 9 updates ([9d1d05d](https://github.com/Alwatr/flux/commit/9d1d05d33e259fd810138a37b36adc910b71c4bb)) by @dependabot[bot]
19
+ * update nanolib v1.4.0 with other deps ([8c0fdcd](https://github.com/Alwatr/flux/commit/8c0fdcd4a827790f7c97bfbf7119ba315450f822)) by @AliMD
20
+
6
21
  ## [3.2.0](https://github.com/Alwatr/flux/compare/v3.1.1...v3.2.0) (2024-10-11)
7
22
 
8
23
  ### Bug Fixes
package/dist/main.cjs CHANGED
@@ -1,4 +1,4 @@
1
- /* @alwatr/fsm v3.2.0 */
1
+ /* @alwatr/fsm v3.2.2 */
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", "3.2.0");
32
+ __dev_mode__: import_nanolib.packageTracer.add("@alwatr/fsm", "3.2.2");
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 v3.2.0 */
1
+ /* @alwatr/fsm v3.2.2 */
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", "3.2.0");
6
+ __dev_mode__: packageTracer.add("@alwatr/fsm", "3.2.2");
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": "3.2.0",
3
+ "version": "3.2.2",
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": "^1.2.0",
62
- "@alwatr/observable": "^3.2.0"
61
+ "@alwatr/nanolib": "^5.0.0",
62
+ "@alwatr/observable": "^3.2.2"
63
63
  },
64
64
  "devDependencies": {
65
- "@alwatr/nano-build": "^2.0.1",
66
- "@alwatr/prettier-config": "^1.0.6",
67
- "@alwatr/tsconfig-base": "^1.3.2",
68
- "@alwatr/type-helper": "^2.0.2",
69
- "@types/node": "^22.7.5",
65
+ "@alwatr/nano-build": "^5.0.0",
66
+ "@alwatr/prettier-config": "^5.0.0",
67
+ "@alwatr/tsconfig-base": "^5.0.0",
68
+ "@alwatr/type-helper": "^5.0.0",
69
+ "@types/node": "^22.8.6",
70
70
  "jest": "^29.7.0",
71
71
  "typescript": "^5.6.3"
72
72
  },
73
- "gitHead": "52e38b665b848a23e74024340208ae4a4d98cbb8"
73
+ "gitHead": "4952c4c6c9758dfcd30e9bc584aec25f10169219"
74
74
  }