Skip to content

Commit bff13e7

Browse files
committed
Version 2.0.1: add new conversions (eg. hwb, cmyk, lab), rename original file of readme and test (add underscore)
1 parent 96592a5 commit bff13e7

18 files changed

+11638
-2323
lines changed

Gruntfile.js

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ module.exports = function(grunt) {
55
pkg: grunt.file.readJSON('package.json'),
66
meta: {
77
banner: '// TinyColor v<%= pkg.version %>\n' +
8-
'// https://github.com/bgrins/TinyColor\n' +
9-
'// <%= grunt.template.today("yyyy-mm-dd") %>, Brian Grinstead, MIT License\n'
8+
'// https://github.com/chingcm/TinyColor\n' +
9+
'// <%= grunt.template.today("yyyy-mm-dd") %>, Dem Ching, MIT License\n'
1010
},
1111

1212
uglify: {
@@ -16,13 +16,14 @@ module.exports = function(grunt) {
1616
},
1717
dist: {
1818
files: {
19-
'dist/tinycolor-min.js': ['tinycolor.js']
19+
'dist/tinycolor-min.js': ['tinycolor.js'],
20+
'dist/tinycolor-plugin-min.js': ['tinycolor.plugin.js']
2021
}
2122
}
2223
},
2324

2425
qunit: {
25-
all: ['test/index.html']
26+
all: ['test/_index.html', 'test/index.html']
2627
},
2728

2829

@@ -34,12 +35,12 @@ module.exports = function(grunt) {
3435
jQuery: true
3536
}
3637
},
37-
all: ['tinycolor.js']
38+
all: ['tinycolor.js', 'tinycolor.plugin.js']
3839
},
3940

4041
docco: {
4142
debug: {
42-
src: ['tinycolor.js'],
43+
src: ['tinycolor.js', 'tinycolor.plugin.js'],
4344
options: {
4445
output: 'docs/'
4546
}

0 commit comments

Comments
 (0)