Skip to content

Commit

Permalink
Remove gulp-uglify
Browse files Browse the repository at this point in the history
  • Loading branch information
ixkaito committed Dec 12, 2018
1 parent b499487 commit 31309a5
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 53 deletions.
2 changes: 0 additions & 2 deletions gulp_tasks/webpack.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ const config = require('../frasco.config.js')
const gulp = require('gulp');
const named = require('vinyl-named');
const plumber = require('gulp-plumber');
const uglify = require('gulp-uglify');
const webpackStream = require('webpack-stream');
const webpack = require('webpack');

Expand All @@ -24,7 +23,6 @@ gulp.task('webpack', function () {
.pipe(named())
.pipe(babel())
.pipe(webpackStream(config.webpack, webpack))
.pipe(uglify())
.pipe(gulp.dest(config.assets + '/' + config.js.dest));
});

Expand Down
50 changes: 1 addition & 49 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "frasco",
"version": "0.8.4",
"version": "0.8.5",
"description": "Jekyll starter project including full setup for gulp, Sass, Autoprefixer, PostCSS, webpack, imagemin, Browsersync etc.",
"main": "gulpfile.js",
"scripts": {
Expand Down Expand Up @@ -51,7 +51,6 @@
"gulp-plumber": "^1.2.0",
"gulp-postcss": "^7.0.1",
"gulp-sass": "^4.0.1",
"gulp-uglify": "^3.0.0",
"gulp-watch": "^5.0.0",
"imagemin-pngquant": "^6.0.0",
"require-dir": "^1.0.0",
Expand Down

0 comments on commit 31309a5

Please sign in to comment.