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

Commit

Permalink
Merge pull request #40 from kevee/releases
Browse files Browse the repository at this point in the history
Pull for 2.0.3 release
  • Loading branch information
Kevin Miller committed Aug 5, 2013
2 parents e697466 + 1ff6f7c commit cb8755e
Show file tree
Hide file tree
Showing 7 changed files with 474 additions and 237 deletions.
15 changes: 10 additions & 5 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ module.exports = function(grunt) {
banner: '<%= concat.options.banner %>'
},
dist: {
src: ['src/quail.js'],
dest: 'src/quail.min.js'
files : {
'src/quail.min.js' : 'src/quail.js'
}
}
},
qunit: {
Expand Down Expand Up @@ -55,12 +56,16 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-watch');

// Release task.

// Linting, mostly to test JSON.
grunt.registerTask('lint', ['jshint']);

// By default, just run tests
grunt.registerTask('default', ['test']);

// Release task.
grunt.registerTask('release', ['jshint', 'qunit', 'uglify']);

// Test task.
grunt.registerTask('test', ['jshint', 'qunit']);
};
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ Documentation

[Full documentation is available via readthedocs.org](https://quail.readthedocs.org/en/latest/).

Contributing
------------
Pull requests should be made against the **dev** branch, as master is only for tracking releases.

Credits
-------

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "quail",
"description": "A javascript content accessibility checker.",
"homepage": "http://quailjs.org",
"version": "0.0.0-ignored",
"version": "2.0.3",
"engines": {
"node": ">= 0.6.0"
},
Expand Down
2 changes: 1 addition & 1 deletion quail.jquery.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"homepage" : "http://quailjs.org",
"docs" : "http://quail.readthedocs.org/en/latest/",
"demo" : "http://quailjs.org/examples/",
"version" : "2.0.1",
"version" : "2.0.3",
"author" : {
"name" : "Kevin Miller",
"email" : "[email protected]",
Expand Down
2 changes: 1 addition & 1 deletion quail.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "quail",
"title": "Quail",
"description": "QUAIL Accessibility Information Library.",
"version": "2.0",
"version": "2.0.3",
"homepage": "https://github.com/kevee/quail",
"author": {
"name": "Kevin Miller",
Expand Down
2 changes: 1 addition & 1 deletion src/quail.min.js

Large diffs are not rendered by default.

Loading

0 comments on commit cb8755e

Please sign in to comment.