clever-orm
Advanced tools
Comparing version 1.0.8 to 1.0.9
@@ -103,3 +103,3 @@ var path = require( 'path' ) | ||
function forEachModelTypeComplete( err ) { | ||
if ( err === null ) { | ||
if ( err === null || err === undefined ) { | ||
console.log( 'Seed completed with no errors' ); | ||
@@ -106,0 +106,0 @@ process.exit( 0 ); |
{ | ||
"clever-orm": { | ||
"db": { | ||
"username": "john", | ||
"password": "secret", | ||
"username": "root", | ||
"password": "", | ||
"database": "nodeseed", | ||
@@ -13,6 +13,4 @@ "options": { | ||
}, | ||
"modelAssociations": { | ||
"Example": {} | ||
} | ||
"modelAssociations": {} | ||
} | ||
} |
{ | ||
"name": "clever-orm", | ||
"version": "1.0.8", | ||
"dependencies": { | ||
"mysql": "2.0.0-rc2", | ||
"sequelize": "^1.7.x" | ||
}, | ||
"scripts": { | ||
"test": "grunt test:unit" | ||
}, | ||
"author": { | ||
"name": "CleverStack", | ||
"email": "admin@cleverstack.io", | ||
"web": "http://cleverstack.io" | ||
}, | ||
"collaborators": [ | ||
"Richard Gustin <richard.gustin86@gmail.com>" | ||
], | ||
"description": "CleverStack ORM (SQL) Module", | ||
"keywords": [ | ||
"cleverstack", | ||
"cleverstack-module", | ||
"cleverstack-backend", | ||
"orm", | ||
"sequelize", | ||
"clevertech", | ||
"backend" | ||
], | ||
"main": "module.js", | ||
"devDependencies": { | ||
"grunt": "~0.4.2", | ||
"grunt-prompt": "~1.1.0" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/CleverStack/clever-orm.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/CleverStack/clever-orm/issues" | ||
} | ||
} | ||
"name": "clever-orm", | ||
"description": "CleverStack ORM (SQL) Module", | ||
"version": "1.0.9", | ||
"main": "module.js", | ||
"author": { | ||
"name": "CleverStack", | ||
"email": "admin@cleverstack.io", | ||
"web": "http://cleverstack.io" | ||
}, | ||
"collaborators": [ | ||
"Richard Gustin <richard.gustin86@gmail.com>" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/CleverStack/clever-orm.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/CleverStack/clever-orm/issues" | ||
}, | ||
"keywords": [ | ||
"cleverstack", | ||
"cleverstack-module", | ||
"cleverstack-backend", | ||
"orm", | ||
"sequelize", | ||
"backend", | ||
"mysql", | ||
"postgre", | ||
"sqlite", | ||
"dao" | ||
], | ||
"license": "BSD-2-Clause", | ||
"dependencies": { | ||
"mysql": "2.0.0-rc2", | ||
"sequelize": "^1.7.x" | ||
}, | ||
"devDependencies": { | ||
"grunt": "~0.4.2", | ||
"grunt-prompt": "~1.1.0" | ||
}, | ||
"scripts": { | ||
"test": "grunt test:unit" | ||
} | ||
} |
@@ -142,3 +142,3 @@ var Promise = require( 'bluebird' ) | ||
] | ||
, proc = spawn ( 'grunt', [ 'prompt:clever' ], { cwd: path.resolve( path.join( __dirname, '..', prName ) ) } ); | ||
, proc = spawn ( 'grunt', [ 'prompt:cleverOrmConfig' ], { cwd: path.resolve( path.join( __dirname, '..', prName ) ) } ); | ||
@@ -222,3 +222,3 @@ console.log( 'step #4 - install clever-orm module - begin\n' ); | ||
console.log( 'Error in step #6 - ' + data.toString() + '\n'); | ||
reject ( data.toString() ); | ||
reject( data.toString() ); | ||
}); | ||
@@ -225,0 +225,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
43134
860