@roots/bud-cache 2023.3.14 → 2023.3.15

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/index.d.ts CHANGED
@@ -3,8 +3,6 @@
3
3
  *
4
4
  * @see {@link https://bud.js.org}
5
5
  * @see {@link https://github.com/roots/bud}
6
- *
7
- * @packageDocumentation
8
6
  */
9
7
  import './types.js';
10
8
  import Cache from './service/index.js';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAGA;;;;;;;GAOG;AAEH,OAAO,YAAY,CAAA;AAEnB,OAAO,KAAK,MAAM,oBAAoB,CAAA;AAEtC,eAAe,KAAK,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAGA;;;;;GAKG;AAEH,OAAO,YAAY,CAAA;AAEnB,OAAO,KAAK,MAAM,oBAAoB,CAAA;AAEtC,eAAe,KAAK,CAAA"}
package/lib/index.js CHANGED
@@ -5,8 +5,6 @@
5
5
  *
6
6
  * @see {@link https://bud.js.org}
7
7
  * @see {@link https://github.com/roots/bud}
8
- *
9
- * @packageDocumentation
10
8
  */
11
9
  import './types.js';
12
10
  import Cache from './service/index.js';
package/lib/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,4CAA4C;AAC5C,kCAAkC;AAElC;;;;;;;GAOG;AAEH,OAAO,YAAY,CAAA;AAEnB,OAAO,KAAK,MAAM,oBAAoB,CAAA;AAEtC,eAAe,KAAK,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,4CAA4C;AAC5C,kCAAkC;AAElC;;;;;GAKG;AAEH,OAAO,YAAY,CAAA;AAEnB,OAAO,KAAK,MAAM,oBAAoB,CAAA;AAEtC,eAAe,KAAK,CAAA"}
@@ -15,7 +15,7 @@ export default class InvalidateCacheExtension extends Extension {
15
15
  */
16
16
  get invalidationFile(): string;
17
17
  /**
18
- * `register` callback
18
+ * {@link Extension.register}
19
19
  */
20
20
  register(bud: Bud): Promise<void>;
21
21
  }
@@ -20,7 +20,7 @@ let InvalidateCacheExtension = class InvalidateCacheExtension extends Extension
20
20
  return join(this.app.cache.cacheDirectory, `error.json`);
21
21
  }
22
22
  /**
23
- * `register` callback
23
+ * {@link Extension.register}
24
24
  */
25
25
  async register(bud) {
26
26
  const invalidate = await bud.fs?.exists(this.invalidationFile);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@roots/bud-cache",
3
3
  "description": "Config caching",
4
- "version": "2023.3.14",
4
+ "version": "2023.3.15",
5
5
  "homepage": "https://roots.io/bud",
6
6
  "repository": {
7
7
  "type": "git",
@@ -82,8 +82,8 @@
82
82
  "@skypack/package-check": "0.2.2"
83
83
  },
84
84
  "dependencies": {
85
- "@roots/bud-framework": "2023.3.14",
86
- "@roots/bud-support": "2023.3.14",
85
+ "@roots/bud-framework": "2023.3.15",
86
+ "@roots/bud-support": "2023.3.15",
87
87
  "strip-ansi": "7.0.1"
88
88
  },
89
89
  "volta": {
package/src/index.ts CHANGED
@@ -6,8 +6,6 @@
6
6
  *
7
7
  * @see {@link https://bud.js.org}
8
8
  * @see {@link https://github.com/roots/bud}
9
- *
10
- * @packageDocumentation
11
9
  */
12
10
 
13
11
  import './types.js'
@@ -24,7 +24,7 @@ export default class InvalidateCacheExtension extends Extension {
24
24
  }
25
25
 
26
26
  /**
27
- * `register` callback
27
+ * {@link Extension.register}
28
28
  */
29
29
  @bind
30
30
  public override async register(bud: Bud) {