Fix the gulpfile

stable
David Barragán Merino 2014-08-21 13:30:20 +02:00
parent b5a15c803a
commit 0fd67b9cab
2 changed files with 2 additions and 3 deletions

View File

@ -75,8 +75,7 @@
"resolutions": {
"lodash": "~2.4.1",
"moment": "~2.6.0",
"jquery": "~2.1.1",
"angular": "1.2.21"
"jquery": "~2.1.1"
},
"private": true
}

View File

@ -211,7 +211,7 @@ gulp.task "express", ->
app.all "/*", (req, res, next) ->
# Just send the index.html for other files to support HTML5Mode
res.sendfile("index.html", {root: "#{__dirname}/dist/"})
res.sendFile("index.html", {root: "#{__dirname}/dist/"})
app.listen(9001)