@alwatr/flux 3.1.0 → 3.1.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 CHANGED
@@ -3,6 +3,17 @@
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.1.1](https://github.com/Alwatr/flux/compare/v3.1.0...v3.1.1) (2024-09-29)
7
+
8
+ ### Miscellaneous Chores
9
+
10
+ * edited README ([fff9b3f](https://github.com/Alwatr/flux/commit/fff9b3f6ccc52e2257bdfe306e032ded07497b4a)) by @ArmanAsadian
11
+ * **flux:** change the license to AGPL-3.0 ([220ef0c](https://github.com/Alwatr/flux/commit/220ef0ccb69310c28caafbc9f33d5b474bd12e3b)) by @ArmanAsadian
12
+
13
+ ### Dependencies update
14
+
15
+ * update ([fb148fd](https://github.com/Alwatr/flux/commit/fb148fdbe7f84acc3eda625e5e8c5773747d32e9)) by @
16
+
6
17
  ## [3.1.0](https://github.com/Alwatr/flux/compare/v3.0.3...v3.1.0) (2024-09-26)
7
18
 
8
19
  ### 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 Nitrobase ongoing maintenance and development. Become a Sponsor to get your logo on our README and website.
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
  [![Exir Studio](https://avatars.githubusercontent.com/u/181194967?s=200&v=4)](https://exirstudio.com)
38
38
 
39
- ## License
39
+ ### Contributing
40
40
 
41
- This project is licensed under the AGPL-3.0 License.
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
- ## Contributing
43
+ ### License
44
44
 
45
- Contributions are welcome! Please feel free to submit issues and pull requests.
45
+ This project is licensed under the [AGPL-3.0 License](LICENSE).
package/dist/main.cjs CHANGED
@@ -1,3 +1,3 @@
1
- /* @alwatr/flux v3.1.0 */
1
+ /* @alwatr/flux v3.1.1 */
2
2
  "use strict";var a=Object.defineProperty;var b=Object.getOwnPropertyDescriptor;var c=Object.getOwnPropertyNames;var d=Object.prototype.hasOwnProperty;var t=(f,e,p,x)=>{if(e&&typeof e=="object"||typeof e=="function")for(let m of c(e))!d.call(f,m)&&m!==p&&a(f,m,{get:()=>e[m],enumerable:!(x=b(e,m))||x.enumerable});return f},r=(f,e,p)=>(t(f,e,"default"),p&&t(p,e,"default"));var g=f=>t(a({},"__esModule",{value:!0}),f);var o={};module.exports=g(o);r(o,require("@alwatr/context"),module.exports);r(o,require("@alwatr/fetch-state-machine"),module.exports);r(o,require("@alwatr/fsm"),module.exports);r(o,require("@alwatr/observable"),module.exports);r(o,require("@alwatr/remote-context"),module.exports);r(o,require("@alwatr/signal"),module.exports);0&&(module.exports={...require("@alwatr/context"),...require("@alwatr/fetch-state-machine"),...require("@alwatr/fsm"),...require("@alwatr/observable"),...require("@alwatr/remote-context"),...require("@alwatr/signal")});
3
3
  //# sourceMappingURL=main.cjs.map
package/dist/main.mjs CHANGED
@@ -1,3 +1,3 @@
1
- /* @alwatr/flux v3.1.0 */
1
+ /* @alwatr/flux v3.1.1 */
2
2
  export*from"@alwatr/context";export*from"@alwatr/fetch-state-machine";export*from"@alwatr/fsm";export*from"@alwatr/observable";export*from"@alwatr/remote-context";export*from"@alwatr/signal";
3
3
  //# sourceMappingURL=main.mjs.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwatr/flux",
3
- "version": "3.1.0",
3
+ "version": "3.1.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": [
@@ -21,7 +21,7 @@
21
21
  "require": "./dist/main.cjs"
22
22
  }
23
23
  },
24
- "license": "MIT",
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.1.0",
60
- "@alwatr/fetch-state-machine": "^3.1.0",
61
- "@alwatr/fsm": "^3.1.0",
62
- "@alwatr/observable": "^3.1.0",
63
- "@alwatr/remote-context": "^3.1.0",
64
- "@alwatr/signal": "^3.1.0"
59
+ "@alwatr/context": "^3.1.1",
60
+ "@alwatr/fetch-state-machine": "^3.1.1",
61
+ "@alwatr/fsm": "^3.1.1",
62
+ "@alwatr/observable": "^3.1.1",
63
+ "@alwatr/remote-context": "^3.1.1",
64
+ "@alwatr/signal": "^3.1.1"
65
65
  },
66
66
  "devDependencies": {
67
67
  "@alwatr/nano-build": "^1.3.10",
68
68
  "@alwatr/prettier-config": "^1.0.4",
69
69
  "@alwatr/tsconfig-base": "^1.2.0",
70
70
  "@alwatr/type-helper": "^1.2.6",
71
- "@types/node": "^22.7.2",
71
+ "@types/node": "^22.7.4",
72
72
  "jest": "^29.7.0",
73
73
  "typescript": "^5.6.2"
74
74
  },
75
- "gitHead": "d223e9f3b62f70201562f71ff5885f181a7dbc4f"
75
+ "gitHead": "e0a53586929eaaf25cdde4a0845650b8c7012ab7"
76
76
  }