Skip to content
This repository has been archived by the owner on Aug 30, 2022. It is now read-only.

Commit

Permalink
Version 1.4.0
Browse files Browse the repository at this point in the history
Bumps node-minify and google-closure-compiler versions
Adds additional tests for minifiers which are now supported
upstream
  • Loading branch information
mach6 committed Aug 28, 2018
1 parent 0ac111b commit 5e5859b
Show file tree
Hide file tree
Showing 6 changed files with 2,327 additions and 1,080 deletions.
22 changes: 20 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ module.exports = function(grunt) {
'node-minify': {
gcc: {
files: {
'tmp/gcc_min.js': ['test/**/*.js']
'tmp/gcc_min.js': ['test/js/**/*.js']
}
},
nocompress: {
Expand Down Expand Up @@ -60,6 +60,12 @@ module.exports = function(grunt) {
'tmp/uglifyjs_min.js': ['test/**/*.js']
}
},
uglifyes: {
compressor: 'uglify-es',
files: {
'tmp/uglifyes_min.js': ['test/**/*.js']
}
},
babelminify: {
compressor: 'babel-minify',
files: {
Expand Down Expand Up @@ -98,6 +104,12 @@ module.exports = function(grunt) {
'tmp/csso_one.css': ['test/css/**/*.css']
}
},
crass: {
compressor: 'crass',
files: {
'tmp/crass_one.css': ['test/css/**/*.css']
}
},
butternut: {
compressor: 'butternut',
files: {
Expand All @@ -108,7 +120,13 @@ module.exports = function(grunt) {
allowDangerousEval: false,
sourceMap: true
}
}
},
htmlminifier: {
compressor: 'html-minifier',
files: {
'tmp/htmlminifier.html': ['test/html/**/*.html']
}
},
},

mochacli: {
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ grunt.initConfig({
In lieu of a formal style guide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using [Grunt](http://gruntjs.com/).

## Release History
- _1.4.0_ : Updates dependencies (node-minify, google-closure-compiler-js, and others).
- _1.3.6_ : Updates dependencies (google-closure-compiler-js).
- _1.3.5_ : Updates dependencies (google-closure-compiler-js).
- _1.3.4_ : Updates dependencies (google-closure-compiler-js).
Expand Down
Loading

0 comments on commit 5e5859b

Please sign in to comment.