From b500d6a15dc1149a6cc3f5c941d4d410a18a0bc6 Mon Sep 17 00:00:00 2001 From: Gianni Chiappetta Date: Mon, 13 Feb 2017 09:59:37 -0500 Subject: [PATCH] Add @JochenDiekenbrock to CONTRIBUTORS --- CHANGELOG.md | 2 ++ README.md | 1 + package.json | 3 ++- webpack.config.js | 5 +++-- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 88ca686..b219b6f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Changed * `lib` is now included in npm release to allow packagers to repackage the library +* Update to webpack 2 * Add @victoriafrench to *CONTRIBUTORS* +* Add @JochenDiekenbrock to *CONTRIBUTORS* ## [3.0.1] ### Added diff --git a/README.md b/README.md index b47050a..c23afab 100644 --- a/README.md +++ b/README.md @@ -601,6 +601,7 @@ npm run lint - [**Bradley Ayers**](https://github.com/bradleyayers) - [**Ross Hadden**](https://github.com/rosshadden) (http://rosshadden.github.com/resume) - [**Victoria French**](https://github.com/victoriafrench) +- [**Jochen Diekenbrock**](https://github.com/JochenDiekenbrock) ## License diff --git a/package.json b/package.json index b26473b..e764b6b 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,8 @@ "Aristide Niyungeko (https://github.com/aristiden7o)", "Bradley Ayers (https://github.com/bradleyayers)", "Ross Hadden (http://rosshadden.github.com/resume)", - "Victoria French (https://github.com/victoriafrench)" + "Victoria French (https://github.com/victoriafrench)", + "Jochen Diekenbrock (https://github.com/JochenDiekenbrock)" ], "homepage": "https://github.com/gf3/moment-range", "bugs": "https://github.com/gf3/moment-range/issues", diff --git a/webpack.config.js b/webpack.config.js index 7d6f6f1..d2e25e1 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -18,11 +18,12 @@ module.exports = { plugins: ['transform-flow-strip-types'], presets: ['es2015', 'stage-0'] } - }, { + }, + { test: /\.js$/, exclude: /node_modules/, loader: 'eslint-loader', - enforce: "pre" + enforce: 'pre' } ] },