@alwatr/flux 3.1.0 → 3.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 +21 -0
- package/README.md +5 -5
- 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 +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,27 @@
|
|
|
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.0](https://github.com/Alwatr/flux/compare/v3.1.1...v3.2.0) (2024-10-11)
|
|
7
|
+
|
|
8
|
+
### Dependencies update
|
|
9
|
+
|
|
10
|
+
* bump the alwatr-dependencies group across 1 directory with 7 updates ([daf1c3f](https://github.com/Alwatr/flux/commit/daf1c3f7ef8d17cf7388df2676b5fe808616ba57)) by @dependabot[bot]
|
|
11
|
+
* bump the alwatr-dependencies group with 4 updates ([7ce1b54](https://github.com/Alwatr/flux/commit/7ce1b54235cc2fd4f386052e7a4c4d324cc74888)) by @dependabot[bot]
|
|
12
|
+
* bump the alwatr-dependencies group with 8 updates ([bc520ba](https://github.com/Alwatr/flux/commit/bc520ba6ac7ed6bcff2c4a3eea81d1a2e502b0cf)) by @dependabot[bot]
|
|
13
|
+
* bump the development-dependencies group with 10 updates ([01de77c](https://github.com/Alwatr/flux/commit/01de77cd1d9fdfb6db06ebd5035c43e46cc8aa17)) by @dependabot[bot]
|
|
14
|
+
* update ([4dc21b2](https://github.com/Alwatr/flux/commit/4dc21b2bf01d7176aea6e0d81cdc3e1f77b97e0f)) by @mohammadhonarvar
|
|
15
|
+
|
|
16
|
+
## [3.1.1](https://github.com/Alwatr/flux/compare/v3.1.0...v3.1.1) (2024-09-29)
|
|
17
|
+
|
|
18
|
+
### Miscellaneous Chores
|
|
19
|
+
|
|
20
|
+
* edited README ([fff9b3f](https://github.com/Alwatr/flux/commit/fff9b3f6ccc52e2257bdfe306e032ded07497b4a)) by @ArmanAsadian
|
|
21
|
+
* **flux:** change the license to AGPL-3.0 ([220ef0c](https://github.com/Alwatr/flux/commit/220ef0ccb69310c28caafbc9f33d5b474bd12e3b)) by @ArmanAsadian
|
|
22
|
+
|
|
23
|
+
### Dependencies update
|
|
24
|
+
|
|
25
|
+
* update ([fb148fd](https://github.com/Alwatr/flux/commit/fb148fdbe7f84acc3eda625e5e8c5773747d32e9)) by @
|
|
26
|
+
|
|
6
27
|
## [3.1.0](https://github.com/Alwatr/flux/compare/v3.0.3...v3.1.0) (2024-09-26)
|
|
7
28
|
|
|
8
29
|
### Dependencies update
|
package/README.md
CHANGED
|
@@ -32,14 +32,14 @@ Refer to the individual package READMEs for comprehensive usage instructions and
|
|
|
32
32
|
|
|
33
33
|
## Sponsors
|
|
34
34
|
|
|
35
|
-
The following companies, organizations, and individuals support
|
|
35
|
+
The following companies, organizations, and individuals support flux ongoing maintenance and development. Become a Sponsor to get your logo on our README and website.
|
|
36
36
|
|
|
37
37
|
[](https://exirstudio.com)
|
|
38
38
|
|
|
39
|
-
|
|
39
|
+
### Contributing
|
|
40
40
|
|
|
41
|
-
|
|
41
|
+
Contributions are welcome! Please read our [contribution guidelines](https://github.com/Alwatr/.github/blob/next/CONTRIBUTING.md) before submitting a pull request.
|
|
42
42
|
|
|
43
|
-
|
|
43
|
+
### License
|
|
44
44
|
|
|
45
|
-
|
|
45
|
+
This project is licensed under the [AGPL-3.0 License](LICENSE).
|
package/dist/main.cjs
CHANGED
|
@@ -1,3 +1,37 @@
|
|
|
1
|
-
/* @alwatr/flux v3.
|
|
2
|
-
"use strict";
|
|
1
|
+
/* @alwatr/flux v3.2.0 */
|
|
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.0 */
|
|
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.0",
|
|
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": [
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"require": "./dist/main.cjs"
|
|
22
22
|
}
|
|
23
23
|
},
|
|
24
|
-
"license": "
|
|
24
|
+
"license": "AGPL-3.0-only",
|
|
25
25
|
"files": [
|
|
26
26
|
"**/*.{js,mjs,cjs,map,d.ts,html,md}",
|
|
27
27
|
"!demo/**/*"
|
|
@@ -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.0",
|
|
60
|
+
"@alwatr/fetch-state-machine": "^3.2.0",
|
|
61
|
+
"@alwatr/fsm": "^3.2.0",
|
|
62
|
+
"@alwatr/observable": "^3.2.0",
|
|
63
|
+
"@alwatr/remote-context": "^3.2.0",
|
|
64
|
+
"@alwatr/signal": "^3.2.0"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@alwatr/nano-build": "^
|
|
68
|
-
"@alwatr/prettier-config": "^1.0.
|
|
69
|
-
"@alwatr/tsconfig-base": "^1.2
|
|
70
|
-
"@alwatr/type-helper": "^
|
|
71
|
-
"@types/node": "^22.7.
|
|
67
|
+
"@alwatr/nano-build": "^2.0.1",
|
|
68
|
+
"@alwatr/prettier-config": "^1.0.6",
|
|
69
|
+
"@alwatr/tsconfig-base": "^1.3.2",
|
|
70
|
+
"@alwatr/type-helper": "^2.0.2",
|
|
71
|
+
"@types/node": "^22.7.5",
|
|
72
72
|
"jest": "^29.7.0",
|
|
73
|
-
"typescript": "^5.6.
|
|
73
|
+
"typescript": "^5.6.3"
|
|
74
74
|
},
|
|
75
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "52e38b665b848a23e74024340208ae4a4d98cbb8"
|
|
76
76
|
}
|