@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 +4 -2
- package/dist/cli.cjs.map +1 -1
- package/node_modules/@dropthis/node/README.md +85 -0
- package/node_modules/@dropthis/node/dist/edge.cjs +82 -3
- package/node_modules/@dropthis/node/dist/edge.cjs.map +1 -1
- package/node_modules/@dropthis/node/dist/edge.d.cts +7 -1
- package/node_modules/@dropthis/node/dist/edge.d.ts +7 -1
- package/node_modules/@dropthis/node/dist/edge.mjs +82 -3
- package/node_modules/@dropthis/node/dist/edge.mjs.map +1 -1
- package/node_modules/@dropthis/node/dist/index.cjs +5 -3
- package/node_modules/@dropthis/node/dist/index.cjs.map +1 -1
- package/node_modules/@dropthis/node/dist/index.d.cts +3 -39
- package/node_modules/@dropthis/node/dist/index.d.ts +3 -39
- package/node_modules/@dropthis/node/dist/index.mjs +5 -3
- package/node_modules/@dropthis/node/dist/index.mjs.map +1 -1
- package/node_modules/@dropthis/node/dist/{workspaces-CebiV4DS.d.cts → workspaces-Cq705UM6.d.cts} +64 -1
- package/node_modules/@dropthis/node/dist/{workspaces-CebiV4DS.d.ts → workspaces-Cq705UM6.d.ts} +64 -1
- package/node_modules/@dropthis/node/package.json +15 -2
- package/package.json +2 -2
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.
|
|
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
|
);
|