Skip to content

Commit

Permalink
Merge pull request remix-run#2535 from taion/fix-configs
Browse files Browse the repository at this point in the history
Fix build configs
  • Loading branch information
mjackson committed Nov 13, 2015
2 parents e9450da + bbbe452 commit c524b1c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
language: node_js
node_js:
- "4"
- stable
sudo: false
cache:
directories:
- node_modules
before_script:
- wget http://www.browserstack.com/browserstack-local/BrowserStackLocal-linux-x64.zip
- unzip BrowserStackLocal-linux-x64.zip
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@
"karma-browserstack-launcher": "^0.1.4",
"karma-chrome-launcher": "^0.2.0",
"karma-coverage": "^0.5.3",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.1.1",
"karma-sourcemap-loader": "^0.3.5",
Expand Down
4 changes: 2 additions & 2 deletions tests.webpack.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
var context = require.context('./modules', true, /-test\.js$/);
context.keys().forEach(context);
const context = require.context('./modules', true, /-test\.js$/)
context.keys().forEach(context)

0 comments on commit c524b1c

Please sign in to comment.