grunt-couchapp/Gruntfile.js

63 lines
1.5 KiB
JavaScript
Raw Normal View History

"use strict";
var DEMO_COUCH_DB = "http://localhost:5984/grunt-couchapp-demo";
2012-08-10 01:34:00 +00:00
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
test: {
files: ["test/**/*.js"]
2012-08-10 01:34:00 +00:00
},
watch: {
files: "<config:lint.files>",
tasks: "default"
2012-08-10 01:34:00 +00:00
},
jshint: {
files: ["grunt.js", "tasks/**/*.js", "test/**/*.js"],
2012-08-10 01:34:00 +00:00
options: {
curly: true,
eqeqeq: true,
immed: true,
latedef: true,
newcap: true,
noarg: true,
sub: true,
undef: true,
boss: true,
eqnull: true,
node: true,
es5: true
},
globals: {}
},
mkcouchdb: {
demo: {
db: DEMO_COUCH_DB
}
},
rmcouchdb: {
demo: {
db: DEMO_COUCH_DB,
options: {
okay_if_missing: true
}
}
},
couchapp: {
demo: {
db: DEMO_COUCH_DB,
app: "./demo/app.js"
2012-08-10 01:34:00 +00:00
}
}
});
grunt.loadNpmTasks('grunt-contrib-jshint');
2012-08-10 01:34:00 +00:00
// Load local tasks.
grunt.loadTasks("tasks");
2012-08-10 01:34:00 +00:00
// Default task.
grunt.registerTask("default", ["jshint", "test"]);
grunt.registerTask("demo", "rmcouchdb:demo mkcouchdb:demo couchapp:demo");
2012-08-10 01:34:00 +00:00
};