Skip to content

Commit

Permalink
Add standard js linter, fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
patriksimek committed Apr 1, 2017
1 parent b0c1a21 commit 289171f
Show file tree
Hide file tree
Showing 24 changed files with 6,323 additions and 6,208 deletions.
5 changes: 1 addition & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
node_modules
.DS_Store
.svn
.coffeemaker
.idea
/test/.mssql.json
/src
.vscode
6 changes: 2 additions & 4 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
node_modules
.DS_Store
.svn
docs
test
Makefile
.vscode
test
5 changes: 3 additions & 2 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
v4.0.0 (2017-02-00)
v4.0.0 (2017-04-01)
-------------------
[new] Completly rewritten to ES6
[new] Library is now compatible with Webpack
[new] Library is ready for async/await
[change] Removed support for < Node.js 4
[change] Removed support for outdated node-tds and msnodesql drivers
[change] Removed require('mssql/nofix') syntax
[change] Removed verbose mode
[change] Removed verbose and debug mode
[change] Removed 'driver' from options
[change] Removed Transaction and Prepared Statement queues
[change] Removed 'multiple' directive
[change] Connection renamed to ConnectionPool
[change] Updated to latest Tedious 2.0.0

v3.3.0 (2016-05-06)
-------------------
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# node-mssql v4 alpha
# node-mssql

Microsoft SQL Server client for Node.js

Expand All @@ -14,7 +14,7 @@ Supported TDS drivers:

**IMPORTANT**: Requires Node.js 4 or newer.

npm install mssql@alpha
npm install mssql

## Quick Example

Expand Down Expand Up @@ -1554,7 +1554,7 @@ request.query('select @myval as myval', (err, result) => {
- Directive `multiple: true` was removed.
- `Transaction` and `PreparedStatement` internal queues was removed.
- ConnectionPool no longer emits `connect` and `close` events.
- Removed verbose mode.
- Removed verbose and debug mode.
- Removed support for `tds` and `msnodesql` drivers.
- Removed support for Node versions lower than 4.

Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = require("./lib/tedious.js");
module.exports = require('./lib/tedious.js')
Loading

0 comments on commit 289171f

Please sign in to comment.