sql-ddl-sync
Advanced tools
Comparing version 0.3.12 to 0.3.13
@@ -0,3 +1,10 @@ | ||
### v0.3.13 - 2017-07-17 | ||
- Expose `.dialects` | ||
- Update dependencies | ||
### v0.3.12 - 2016-12-09 | ||
- Update dependencies including lodash 2 -> 4 | ||
### v0.3.11 - 2015-03-19 | ||
- Add support for custom types | ||
{ | ||
"author" : "Diogo Resende <dresende@thinkdigital.pt>", | ||
"name" : "sql-ddl-sync", | ||
"description" : "NodeJS SQL DDL Synchronization", | ||
"keywords" : [ "sql", "ddl", "sync", "mysql", "postgres", "sqlite" ], | ||
"version" : "0.3.12", | ||
"license" : "MIT", | ||
"repository" : "http://github.com/dresende/node-sql-ddl-sync.git", | ||
"main" : "./lib/Sync", | ||
"scripts" : { "test": "make test" }, | ||
"engines" : { "node": "*" }, | ||
"analyse" : false, | ||
"dependencies" : { | ||
"lodash" : "4.17.2" | ||
"author": "Diogo Resende <dresende@thinkdigital.pt>", | ||
"name": "sql-ddl-sync", | ||
"description": "NodeJS SQL DDL Synchronization", | ||
"keywords": [ | ||
"sql", | ||
"ddl", | ||
"sync", | ||
"mysql", | ||
"postgres", | ||
"sqlite" | ||
], | ||
"version": "0.3.13", | ||
"license": "MIT", | ||
"repository": "http://github.com/dresende/node-sql-ddl-sync.git", | ||
"main": "./lib/index", | ||
"scripts": { | ||
"test": "make test" | ||
}, | ||
"devDependencies" : { | ||
"mocha" : "3.2.0", | ||
"should" : "11.1.1", | ||
"commander" : "2.9.0", | ||
"orm" : "2.1.23" | ||
"engines": { | ||
"node": "*" | ||
}, | ||
"analyse": false, | ||
"dependencies": { | ||
"lodash": "4.17.4" | ||
}, | ||
"devDependencies": { | ||
"mocha": "3.4.2", | ||
"should": "11.2.1", | ||
"commander": "2.9.0", | ||
"orm": "3.2.3" | ||
} | ||
} |
@@ -31,5 +31,5 @@ ## NodeJS SQL DDL Synchronization | ||
```js | ||
var orm = require("orm"); | ||
var mysql = require("mysql"); | ||
var Sync = require("sql-ddl-sync").Sync; | ||
var orm = require("orm"); | ||
var mysql = require("mysql"); | ||
var Sync = require("sql-ddl-sync").Sync; | ||
@@ -36,0 +36,0 @@ orm.connect("mysql://username:password@localhost/database", function (err, db) { |
@@ -1,2 +0,2 @@ | ||
var Sync = require("../../lib/Sync").Sync; | ||
var index = require("../../lib/index").Sync; | ||
var common = require("../common"); | ||
@@ -3,0 +3,0 @@ var should = require("should"); |
Sorry, the diff of this file is not supported yet
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
Dynamic require
Supply chain riskDynamic require can indicate the package is performing dangerous or unsafe dynamic code execution.
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
69946
22
2048
4
+ Addedlodash@4.17.4(transitive)
- Removedlodash@4.17.2(transitive)
Updatedlodash@4.17.4