Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@netlify/zip-it-and-ship-it

Package Overview
Dependencies
Maintainers
19
Versions
324
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@netlify/zip-it-and-ship-it - npm Package Compare versions

Comparing version 9.26.1 to 9.26.2

6

dist/runtimes/node/parser/exports.js

@@ -115,4 +115,6 @@ import { MODULE_FORMAT } from '../utils/module_format.js';

};
// Returns whether a given node is a default export declaration.
const isESMDefaultExport = (node) => node.type === 'ExportDefaultDeclaration';
// Returns whether a given node is or contains a default export declaration.
const isESMDefaultExport = (node) => node.type === 'ExportDefaultDeclaration' ||
(node.type === 'ExportNamedDeclaration' &&
node.specifiers.some((exportSpecifier) => exportSpecifier.exported.type === 'Identifier' && exportSpecifier.exported.name === 'default'));
/**

@@ -119,0 +121,0 @@ * Finds a `config` named CJS export that maps to an object variable

{
"name": "@netlify/zip-it-and-ship-it",
"version": "9.26.1",
"version": "9.26.2",
"description": "Zip it and ship it",

@@ -58,3 +58,3 @@ "main": "./dist/main.js",

"@babel/parser": "^7.22.5",
"@babel/types": "7.23.0",
"@babel/types": "7.23.3",
"@netlify/binary-info": "^1.0.0",

@@ -67,3 +67,3 @@ "@netlify/serverless-functions-api": "^1.12.0",

"es-module-lexer": "^1.0.0",
"esbuild": "0.19.5",
"esbuild": "0.19.6",
"execa": "^6.0.0",

@@ -96,10 +96,10 @@ "filter-obj": "^5.0.0",

"@types/glob": "8.1.0",
"@types/is-ci": "3.0.3",
"@types/is-ci": "3.0.4",
"@types/node": "14.18.63",
"@types/normalize-path": "3.0.1",
"@types/resolve": "1.20.4",
"@types/semver": "7.5.4",
"@types/tmp": "0.2.5",
"@types/unixify": "1.0.1",
"@types/yargs": "17.0.29",
"@types/normalize-path": "3.0.2",
"@types/resolve": "1.20.5",
"@types/semver": "7.5.5",
"@types/tmp": "0.2.6",
"@types/unixify": "1.0.2",
"@types/yargs": "17.0.31",
"@vitest/coverage-v8": "0.34.6",

@@ -106,0 +106,0 @@ "adm-zip": "0.5.10",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc