Skip to content
This repository was archived by the owner on Apr 9, 2019. It is now read-only.

Commit f4f3105

Browse files
committed
Node 6
1 parent 4e08cb5 commit f4f3105

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: node_js
22
node_js:
3-
- '4.2'
3+
- '6'
44
before_install:
55
- export CHROME_BIN=chromium-browser
66
- export DISPLAY=:99.0

karma.conf.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Karma configuration
22
// Generated on Sat Mar 28 2015 02:55:40 GMT-0400 (EDT)
33

4-
module.exports = function (config) {
5-
var c = {
4+
module.exports = (config) => {
5+
let c = {
66

77
// base path that will be used to resolve all patterns (eg. files, exclude)
88
basePath: '',

webpack.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
var argv = require('minimist')(process.argv.slice(2))
1+
const argv = require('minimist')(process.argv.slice(2))
22

3-
var entry = {
3+
const entry = {
44
example: [
55
'./examples/src/example.jsx'
66
]
@@ -11,7 +11,7 @@ if (argv.dist !== true) {
1111
}
1212

1313
module.exports = {
14-
entry: entry,
14+
entry,
1515
output: {
1616
path: './examples/assets',
1717
filename: '[name].js',

0 commit comments

Comments
 (0)