Skip to content
This repository has been archived by the owner on Apr 26, 2019. It is now read-only.

Commit

Permalink
yuicompressor -> clean-css as minifier
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanoMagrassi committed May 12, 2017
1 parent 710d509 commit 341afcf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/lib/minifier.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ var Minifier = function () {
_fsExtra2.default.ensureFileSync(buildFileOutput);

var promise = _nodeMinify2.default.minify({
compressor: 'yui-css',
compressor: 'clean-css',
publicFolder: srcPath,
input: this.config.sourceCssFiles,
output: buildFileOutput
Expand Down
2 changes: 1 addition & 1 deletion src/lib/minifier.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default class Minifier {
fs.ensureFileSync(buildFileOutput);

const promise = compressor.minify({
compressor: 'yui-css',
compressor: 'clean-css',
publicFolder: srcPath,
input: this.config.sourceCssFiles,
output: buildFileOutput
Expand Down

0 comments on commit 341afcf

Please sign in to comment.