@roots/bud-build 2023.4.2 → 2023.4.4

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.
@@ -1 +1 @@
1
- {"version":3,"file":"snapshot.d.ts","sourceRoot":"","sources":["../../src/config/snapshot.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,YAAY,CAAA;AAEvC,eAAO,MAAM,QAAQ,EAAE,OAAO,CAAC,UAAU,CASrC,CAAA"}
1
+ {"version":3,"file":"snapshot.d.ts","sourceRoot":"","sources":["../../src/config/snapshot.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,YAAY,CAAA;AAEvC,eAAO,MAAM,QAAQ,EAAE,OAAO,CAAC,UAAU,CAKrC,CAAA"}
@@ -1,10 +1,6 @@
1
1
  export const snapshot = async (app) => app.hooks.filter(`build.snapshot`, {
2
2
  managedPaths: app.hooks.filter(`build.snapshot.managedPaths`, [
3
- ...new Set([
4
- app.path(`@os-cache`),
5
- app.path(`@storage`),
6
- app.path(`@modules`),
7
- ]),
3
+ ...new Set([app.path(`@modules`)]),
8
4
  ]),
9
5
  });
10
6
  //# sourceMappingURL=snapshot.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"snapshot.js","sourceRoot":"","sources":["../../src/config/snapshot.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,QAAQ,GAAwB,KAAK,EAAC,GAAG,EAAC,EAAE,CACvD,GAAG,CAAC,KAAK,CAAC,MAAM,CAAC,gBAAgB,EAAE;IACjC,YAAY,EAAE,GAAG,CAAC,KAAK,CAAC,MAAM,CAAC,6BAA6B,EAAE;QAC5D,GAAG,IAAI,GAAG,CAAC;YACT,GAAG,CAAC,IAAI,CAAC,WAAW,CAAC;YACrB,GAAG,CAAC,IAAI,CAAC,UAAU,CAAC;YACpB,GAAG,CAAC,IAAI,CAAC,UAAU,CAAC;SACrB,CAAC;KACH,CAAC;CACH,CAAC,CAAA"}
1
+ {"version":3,"file":"snapshot.js","sourceRoot":"","sources":["../../src/config/snapshot.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,QAAQ,GAAwB,KAAK,EAAC,GAAG,EAAC,EAAE,CACvD,GAAG,CAAC,KAAK,CAAC,MAAM,CAAC,gBAAgB,EAAE;IACjC,YAAY,EAAE,GAAG,CAAC,KAAK,CAAC,MAAM,CAAC,6BAA6B,EAAE;QAC5D,GAAG,IAAI,GAAG,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC;KACnC,CAAC;CACH,CAAC,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@roots/bud-build",
3
- "version": "2023.4.2",
3
+ "version": "2023.4.4",
4
4
  "description": "bud.js core module",
5
5
  "engines": {
6
6
  "node": ">=16"
@@ -80,14 +80,14 @@
80
80
  "types": "./lib/index.d.ts",
81
81
  "module": "./lib/index.js",
82
82
  "devDependencies": {
83
- "@roots/bud-api": "2023.4.2",
84
- "@roots/bud-hooks": "2023.4.2",
83
+ "@roots/bud-api": "2023.4.4",
84
+ "@roots/bud-hooks": "2023.4.4",
85
85
  "@skypack/package-check": "0.2.2",
86
86
  "@types/node": "18.15.10"
87
87
  },
88
88
  "dependencies": {
89
- "@roots/bud-framework": "2023.4.2",
90
- "@roots/bud-support": "2023.4.2",
89
+ "@roots/bud-framework": "2023.4.4",
90
+ "@roots/bud-support": "2023.4.4",
91
91
  "tslib": "2.5.0"
92
92
  },
93
93
  "volta": {
@@ -3,10 +3,6 @@ import type {Factory} from './index.js'
3
3
  export const snapshot: Factory<`snapshot`> = async app =>
4
4
  app.hooks.filter(`build.snapshot`, {
5
5
  managedPaths: app.hooks.filter(`build.snapshot.managedPaths`, [
6
- ...new Set([
7
- app.path(`@os-cache`),
8
- app.path(`@storage`),
9
- app.path(`@modules`),
10
- ]),
6
+ ...new Set([app.path(`@modules`)]),
11
7
  ]),
12
8
  })