Skip to content

Commit

Permalink
Fixing CI issues
Browse files Browse the repository at this point in the history
  • Loading branch information
tgriesser committed Aug 9, 2016
1 parent b286c98 commit f9e50b3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"description": "A batteries-included SQL query & schema builder for Postgres, MySQL and SQLite3 and the Browser",
"main": "knex.js",
"dependencies": {
"babel-runtime": "^6.11.6",
"bluebird": "^3.3.4",
"chalk": "^1.0.0",
"commander": "^2.2.0",
Expand Down Expand Up @@ -55,14 +56,14 @@
},
"scripts": {
"build": "npm run babel",
"babel": "babel src --out-dir lib",
"babel": "rm -rf ./lib && babel src --out-dir lib --copy-files",
"coveralls": "cat ./test/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"dev": "babel -w src --out-dir lib",
"dev": "rm -rf ./lib && babel -w src --out-dir lib --copy-files",
"lint": "eslint src/**",
"plaintest": "mocha --check-leaks -b -R spec test/index.js && npm run tape",
"prepublish": "npm run babel",
"tape": "node test/tape/index.js | tap-spec",
"test": "npm run lint && npm run babel && istanbul --config=test/.istanbul.yml cover node_modules/mocha/bin/_mocha -- --check-leaks -b -R spec test/index.js && npm run tape"
"test": "npm run lint && istanbul --config=test/.istanbul.yml cover node_modules/mocha/bin/_mocha -- --check-leaks -b -R spec test/index.js && npm run tape"
},
"bin": {
"knex": "./lib/bin/cli.js"
Expand Down
1 change: 1 addition & 0 deletions scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ next_ref="v$next_version"

git add -u

npm run build
npm test

update_version 'package.json' $next_version
Expand Down

0 comments on commit f9e50b3

Please sign in to comment.