Comparing version 0.1.0 to 0.1.1
@@ -67,3 +67,4 @@ | ||
if ( getRootModulePath() && path.indexOf( getRootModulePath() ) === 0 ){ | ||
return path.substr( getRootModulePath().length ).replace( /\//g, "." ); | ||
path = path.substr( getRootModulePath().length ); | ||
return path.indexOf( "node_modules" === -1 ) ? path.replace( /\//g, "." ) : path.substr( path.lastIndexOf( "node_modules" ) + 13 ).replace( /\//g, "." ); | ||
} | ||
@@ -70,0 +71,0 @@ |
{ | ||
"name": "ee-class" | ||
, "description": "js class implementation" | ||
, "version": "0.1.0" | ||
, "version": "0.1.1" | ||
, "homepage": "https://github.com/eventEmitter/ee-class" | ||
@@ -6,0 +6,0 @@ , "author": "Michael van der Weg <michael@eventemitter.com> (http://eventemitter.com/)" |
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
7506
145