@roots/bud-cache 2023.6.15-2014 → 2023.6.23-427
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/lib/service/index.d.ts +2 -2
- package/package.json +3 -3
- package/src/service/index.ts +2 -5
package/lib/service/index.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { Bud } from '@roots/bud-framework';
|
|
2
2
|
import type { Configuration } from '@roots/bud-framework/config';
|
|
3
|
-
import type
|
|
3
|
+
import type { Cache as BudCache } from '@roots/bud-framework/services';
|
|
4
4
|
import { Service } from '@roots/bud-framework/service';
|
|
5
5
|
/**
|
|
6
6
|
* Cache service class
|
|
7
7
|
*/
|
|
8
|
-
export default class Cache extends Service implements
|
|
8
|
+
export default class Cache extends Service implements BudCache {
|
|
9
9
|
/**
|
|
10
10
|
* Enabled
|
|
11
11
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@roots/bud-cache",
|
|
3
|
-
"version": "2023.6.
|
|
3
|
+
"version": "2023.6.23-427",
|
|
4
4
|
"description": "Config caching",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=16"
|
|
@@ -85,8 +85,8 @@
|
|
|
85
85
|
"@skypack/package-check": "0.2.2"
|
|
86
86
|
},
|
|
87
87
|
"dependencies": {
|
|
88
|
-
"@roots/bud-framework": "2023.6.
|
|
89
|
-
"@roots/bud-support": "2023.6.
|
|
88
|
+
"@roots/bud-framework": "2023.6.23-427",
|
|
89
|
+
"@roots/bud-support": "2023.6.23-427",
|
|
90
90
|
"strip-ansi": "7.1.0",
|
|
91
91
|
"tslib": "2.5.3"
|
|
92
92
|
},
|
package/src/service/index.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type {Bud} from '@roots/bud-framework'
|
|
2
2
|
import type {Configuration} from '@roots/bud-framework/config'
|
|
3
|
-
import type
|
|
3
|
+
import type {Cache as BudCache} from '@roots/bud-framework/services'
|
|
4
4
|
|
|
5
5
|
import {Service} from '@roots/bud-framework/service'
|
|
6
6
|
import {bind} from '@roots/bud-support/decorators/bind'
|
|
@@ -14,10 +14,7 @@ import InvalidateCacheExtension from '../invalidate-cache/index.js'
|
|
|
14
14
|
/**
|
|
15
15
|
* Cache service class
|
|
16
16
|
*/
|
|
17
|
-
export default class Cache
|
|
18
|
-
extends Service
|
|
19
|
-
implements Services.Cache.Service
|
|
20
|
-
{
|
|
17
|
+
export default class Cache extends Service implements BudCache {
|
|
21
18
|
/**
|
|
22
19
|
* Enabled
|
|
23
20
|
*/
|