Skip to content

Commit

Permalink
cleaned up for jshint + created release versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Shae Kuronen committed Apr 4, 2014
1 parent 7153adb commit 66715cd
Show file tree
Hide file tree
Showing 7 changed files with 641 additions and 294 deletions.
2 changes: 1 addition & 1 deletion .jshintrc
Expand Up @@ -7,7 +7,7 @@
"immed": true,
"noarg": true,
"onevar": true,
"quotmark": "double",
"quotmark": "single",
"smarttabs": true,
"trailing": true,
"unused": true,
Expand Down
12 changes: 6 additions & 6 deletions Gruntfile.js
Expand Up @@ -20,8 +20,8 @@ module.exports = function(grunt) {
// Concat definitions
concat: {
dist: {
src: ["src/jquery.boilerplate.js"],
dest: "dist/jquery.boilerplate.js"
src: ["src/jquery.flexloader.js"],
dest: "dist/jquery.flexloader.js"
},
options: {
banner: "<%= meta.banner %>"
Expand All @@ -30,7 +30,7 @@ module.exports = function(grunt) {

// Lint definitions
jshint: {
files: ["src/jquery.boilerplate.js"],
files: ["src/jquery.flexloader.js"],
options: {
jshintrc: ".jshintrc"
}
Expand All @@ -40,16 +40,16 @@ module.exports = function(grunt) {
copy: {
main: {
files: [
{expand: true, src: ['src/jquery.boilerplate.js'], dest: 'dist/jquery.boilerplate.js', filter: 'isFile'}
{expand: true, src: ['src/jquery.flexloader.js'], dest: 'dist/jquery.flexloader.js', filter: 'isFile'}
]
}
},

// Minify definitions
uglify: {
my_target: {
src: ["dist/jquery.boilerplate.js"],
dest: "dist/jquery.boilerplate.min.js"
src: ["dist/jquery.flexloader.js"],
dest: "dist/jquery.flexloader.min.js"
},
options: {
banner: "<%= meta.banner %>"
Expand Down
66 changes: 0 additions & 66 deletions dist/jquery.boilerplate.js

This file was deleted.

9 changes: 0 additions & 9 deletions dist/jquery.boilerplate.min.js

This file was deleted.

0 comments on commit 66715cd

Please sign in to comment.