Skip to content
This repository has been archived by the owner on Mar 31, 2023. It is now read-only.

Commit

Permalink
Merge pull request #21 from fourkitchens/fix-eslint-errors
Browse files Browse the repository at this point in the history
Fix eslint errors
  • Loading branch information
Evan Willhite authored Jan 3, 2017
2 parents f8883e2 + 4ade9a7 commit b8babe9
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
/* globals require */

(function () {
'use strict';

// General
var gulp = require('gulp-help')(require('gulp'));
var _ = require('lodash');
var localConfig = {};

try {
localConfig = require('./local.gulp-config');
}
catch (e) {}
catch (e) {
// Do nothing.
}
require('emulsify-gulp')(gulp, localConfig);

})();

0 comments on commit b8babe9

Please sign in to comment.