Comparing version 2.1.29 to 2.1.30
@@ -0,1 +1,4 @@ | ||
### v2.1.30 | ||
- Fix paths on windows (#699) | ||
### v2.1.29 | ||
@@ -2,0 +5,0 @@ - Fix hasOne association when ID is 0 (#681) |
@@ -285,5 +285,5 @@ var _ = require('lodash') | ||
} | ||
if (path_str[0] !== path.sep) { | ||
path_str = cwd + "/" + path_str; | ||
var pathIsAbsolute = path.isAbsolute || require('path-is-absolute'); | ||
if (!pathIsAbsolute(path_str)) { | ||
path_str = path.join(cwd, path_str); | ||
} | ||
@@ -290,0 +290,0 @@ if (path_str.substr(-1) === path.sep) { |
@@ -15,3 +15,3 @@ { | ||
], | ||
"version" : "2.1.29", | ||
"version" : "2.1.30", | ||
"license" : "MIT", | ||
@@ -40,7 +40,8 @@ "homepage" : "http://dresende.github.io/node-orm2", | ||
"dependencies": { | ||
"enforce" : "0.1.6", | ||
"sql-query" : "0.1.26", | ||
"sql-ddl-sync" : "0.3.11", | ||
"hat" : "0.0.3", | ||
"lodash" : "2.4.1" | ||
"enforce" : "0.1.6", | ||
"sql-query" : "0.1.26", | ||
"sql-ddl-sync" : "0.3.11", | ||
"hat" : "0.0.3", | ||
"lodash" : "2.4.1", | ||
"path-is-absolute" : "1.0.0" | ||
}, | ||
@@ -47,0 +48,0 @@ "devDependencies": { |
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
236644
6008
6
+ Addedpath-is-absolute@1.0.0
+ Addedpath-is-absolute@1.0.0(transitive)