Skip to content

Commit

Permalink
Add missing deps
Browse files Browse the repository at this point in the history
  • Loading branch information
jfelsinger committed Jan 24, 2015
1 parent 477f0c1 commit 3b9a6e5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/templates/_gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ gulp.task('fonts', function() {
.pipe(gulp.dest(dir.dist + '/fonts/'));
});

gulp.task('watch', ['app', 'client'], function() {
gulp.task('watch', ['client'], function() {

// Watch client scripts
gulp.watch(dir.client + '/scripts/**/*.js', ['clientScripts']);
Expand Down
6 changes: 4 additions & 2 deletions app/templates/_package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@
"express": "^4.3.1",
"express-session": "^1.2.1",
"express-layout": "^0.1.0",
"hbs": "^2.7.0",
"swag": "^0.7.0",
"hbs": "^2.7.0",<% if (includes.swag) { %>
"swag": "^0.7.0",<% } if (includes.i18n) { %>
"i18n": "^0.5.0",<% } if (includes.moment) { %>
"moment": "^2.9.0",<% } %>
"cookie-parser": "^1.1.0",
"debug": "^2.1.1",
"method-override": "^1.0.2",
Expand Down
3 changes: 2 additions & 1 deletion app/templates/config/express.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ var express = require('express'),
methodOverride = require('method-override'),
flash = require('connect-flash'),
session = require('express-session'),
parallel = require('../lib/parallel'),
parallel = require('../lib/parallel'),<% if (includes.i18n) { %>
i18n = require('i18n'),<% } %>
passport = require('passport');

var config = require('./config');
Expand Down

0 comments on commit 3b9a6e5

Please sign in to comment.