Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrumwell committed Apr 4, 2017
2 parents 4b3fcf3 + af5c950 commit d095270
Showing 1 changed file with 6 additions and 11 deletions.
17 changes: 6 additions & 11 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
ESLINT = node_modules/.bin/eslint
LAB = ./node_modules/lab/bin/lab
BABEL = ./node_modules/.bin/babel
KNEX_VERSIONS = 0.8 0.9 0.10 0.11 0.12

.PHONY: clean test lint lint-quiet watch build test-debug
.PHONY: clean test lint lint-quiet watch build test-debug $(KNEX_VERSIONS)

default: build

Expand All @@ -12,16 +13,10 @@ clean:
test:
${LAB} -v -I __BluebirdErrorTypes__,Set,Intl,Map,__core-js_shared__,System,Observable,regeneratorRuntime,asap,core,_babelPolyfill ./test/init.js

test-suite:
npm i knex@0.8
make test
npm i knex@0.9
make test
npm i knex@0.10
make test
npm i knex@0.11
make test
npm i knex@0.12
test-suite: $(KNEX_VERSIONS)

$(KNEX_VERSIONS):
npm i knex@$@
make test

debug:
Expand Down

0 comments on commit d095270

Please sign in to comment.