Skip to content

Commit

Permalink
Moving grunt into a "build" directory, so that it doesn't confuse dow…
Browse files Browse the repository at this point in the history
…nloadees.
  • Loading branch information
srobbin committed Nov 27, 2012
1 parent c71b20a commit 0d5ee64
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions grunt.js → build/grunt.js
Expand Up @@ -13,21 +13,21 @@ module.exports = function(grunt) {
},
concat: {
dist: {
src: ['<banner:meta.banner>', '<file_strip_banner:src/<%= pkg.name %>.js>'],
dest: '<%= pkg.name %>.js'
src: ['<banner:meta.banner>', '<file_strip_banner:../src/<%= pkg.name %>.js>'],
dest: '../<%= pkg.name %>.js'
}
},
min: {
dist: {
src: ['<banner:meta.banner>', '<config:concat.dist.dest>'],
dest: '<%= pkg.name %>.min.js'
dest: '../<%= pkg.name %>.min.js'
}
},
qunit: {
files: ['test/**/*.html']
files: ['../test/**/*.html']
},
lint: {
files: ['grunt.js', 'src/**/*.js', 'test/**/*.js']
files: ['grunt.js', '../src/**/*.js', '../test/**/*.js']
},
watch: {
files: '<config:lint.files>',
Expand Down
4 changes: 2 additions & 2 deletions package.json → build/package.json
Expand Up @@ -2,7 +2,7 @@
"name": "jquery.backstretch",
"title": "Backstretch",
"description": "A simple jQuery plugin that allows you to add a dynamically-resized, slideshow-capable background image to any page or element.",
"version": "2.0.1",
"version": "2.0.2",
"homepage": "http://srobbin.com/jquery-plugins/backstretch/",
"author": {
"name": "Scott Robbin",
Expand All @@ -23,7 +23,7 @@
}
],
"dependencies": {
"jquery": ">= 1.6"
"jquery": ">= 1.7"
},
"keywords": []
}

0 comments on commit 0d5ee64

Please sign in to comment.