@mmstack/resource 19.0.0 → 19.0.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 +1 -1
  2. package/package.json +10 -10
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # @mmstack/resource
2
2
 
3
3
  [![npm version](https://badge.fury.io/js/%40mmstack%2Fresource.svg)](https://www.npmjs.com/package/@mmstack/resource)
4
- [![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
4
+ [![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/mihajm/mmstack/blob/master/packages/resource/LICENSE)
5
5
 
6
6
  `@mmstack/resource` is an Angular library that provides powerful, signal-based primitives for managing asynchronous data fetching and mutations. It builds upon Angular's `httpResource` and offers features like caching, retries, refresh intervals, circuit breakers, and request deduplication, all while maintaining a fine-grained reactive graph. It's inspired by libraries like TanStack Query, but aims for a more Angular-idiomatic and signal-centric approach.
7
7
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mmstack/resource",
3
- "version": "19.0.0",
3
+ "version": "19.0.2",
4
4
  "keywords": [
5
5
  "angular",
6
6
  "signals",
@@ -12,7 +12,7 @@
12
12
  ],
13
13
  "repository": {
14
14
  "type": "git",
15
- "url": "git+https://github.com/mihajm/mmstack.git"
15
+ "url": "https://github.com/mihajm/mmstack"
16
16
  },
17
17
  "homepage": "https://github.com/mihajm/mmstack/blob/master/packages/resource",
18
18
  "license": "MIT",
@@ -20,12 +20,9 @@
20
20
  "@angular/common": "~19.2.3",
21
21
  "@angular/core": "~19.2.3",
22
22
  "rxjs": "~7.8.2",
23
- "uuid": "~11.1.0"
24
- },
25
- "dependencies": {
26
- "@mmstack/primitives": "*",
27
- "@mmstack/object": "*",
28
- "tslib": "^2.3.0"
23
+ "uuid": "~11.1.0",
24
+ "@mmstack/primitives": "19.0.0",
25
+ "@mmstack/object": "19.0.0"
29
26
  },
30
27
  "exports": {
31
28
  ".": {
@@ -38,5 +35,8 @@
38
35
  },
39
36
  "sideEffects": false,
40
37
  "module": "fesm2022/mmstack-resource.mjs",
41
- "typings": "index.d.ts"
42
- }
38
+ "typings": "index.d.ts",
39
+ "dependencies": {
40
+ "tslib": "^2.3.0"
41
+ }
42
+ }