@serwist/build 9.0.0-preview.15 → 9.0.0-preview.16

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serwist/build",
3
- "version": "9.0.0-preview.15",
3
+ "version": "9.0.0-preview.16",
4
4
  "type": "module",
5
5
  "description": "A module that integrates into your build process, helping you generate a manifest of local files that should be precached.",
6
6
  "files": [
@@ -54,7 +54,7 @@
54
54
  "source-map": "0.8.0-beta.0",
55
55
  "upath": "2.0.1",
56
56
  "zod": "3.22.4",
57
- "@serwist/core": "9.0.0-preview.15"
57
+ "@serwist/core": "9.0.0-preview.16"
58
58
  },
59
59
  "devDependencies": {
60
60
  "@types/common-tags": "1.8.4",
@@ -63,8 +63,8 @@
63
63
  "@types/stringify-object": "4.0.5",
64
64
  "type-fest": "4.13.1",
65
65
  "typescript": "5.5.0-dev.20240323",
66
- "@serwist/constants": "9.0.0-preview.15",
67
- "@serwist/utils": "9.0.0-preview.15"
66
+ "@serwist/constants": "9.0.0-preview.16",
67
+ "@serwist/utils": "9.0.0-preview.16"
68
68
  },
69
69
  "peerDependencies": {
70
70
  "typescript": ">=5.0.0"
@@ -145,7 +145,7 @@ export async function transformManifest({
145
145
  let size = 0;
146
146
  for (const manifestEntry of transformedManifest as (ManifestEntry & { size?: number })[]) {
147
147
  size += manifestEntry.size || 0;
148
- // biome-ignore lint/performance/noDelete: I don't understand this part yet.
148
+ // biome-ignore lint/performance/noDelete: These values are no longer necessary.
149
149
  delete manifestEntry.size;
150
150
  }
151
151