@travetto/cache 3.0.0-rc.23 → 3.0.0-rc.25

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 +8 -0
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -6,6 +6,10 @@
6
6
  **Install: @travetto/cache**
7
7
  ```bash
8
8
  npm install @travetto/cache
9
+
10
+ # or
11
+
12
+ yarn add @travetto/cache
9
13
  ```
10
14
 
11
15
  Provides a foundational structure for integrating caching at the method level. This allows for easy extension with a variety of providers, and is usable with or without [Dependency Injection](https://github.com/travetto/travetto/tree/main/module/di#readme "Dependency registration/management and injection support."). The code aims to handle use cases surrounding common/basic usage.
@@ -15,6 +19,10 @@ The cache module requires an [Expiry](https://github.com/travetto/travetto/tree/
15
19
  **Install: provider**
16
20
  ```bash
17
21
  npm install @travetto/model-{provider}
22
+
23
+ # or
24
+
25
+ yarn add @travetto/model-{provider}
18
26
  ```
19
27
 
20
28
  Currently, the following are packages that provide [Expiry](https://github.com/travetto/travetto/tree/main/module/model/src/service/expiry.ts#L11):
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/cache",
3
- "version": "3.0.0-rc.23",
3
+ "version": "3.0.0-rc.25",
4
4
  "description": "Caching functionality with decorators for declarative use.",
5
5
  "keywords": [
6
6
  "typescript",
@@ -25,12 +25,12 @@
25
25
  "directory": "module/cache"
26
26
  },
27
27
  "dependencies": {
28
- "@travetto/di": "^3.0.0-rc.22",
29
- "@travetto/model": "^3.0.0-rc.23"
28
+ "@travetto/di": "^3.0.0-rc.24",
29
+ "@travetto/model": "^3.0.0-rc.25"
30
30
  },
31
31
  "peerDependencies": {
32
- "@travetto/test": "^3.0.0-rc.25",
33
- "@travetto/transformer": "^3.0.0-rc.21"
32
+ "@travetto/test": "^3.0.0-rc.27",
33
+ "@travetto/transformer": "^3.0.0-rc.22"
34
34
  },
35
35
  "peerDependenciesMeta": {
36
36
  "@travetto/transformer": {