Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3d915cf

Browse files
committedOct 19, 2015
Fix build
1 parent f34a09e commit 3d915cf

File tree

5 files changed

+22
-3172
lines changed

5 files changed

+22
-3172
lines changed
 

‎CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
##### 0.11.2 - 19 October 2015
2+
3+
- Fixed build
4+
15
##### 0.11.1 - 19 October 2015
26

37
- #23 - Allow sending 'offset' and 'limit' params as strings.

‎dist/js-data-sql.js

Lines changed: 13 additions & 3167 deletions
Large diffs are not rendered by default.

‎mocha.start.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ beforeEach(function () {
5858
adapter = new DSSqlAdapter({
5959
client: 'mysql',
6060
connection: {
61-
user: 'ubuntu',
62-
database: 'circle_test'
61+
user: process.env.C9_USER || 'ubuntu',
62+
database: process.env.C9_USER ? 'c9' : 'circle_test'
6363
//user: 'root',
6464
//database: 'test'
6565
}

‎package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "js-data-sql",
33
"description": "Postgres/MySQL/MariaDB/SQLite3 adapter for js-data.",
4-
"version": "0.11.1",
4+
"version": "0.11.2",
55
"homepage": "http://www.js-data.io/docs/dssqladapter",
66
"repository": {
77
"type": "git",
@@ -38,7 +38,7 @@
3838
},
3939
"scripts": {
4040
"lint": "node_modules/standard/bin/cmd.js src/index.js",
41-
"build": "node_modules/webpack/bin/webpack.js .",
41+
"build": "node_modules/webpack/bin/webpack.js --config webpack.config.js --progress --colors",
4242
"mocha": "mocha test/*.spec.js --timeout 20000 --reporter spec",
4343
"test": "npm run lint && npm run build && npm run mocha"
4444
},

‎src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,4 +371,4 @@ class DSSqlAdapter {
371371
}
372372
}
373373

374-
export default DSSqlAdapter
374+
module.exports = DSSqlAdapter

0 commit comments

Comments
 (0)
Please sign in to comment.