diff options
Diffstat (limited to 'gulpfile.js')
-rw-r--r-- | gulpfile.js | 7 |
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; |