@alwatr/flux 3.1.1 → 3.2.1
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 +18 -0
- package/dist/main.cjs +36 -2
- package/dist/main.cjs.map +2 -2
- package/dist/main.mjs +10 -2
- package/dist/main.mjs.map +1 -1
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,24 @@
|
|
|
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.1](https://github.com/Alwatr/flux/compare/v3.2.0...v3.2.1) (2024-10-28)
|
|
7
|
+
|
|
8
|
+
### Dependencies update
|
|
9
|
+
|
|
10
|
+
* 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]
|
|
11
|
+
* bump the development-dependencies group across 1 directory with 9 updates ([9d1d05d](https://github.com/Alwatr/flux/commit/9d1d05d33e259fd810138a37b36adc910b71c4bb)) by @dependabot[bot]
|
|
12
|
+
* update nanolib v1.4.0 with other deps ([8c0fdcd](https://github.com/Alwatr/flux/commit/8c0fdcd4a827790f7c97bfbf7119ba315450f822)) by @AliMD
|
|
13
|
+
|
|
14
|
+
## [3.2.0](https://github.com/Alwatr/flux/compare/v3.1.1...v3.2.0) (2024-10-11)
|
|
15
|
+
|
|
16
|
+
### Dependencies update
|
|
17
|
+
|
|
18
|
+
* bump the alwatr-dependencies group across 1 directory with 7 updates ([daf1c3f](https://github.com/Alwatr/flux/commit/daf1c3f7ef8d17cf7388df2676b5fe808616ba57)) by @dependabot[bot]
|
|
19
|
+
* bump the alwatr-dependencies group with 4 updates ([7ce1b54](https://github.com/Alwatr/flux/commit/7ce1b54235cc2fd4f386052e7a4c4d324cc74888)) by @dependabot[bot]
|
|
20
|
+
* bump the alwatr-dependencies group with 8 updates ([bc520ba](https://github.com/Alwatr/flux/commit/bc520ba6ac7ed6bcff2c4a3eea81d1a2e502b0cf)) by @dependabot[bot]
|
|
21
|
+
* bump the development-dependencies group with 10 updates ([01de77c](https://github.com/Alwatr/flux/commit/01de77cd1d9fdfb6db06ebd5035c43e46cc8aa17)) by @dependabot[bot]
|
|
22
|
+
* update ([4dc21b2](https://github.com/Alwatr/flux/commit/4dc21b2bf01d7176aea6e0d81cdc3e1f77b97e0f)) by @mohammadhonarvar
|
|
23
|
+
|
|
6
24
|
## [3.1.1](https://github.com/Alwatr/flux/compare/v3.1.0...v3.1.1) (2024-09-29)
|
|
7
25
|
|
|
8
26
|
### Miscellaneous Chores
|
package/dist/main.cjs
CHANGED
|
@@ -1,3 +1,37 @@
|
|
|
1
|
-
/* @alwatr/flux v3.
|
|
2
|
-
"use strict";
|
|
1
|
+
/* @alwatr/flux v3.2.1 */
|
|
2
|
+
"use strict";
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __copyProps = (to, from, except, desc) => {
|
|
8
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
9
|
+
for (let key of __getOwnPropNames(from))
|
|
10
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
11
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
12
|
+
}
|
|
13
|
+
return to;
|
|
14
|
+
};
|
|
15
|
+
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
16
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
17
|
+
|
|
18
|
+
// src/main.ts
|
|
19
|
+
var main_exports = {};
|
|
20
|
+
module.exports = __toCommonJS(main_exports);
|
|
21
|
+
__reExport(main_exports, require("@alwatr/context"), module.exports);
|
|
22
|
+
__reExport(main_exports, require("@alwatr/fetch-state-machine"), module.exports);
|
|
23
|
+
__reExport(main_exports, require("@alwatr/fsm"), module.exports);
|
|
24
|
+
__reExport(main_exports, require("@alwatr/observable"), module.exports);
|
|
25
|
+
__reExport(main_exports, require("@alwatr/remote-context"), module.exports);
|
|
26
|
+
__reExport(main_exports, require("@alwatr/signal"), module.exports);
|
|
27
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
28
|
+
0 && (module.exports = {
|
|
29
|
+
...require("@alwatr/context"),
|
|
30
|
+
...require("@alwatr/fetch-state-machine"),
|
|
31
|
+
...require("@alwatr/fsm"),
|
|
32
|
+
...require("@alwatr/observable"),
|
|
33
|
+
...require("@alwatr/remote-context"),
|
|
34
|
+
...require("@alwatr/signal")
|
|
35
|
+
});
|
|
36
|
+
/*! For license information please see main.cjs.LEGAL.txt */
|
|
3
37
|
//# sourceMappingURL=main.cjs.map
|
package/dist/main.cjs.map
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../src/main.ts"],
|
|
4
4
|
"sourcesContent": ["export * from '@alwatr/context';\nexport * from '@alwatr/fetch-state-machine';\nexport * from '@alwatr/fsm';\nexport * from '@alwatr/observable';\nexport * from '@alwatr/remote-context';\nexport * from '@alwatr/signal';\n"],
|
|
5
|
-
"mappings": ";
|
|
6
|
-
"names": [
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA,yBAAc,4BAAd;AACA,yBAAc,wCADd;AAEA,yBAAc,wBAFd;AAGA,yBAAc,+BAHd;AAIA,yBAAc,mCAJd;AAKA,yBAAc,2BALd;",
|
|
6
|
+
"names": []
|
|
7
7
|
}
|
package/dist/main.mjs
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
-
/* @alwatr/flux v3.
|
|
2
|
-
|
|
1
|
+
/* @alwatr/flux v3.2.1 */
|
|
2
|
+
|
|
3
|
+
// src/main.ts
|
|
4
|
+
export * from "@alwatr/context";
|
|
5
|
+
export * from "@alwatr/fetch-state-machine";
|
|
6
|
+
export * from "@alwatr/fsm";
|
|
7
|
+
export * from "@alwatr/observable";
|
|
8
|
+
export * from "@alwatr/remote-context";
|
|
9
|
+
export * from "@alwatr/signal";
|
|
10
|
+
/*! For license information please see main.mjs.LEGAL.txt */
|
|
3
11
|
//# sourceMappingURL=main.mjs.map
|
package/dist/main.mjs.map
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../src/main.ts"],
|
|
4
4
|
"sourcesContent": ["export * from '@alwatr/context';\nexport * from '@alwatr/fetch-state-machine';\nexport * from '@alwatr/fsm';\nexport * from '@alwatr/observable';\nexport * from '@alwatr/remote-context';\nexport * from '@alwatr/signal';\n"],
|
|
5
|
-
"mappings": "
|
|
5
|
+
"mappings": ";;;AAAA,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwatr/flux",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.1",
|
|
4
4
|
"description": "Flux empowers your applications with elegant and powerful state management and event handling capabilities. Built on the observable design pattern, Flux provides a lightweight yet robust foundation for managing global signals and states.",
|
|
5
5
|
"author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",
|
|
6
6
|
"keywords": [
|
|
@@ -56,21 +56,21 @@
|
|
|
56
56
|
"clean": "rm -rfv dist *.tsbuildinfo"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@alwatr/context": "^3.
|
|
60
|
-
"@alwatr/fetch-state-machine": "^3.
|
|
61
|
-
"@alwatr/fsm": "^3.
|
|
62
|
-
"@alwatr/observable": "^3.
|
|
63
|
-
"@alwatr/remote-context": "^3.
|
|
64
|
-
"@alwatr/signal": "^3.
|
|
59
|
+
"@alwatr/context": "^3.2.1",
|
|
60
|
+
"@alwatr/fetch-state-machine": "^3.2.1",
|
|
61
|
+
"@alwatr/fsm": "^3.2.1",
|
|
62
|
+
"@alwatr/observable": "^3.2.1",
|
|
63
|
+
"@alwatr/remote-context": "^3.2.1",
|
|
64
|
+
"@alwatr/signal": "^3.2.1"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@alwatr/nano-build": "^
|
|
68
|
-
"@alwatr/prettier-config": "^1.0.
|
|
69
|
-
"@alwatr/tsconfig-base": "^1.
|
|
70
|
-
"@alwatr/type-helper": "^
|
|
71
|
-
"@types/node": "^22.
|
|
67
|
+
"@alwatr/nano-build": "^2.0.3",
|
|
68
|
+
"@alwatr/prettier-config": "^1.0.6",
|
|
69
|
+
"@alwatr/tsconfig-base": "^1.3.3",
|
|
70
|
+
"@alwatr/type-helper": "^2.0.3",
|
|
71
|
+
"@types/node": "^22.8.1",
|
|
72
72
|
"jest": "^29.7.0",
|
|
73
|
-
"typescript": "^5.6.
|
|
73
|
+
"typescript": "^5.6.3"
|
|
74
74
|
},
|
|
75
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "0d441ca3f7529d11090f349ef80209dcc1984a05"
|
|
76
76
|
}
|