grunt-doctrine
Version:
Grunt plugin to convert doctrine xml annotations into backbone models and collections. Useful in conjunction with doctrine apigility. Includes option to scaffold an entire BBB application
59 lines (47 loc) • 1.24 kB
text/coffeescript
module.exports = ->
clean: ["test/build_tools/_output"]
jshint: ["loader.js"]
connect:
test:
options:
port: 7357
watch:
files: ["loader.js", "test/**/*", "Gruntfile.coffee"]
tasks: ["clear", "default"]
qunit:
test:
options:
urls: [
"http://localhost:7357/test/requirejs.html"
"http://localhost:7357/test/dojo.html"
"http://localhost:7357/test/curl.html"
]
requirejs:
test:
options:
baseUrl: "test/build_tools"
include: "r"
out: "test/build_tools/_output/r.js"
optimize: "none"
exclude: ["lodash", "ldsh"]
paths:
lodash: "../../bower_components/lodash/dist/lodash"
ldsh: "../../loader"
"grunt-contrib-jshint"
"grunt-contrib-watch"
"grunt-contrib-connect"
"grunt-contrib-qunit"
"grunt-contrib-clean"
"grunt-clear"
"grunt-contrib-requirejs"
"test", [
"clean"
"requirejs"
"qunit"
]
"default", [
"jshint"
"connect"
"test"
]