Skip to content

Commit

Permalink
style: restructure gulpfile imports
Browse files Browse the repository at this point in the history
  • Loading branch information
dessant committed Sep 26, 2017
1 parent 8d3e162 commit 9b1346c
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
const path = require('path');
const exec = require('child_process').exec;
const {lstatSync, readdirSync, readFileSync, writeFileSync} = require('fs');

const del = require('del');
const {ensureDirSync} = require('fs-extra');
const recursiveReadDir = require('recursive-readdir');
const exec = require('child_process').exec;
const gulp = require('gulp');
const gulpSeq = require('gulp-sequence');
const webpack = require('webpack');
const htmlmin = require('gulp-htmlmin');
const babel = require('gulp-babel');
const htmlmin = require('gulp-htmlmin');
const postcss = require('gulp-postcss');
const gulpif = require('gulp-if');
const del = require('del');
const jsonMerge = require('gulp-merge-json');
const jsBeautify = require('gulp-jsbeautifier');
const svg2png = require('svg2png');
const imagemin = require('gulp-imagemin');
const webpack = require('webpack');
const svg2png = require('svg2png');

const targetEnv = process.env.TARGET_ENV || 'firefox';
const isProduction = process.env.NODE_ENV === 'production';
Expand Down

0 comments on commit 9b1346c

Please sign in to comment.