@roots/bud-cache 2023.12.11-7 → 2023.12.13-7

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/README.md CHANGED
@@ -76,6 +76,9 @@ However, the amount of effort needed to maintain and develop new features and pr
76
76
  <a href="https://worksitesafety.ca/careers/">
77
77
  <img src="https://cdn.roots.io/app/uploads/worksite-safety.svg" alt="Worksite Safety" width="200" height="150"/>
78
78
  </a>
79
+ <a href="https://www.copiadigital.com/">
80
+ <img src="https://cdn.roots.io/app/uploads/copia-digital.svg" alt="Copia Digital" width="200" height="150"/>
81
+ </a>
79
82
  <a href="https://www.freave.com/">
80
83
  <img src="https://cdn.roots.io/app/uploads/freave.svg" alt="Freave" width="200" height="150"/>
81
84
  </a>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@roots/bud-cache",
3
- "version": "2023.12.11-7",
3
+ "version": "2023.12.13-7",
4
4
  "description": "Config caching",
5
5
  "engines": {
6
6
  "node": ">=16"
@@ -72,8 +72,8 @@
72
72
  "@skypack/package-check": "0.2.2"
73
73
  },
74
74
  "dependencies": {
75
- "@roots/bud-framework": "2023.12.11-7",
76
- "@roots/bud-support": "2023.12.11-7",
75
+ "@roots/bud-framework": "2023.12.13-7",
76
+ "@roots/bud-support": "2023.12.13-7",
77
77
  "strip-ansi": "7.1.0",
78
78
  "tslib": "2.6.2"
79
79
  },
package/src/service.ts CHANGED
@@ -44,14 +44,12 @@ export default class Cache extends Service implements BudCache {
44
44
  *{@link BudCache.buildDependencies}
45
45
  */
46
46
  public get buildDependencies(): FileCacheOptions[`buildDependencies`] {
47
- const projectDependencies = new Set(
48
- [
49
- this.app.context.files[`package`]?.path,
50
- ...Object.values(this.app.context.files)
51
- .filter(isBuildDependency)
52
- .map(({path}) => path),
53
- ],
54
- )
47
+ const projectDependencies = new Set([
48
+ this.app.context.files[`package`]?.path,
49
+ ...Object.values(this.app.context.files)
50
+ .filter(isBuildDependency)
51
+ .map(({path}) => path),
52
+ ])
55
53
  const records = {
56
54
  project: [...projectDependencies].filter(Boolean),
57
55
  }