@dropthis/cli 0.34.0 → 0.35.0

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/dist/cli.cjs CHANGED
@@ -1136,7 +1136,7 @@ function spreadData(data) {
1136
1136
  }
1137
1137
 
1138
1138
  // src/version.ts
1139
- var CLI_VERSION = true ? "0.34.0" : "0.0.0-dev";
1139
+ var CLI_VERSION = true ? "0.35.0" : "0.0.0-dev";
1140
1140
 
1141
1141
  // src/commands/doctor.ts
1142
1142
  async function onlineChecks(deps, hasCredential) {
@@ -2204,7 +2204,8 @@ async function loadManifestFile(manifestPath) {
2204
2204
  source_url,
2205
2205
  content_type,
2206
2206
  size_bytes,
2207
- checksum_sha256
2207
+ checksum_sha256,
2208
+ transform
2208
2209
  } = entry;
2209
2210
  if (!path || typeof path !== "string") {
2210
2211
  throw new Error(`Manifest files[${i}] must have a 'path' string.`);
@@ -2236,6 +2237,7 @@ async function loadManifestFile(manifestPath) {
2236
2237
  file.sizeBytes = size_bytes;
2237
2238
  if (checksum_sha256 !== void 0)
2238
2239
  file.checksumSha256 = checksum_sha256;
2240
+ if (transform !== void 0) file.transform = transform;
2239
2241
  return file;
2240
2242
  }
2241
2243
  );