Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

@sanity/export

Package Overview
Dependencies
Maintainers
107
Versions
1068
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sanity/export - npm Package Compare versions

Comparing version
5.0.0
to
5.0.1
+1
-1
package.json
{
"name": "@sanity/export",
"version": "5.0.0",
"version": "5.0.1",
"description": "Export Sanity documents and assets",

@@ -5,0 +5,0 @@ "keywords": [

@@ -7,2 +7,3 @@ import {createWriteStream} from 'node:fs'

import {finished, pipeline} from 'node:stream/promises'
import {deprecate} from 'node:util'
import {constants as zlib} from 'node:zlib'

@@ -321,1 +322,16 @@

}
/**
* Alias for `exportDataset`, for backwards compatibility.
* Use named `exportDataset` instead.
*
* @deprecated Default export is deprecated and will be removed in a future release. Use named "exportDataset" function instead.
* @public
*/
export default deprecate(
function deprecatedExport(opts) {
return exportDataset(opts)
},
`Default export of "@sanity/export" is deprecated and will be removed in a future release. Please use the named "exportDataset" function instead.`,
'DEP_SANITY_EXPORT_DEFAULT',
)