Comparing version 1.3.1 to 1.3.2
{ | ||
"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 @@ }; |
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
56846