This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// common | |
const gulp = require('gulp'); | |
const rename = require('gulp-rename'); | |
const plumber = require('gulp-plumber'); | |
const gutil = require('gulp-util'); | |
// js | |
const webpack = require('webpack'); | |
const webpackStream = require('webpack-stream'); | |
const concat = require('gulp-concat'); | |
const babel = require('gulp-babel'); |