Skip to content

Commit c524b1c

Browse files
committed
Merge pull request remix-run#2535 from taion/fix-configs
Fix build configs
2 parents e9450da + bbbe452 commit c524b1c

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
language: node_js
22
node_js:
3-
- "4"
3+
- stable
44
sudo: false
5+
cache:
6+
directories:
7+
- node_modules
58
before_script:
69
- wget http://www.browserstack.com/browserstack-local/BrowserStackLocal-linux-x64.zip
710
- unzip BrowserStackLocal-linux-x64.zip

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@
6060
"karma-browserstack-launcher": "^0.1.4",
6161
"karma-chrome-launcher": "^0.2.0",
6262
"karma-coverage": "^0.5.3",
63-
"karma-firefox-launcher": "^0.1.6",
6463
"karma-mocha": "^0.2.0",
6564
"karma-mocha-reporter": "^1.1.1",
6665
"karma-sourcemap-loader": "^0.3.5",

tests.webpack.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
var context = require.context('./modules', true, /-test\.js$/);
2-
context.keys().forEach(context);
1+
const context = require.context('./modules', true, /-test\.js$/)
2+
context.keys().forEach(context)

0 commit comments

Comments
 (0)