clever-orm
Advanced tools
Comparing version 2.0.6 to 2.0.7
@@ -7,2 +7,4 @@ 'use strict'; | ||
, config = require('config') | ||
, os = require('os') | ||
, isWin = /^win32/.test(os.platform()); | ||
, dialect = config['clever-orm'].db.options.dialect | ||
@@ -40,3 +42,3 @@ , appRoot = path.resolve(path.join(__dirname, '..', '..', '..')) | ||
var proc = cp.spawn('npm', ['i', dbPkg], opts); | ||
var proc = cp.spawn(!isWin ? 'npm' :'npm.CMD', ['i', dbPkg], opts); | ||
@@ -56,2 +58,2 @@ proc.on('close', function(code) { | ||
}); | ||
} | ||
} |
{ | ||
"name" : "clever-orm", | ||
"description" : "CleverStack ORM (SQL) Module", | ||
"version" : "2.0.6", | ||
"version" : "2.0.7", | ||
"license" : "MIT", | ||
@@ -6,0 +6,0 @@ "main" : "module", |
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
88569
1941