Skip to content

Commit

Permalink
Deploying version 0.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bradt committed Jan 30, 2015
1 parent 66765a5 commit 54a3e28
Show file tree
Hide file tree
Showing 13 changed files with 540 additions and 269 deletions.
21 changes: 21 additions & 0 deletions assets/.jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"boss": true,
"browser": true,
"curly": true,
"devel": true,
"eqeqeq": true,
"eqnull": true,
"es3": false,
"immed": true,
"jquery": true,
"latedef": true,
"maxerr": 10000,
"newcap": true,
"noarg": true,
"sub": true,
"undef": true,
"globals": {
"ajaxurl": true,
"as3cf_i18n": true
}
}
13 changes: 12 additions & 1 deletion assets/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@ module.exports = function(grunt) {

grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
jshint: {
all: [
'js/*.js',
'!js/*.min.js'
],
options: {
jshintrc: '.jshintrc',
force: true
}
},
uglify: {
build: {
files: {
Expand All @@ -27,10 +37,11 @@ module.exports = function(grunt) {
}
});

grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-compass');

grunt.registerTask('default', ['uglify','compass']);
grunt.registerTask('default', ['jshint','uglify','compass']);

};
2 changes: 1 addition & 1 deletion assets/css/styles.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 54a3e28

Please sign in to comment.