aboutsummaryrefslogtreecommitdiffstats
path: root/gulpfile.js
diff options
context:
space:
mode:
authorSam Potts <sam@potts.es>2018-01-09 09:14:59 +1100
committerSam Potts <sam@potts.es>2018-01-09 09:14:59 +1100
commita0d9d5eca8141973c1ed3bb3f5a6a0851657b240 (patch)
treef0b7e9b9e7232ba072017b49b963c1743e1ba724 /gulpfile.js
parent8786377a755224ebc281488c5bea849639ae4f2a (diff)
downloadplyr-a0d9d5eca8141973c1ed3bb3f5a6a0851657b240.tar.lz
plyr-a0d9d5eca8141973c1ed3bb3f5a6a0851657b240.tar.xz
plyr-a0d9d5eca8141973c1ed3bb3f5a6a0851657b240.zip
Styling tweaks
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/gulpfile.js b/gulpfile.js
index c587bfec..a8ea7d9a 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -31,10 +31,13 @@ const resolve = require('rollup-plugin-node-resolve');
const bundles = require('./bundles.json');
const pkg = require('./package.json');
+// Get AWS config
let aws;
try {
- aws = require('./aws.json');
-} catch (err) {}
+ aws = require('./aws.json'); //eslint-disable-line
+} catch (e) {
+ // Do nothing
+}
// Paths
const root = __dirname;