From 0fd67b9cab9ed9bda195fad698514a2de65cf6a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Barrag=C3=A1n=20Merino?= Date: Thu, 21 Aug 2014 13:30:20 +0200 Subject: [PATCH] Fix the gulpfile --- bower.json | 3 +-- gulpfile.coffee | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/bower.json b/bower.json index 9c29c525..fc8af56a 100644 --- a/bower.json +++ b/bower.json @@ -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 } diff --git a/gulpfile.coffee b/gulpfile.coffee index c7b0cd18..4fe6e4a9 100644 --- a/gulpfile.coffee +++ b/gulpfile.coffee @@ -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)