@sanity/export
Advanced tools
Comparing version 0.133.0-next.ddda7af6 to 0.133.0-realtime-block-editor.72c3aa98
{ | ||
"name": "@sanity/export", | ||
"version": "0.133.0-next.ddda7af6", | ||
"version": "0.133.0-realtime-block-editor.72c3aa98", | ||
"description": "Export Sanity documents and assets", | ||
@@ -35,3 +35,3 @@ "main": "lib/export.js", | ||
"devDependencies": { | ||
"@sanity/client": "0.133.0-next.ddda7af6", | ||
"@sanity/client": "0.133.0-realtime-block-editor.72c3aa98", | ||
"decompress": "^4.2.0", | ||
@@ -38,0 +38,0 @@ "jest": "^22.1.4", |
@@ -211,5 +211,10 @@ const path = require('path') | ||
return new Promise((resolve, reject) => | ||
miss.pipe(stream, hasher, fse.createWriteStream(filePath), err => { | ||
return err ? reject(err) : resolve(hash.digest('hex')) | ||
}) | ||
miss.pipe( | ||
stream, | ||
hasher, | ||
fse.createWriteStream(filePath), | ||
err => { | ||
return err ? reject(err) : resolve(hash.digest('hex')) | ||
} | ||
) | ||
) | ||
@@ -216,0 +221,0 @@ } |
@@ -155,3 +155,7 @@ const os = require('os') | ||
archive.append(jsonStream, {name: 'data.ndjson', prefix}) | ||
miss.pipe(archive, outputStream, onComplete) | ||
miss.pipe( | ||
archive, | ||
outputStream, | ||
onComplete | ||
) | ||
@@ -158,0 +162,0 @@ async function onComplete(err) { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
40610
25
890