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

Commit

Permalink
Release 1.1.2 - Bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
mach6 committed Feb 15, 2017
1 parent b92c5b1 commit 9a1221d
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 2 deletions.
12 changes: 12 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,18 @@ module.exports = function(grunt) {
files: {
'tmp/sqwish_one.css': ['test/css/**/*.css']
}
},
cleancss: {
compressor: 'clean-css',
files: {
'tmp/cleancss_one.css': ['test/css/**/*.css']
}
},
csso: {
compressor: 'csso',
files: {
'tmp/csso_one.css': ['test/css/**/*.css']
}
}
},

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.1.2_ : Updates dependencies
- _1.1.1_ : Updates dependencies
- _1.1.0_ : Adds color to console output
- _1.0.1_ : Initial release
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "grunt-node-minify",
"description": "Grunt plugin for node-minify",
"version": "1.1.1",
"version": "1.1.2",
"author": {
"name": "Doug Simmons",
"email": "[email protected]",
Expand All @@ -23,7 +23,7 @@
},
"dependencies": {
"google-closure-compiler-js": "^20170124.0.0",
"node-minify": "^2.0.2",
"node-minify": "^2.0.3",
"bluebird": "^3.4.7",
"chalk": "^1.1.3"
},
Expand Down
8 changes: 8 additions & 0 deletions test/node-minify-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,14 @@ suite('#grunt-node-minify', function() {
assert.equal(grunt.file.exists('tmp/sqwish_one.css'), true);
});

test('cleancss should exist', function() {
assert.equal(grunt.file.exists('tmp/cleancss_one.css'), true);
});

test('csso should exist', function() {
assert.equal(grunt.file.exists('tmp/csso_one.css'), true);
});

test('no-compress should exist', function() {
assert.equal(grunt.file.exists('tmp/no-compress.js'), true);
});
Expand Down

0 comments on commit 9a1221d

Please sign in to comment.