Skip to content

Commit

Permalink
grunt'n like it's tennis season...
Browse files Browse the repository at this point in the history
  • Loading branch information
jmar777 committed Aug 26, 2013
1 parent 57be510 commit f28fe30
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -2,3 +2,4 @@
.DS_Store*
Thumbs.db
kwicks.sublime*
node_modules
26 changes: 26 additions & 0 deletions Gruntfile.js
@@ -0,0 +1,26 @@
module.exports = function(grunt) {
grunt.initConfig({
uglify: {
options: {
//banner: '/*! teamphoria.min.js <%= grunt.template.today("dd-mm-yyyy") %> */\n'
preserveComments: 'some'
},
dist: {
files: {
'jquery.kwicks.min.js': ['jquery.kwicks.js']
}
}
},
cssmin: {
css: {
src: 'jquery.kwicks.css',
dest: 'jquery.kwicks.min.css'
}
}
});

grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-cssmin');

grunt.registerTask('default', ['uglify', 'cssmin']);
};
9 changes: 9 additions & 0 deletions package.json
@@ -0,0 +1,9 @@
{
"name": "Kwicks",
"version": "0.0.0-ignored",
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-uglify": "~0.2.2",
"grunt-contrib-cssmin": "~0.6.1"
}
}

0 comments on commit f28fe30

Please sign in to comment.