sanity 5.0.0-next-major.20251210134624 → 5.0.0-next-major.20251215093220
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/lib/_chunks-es/_internal.js +2 -2
- package/lib/_chunks-es/_internal.js.map +1 -1
- package/lib/_chunks-es/exportAssetsAction.js.map +1 -1
- package/lib/_chunks-es/package.js +1 -1
- package/lib/_chunks-es/pane.js +45 -33
- package/lib/_chunks-es/pane.js.map +1 -1
- package/lib/_chunks-es/resources7.js +6 -0
- package/lib/_chunks-es/resources7.js.map +1 -1
- package/lib/_chunks-es/upgradePackages.js +6 -6
- package/lib/_chunks-es/upgradePackages.js.map +1 -1
- package/lib/_chunks-es/version.js +1 -1
- package/lib/_singletons.d.ts +1 -2
- package/lib/desk.d.ts +6 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.js +103 -104
- package/lib/index.js.map +1 -1
- package/lib/structure.d.ts +6 -0
- package/package.json +22 -22
|
@@ -1538,7 +1538,7 @@ Examples
|
|
|
1538
1538
|
`;
|
|
1539
1539
|
function parseFlags$1(rawFlags) {
|
|
1540
1540
|
const flags = {};
|
|
1541
|
-
return rawFlags.types && (flags.types = `${rawFlags.types}`.split(",")), rawFlags["asset-concurrency"] && (flags.assetConcurrency = parseInt(rawFlags["asset-concurrency"], 10)), typeof rawFlags.raw < "u" && (flags.raw = !!rawFlags.raw), typeof rawFlags.assets < "u" && (flags.assets = !!rawFlags.assets), typeof rawFlags.drafts < "u" && (flags.drafts = !!rawFlags.drafts), typeof rawFlags.compress < "u" && (flags.compress = !!rawFlags.compress), typeof rawFlags.overwrite < "u" && (flags.overwrite = !!rawFlags.overwrite),
|
|
1541
|
+
return rawFlags.types && (flags.types = `${rawFlags.types}`.split(",")), rawFlags["asset-concurrency"] && (flags.assetConcurrency = parseInt(rawFlags["asset-concurrency"], 10)), typeof rawFlags.raw < "u" && (flags.raw = !!rawFlags.raw), typeof rawFlags.assets < "u" && (flags.assets = !!rawFlags.assets), typeof rawFlags.drafts < "u" && (flags.drafts = !!rawFlags.drafts), typeof rawFlags.compress < "u" && (flags.compress = !!rawFlags.compress), typeof rawFlags.overwrite < "u" && (flags.overwrite = !!rawFlags.overwrite), (rawFlags.mode === "stream" || rawFlags.mode === "cursor") && (flags.mode = rawFlags.mode), flags;
|
|
1542
1542
|
}
|
|
1543
1543
|
const exportDatasetCommand = {
|
|
1544
1544
|
name: "export",
|
|
@@ -1589,7 +1589,7 @@ const exportDatasetCommand = {
|
|
|
1589
1589
|
await exportDataset({
|
|
1590
1590
|
client,
|
|
1591
1591
|
dataset,
|
|
1592
|
-
outputPath,
|
|
1592
|
+
outputPath: outputPath === "-" ? process.stdout : outputPath,
|
|
1593
1593
|
onProgress,
|
|
1594
1594
|
...flags
|
|
1595
1595
|
}), spinner.succeed();
|