fluxie 1.2.1 → 1.3.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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.3.0](https://github.com/LesFabricants/Fluxie/compare/v1.2.1...v1.3.0) (2024-06-04)
4
+
5
+
6
+ ### Features
7
+
8
+ * **pkg:** update required angular version ([2a0d2f7](https://github.com/LesFabricants/Fluxie/commit/2a0d2f78f97f92ec4ece41da95cfbe7c9159cd1f))
9
+
3
10
  ## [1.2.1](https://github.com/LesFabricants/Fluxie/compare/v1.2.0...v1.2.1) (2024-06-04)
4
11
 
5
12
 
package/README.md CHANGED
@@ -5,6 +5,14 @@ Super small helper class meant to greatly simplify the creation of a flux archit
5
5
  **Warning**
6
6
  **Requires 2Kb of available space, make sure you have the space before installing !**
7
7
 
8
+ ## Installation
9
+
10
+ The latest version supports signals, and thus requires a version of angular 16 minimum, other versions can use the lts release that removes signals support
11
+
12
+ `npm i fluxie` Angular 16+
13
+
14
+ `npm i fluxie@lts` Other Angular Versions
15
+
8
16
  ## Syntax
9
17
 
10
18
  > The `store.ts` files is a base class that can be extended by services to add the necessary methods and properties required to handle a centralized state
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "fluxie",
3
3
  "description": "Small helper class to easily implement Flux architecture using angular service, complete with redux devtool and caching support",
4
4
  "authors": "Anthony Lenglet",
5
- "version": "1.2.1",
5
+ "version": "1.3.0",
6
6
  "type": "module",
7
7
  "main": "dist/index.js",
8
8
  "author": {
@@ -13,7 +13,7 @@
13
13
  "homepage": "https://github.com/LesFabricants/Fluxie",
14
14
  "repository": {
15
15
  "type": "git",
16
- "url": "https://github.com/LesFabricants/Fluxie"
16
+ "url": "git+https://github.com/LesFabricants/Fluxie.git"
17
17
  },
18
18
  "keywords": [
19
19
  "angular",
@@ -26,7 +26,7 @@
26
26
  "build": "node esbuild.config.js && ./node_modules/.bin/tsc -p tsconfig.json"
27
27
  },
28
28
  "peerDependencies": {
29
- "@angular/core": ">=17.0.0",
29
+ "@angular/core": ">=16.0.0",
30
30
  "rxjs": ">=5.0.0"
31
31
  },
32
32
  "devDependencies": {