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

one

Package Overview
Dependencies
Maintainers
1
Versions
192
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

one - npm Package Compare versions

Comparing version 1.3.1 to 1.3.2

2

package.json
{
"name":"one",
"version":"1.3.1",
"version":"1.3.2",
"description":"Transform NodeJS packages into single stand-alone script files.",

@@ -5,0 +5,0 @@ "author":"Azer Koculu <azer@kodfabrik.com>",

@@ -58,3 +58,3 @@ var {{ name }} = (function(global, undefined){

if(!pkg) throw new Error('Cannot find module "'+uri+'"');
if(!pkg) throw new Error('Cannot find module "'+uri+'" @[module: '+callingModule.id+' package: '+callingModule.pkg.name+']');

@@ -64,3 +64,3 @@ module = findPkg(callingModule.pkg, uri).main;

if(!module) throw new Error('Cannot find module "'+uri+'"');
if(!module) throw new Error('Cannot find module "'+uri+'" @[module: '+callingModule.id+' package: '+callingModule.pkg.name+']');

@@ -67,0 +67,0 @@ return module.call();

@@ -172,6 +172,6 @@ var exampleProject = (function(global, undefined){

pkg = findPkg(callingModule.pkg, uri);
if(!pkg) throw new Error('Cannot find module "'+uri+'"');
if(!pkg) throw new Error('Cannot find module "'+uri+'" @[module: '+callingModule.id+' package: '+callingModule.pkg.name+']');
module = findPkg(callingModule.pkg, uri).main;
}
if(!module) throw new Error('Cannot find module "'+uri+'"');
if(!module) throw new Error('Cannot find module "'+uri+'" @[module: '+callingModule.id+' package: '+callingModule.pkg.name+']');
return module.call();

@@ -178,0 +178,0 @@ };

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