Merge pull request #799 from dahfool/master

replace require with es6 import statment
This commit is contained in:
Chris Hill-Scott
2016-07-20 12:01:17 +01:00
committed by GitHub

View File

@@ -5,9 +5,11 @@
// 1. LIBRARIES // 1. LIBRARIES
// - - - - - - - - - - - - - - - // - - - - - - - - - - - - - - -
var gulp = require('gulp'), import gulp from 'gulp';
plugins = require('gulp-load-plugins')(), import loadPlugins from 'gulp-load-plugins';
stylish = require('jshint-stylish'), import stylish from 'jshint-stylish';
const plugins = loadPlugins(),
// 2. CONFIGURATION // 2. CONFIGURATION
// - - - - - - - - - - - - - - - // - - - - - - - - - - - - - - -