@fireflysemantics/slice 15.2.1 → 15.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.
Files changed (2) hide show
  1. package/README.md +15 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,16 +4,28 @@
4
4
 
5
5
  # @fireflysemantics/slice
6
6
 
7
- Lightweight Javascript Reactive State Management for Web Applications.
7
+ Lightweight Javascript Reactive State Management for Angular Applications.
8
8
 
9
9
  If you like the [@fireflysemantics/slice API](https://fireflysemantics.github.io/slice/doc/) please star our [Github Repository](https://github.com/fireflysemantics/slice).
10
10
 
11
11
  # Install
12
12
 
13
- Install Slice with peer dependencies:
13
+
14
+ Install Slice with the `nanoid` peer dependency:
15
+
16
+ - `v17.0.x` for Angular 17
17
+ - `v16.2.x` for Angular 16
18
+ - `v15.2.x` for Angular 15
19
+
20
+ So for example for an Angular 15 project run.
21
+
22
+ ```
23
+ npm i @fireflysemantics/slice@15.2.x nanoid
24
+ ```
25
+ For Angular 17 run.
14
26
 
15
27
  ```
16
- npm i @fireflysemantics/slice tslib rxjs nanoid
28
+ npm i @fireflysemantics/slice@lastest nanoid
17
29
  ```
18
30
 
19
31
  # Firefly Semantics Slice Development Center Media and Documentation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fireflysemantics/slice",
3
- "version": "15.2.1",
3
+ "version": "15.2.2",
4
4
  "dependencies": {
5
5
  "tslib": "^2.3.0"
6
6
  },