Skip to content

Commit

Permalink
Merge pull request #1043 from kingcody/chore/port-fixes-from-master
Browse files Browse the repository at this point in the history
Port updates from master
  • Loading branch information
Awk34 committed Jul 8, 2015
2 parents 3fa30b7 + 2233ee9 commit 2a1f37a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion app/templates/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ module.exports = function (grunt) {
files: [{
expand: true,
cwd: '.tmp/concat',
src: '*/**.js',
src: '**/*.js',
dest: '.tmp/concat'
}]
}
Expand Down
14 changes: 7 additions & 7 deletions app/templates/_package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,18 @@
"morgan": "~1.0.0",
"body-parser": "~1.5.0",
"method-override": "~1.0.0",
"serve-favicon": "~2.0.1",
"cookie-parser": "~1.0.1",
"express-session": "~1.0.2",
"errorhandler": "~1.0.0",
"compression": "~1.0.1",
"composable-middleware": "^0.3.0",
"lodash": "~2.4.1",<% if(filters.babel) { %>
"babel-core": "^5.6.4",<% } %><% if (filters.jade) { %>
"jade": "~1.2.0",<% } %><% if (filters.html) { %>
"ejs": "~0.8.4",<% } %><% if (filters.mongoose) { %>
"mongoose": "~3.8.8",
"mongoose-bird": "~0.0.1",<% } %><% if (filters.sequelize) { %>
"mongoose": "~4.0.3",
"mongoose-bird": "~0.0.1",
"connect-mongo": "^0.8.1",<% } %><% if (filters.sequelize) { %>
"sequelize": "^2.0.0-rc2",
"sqlite3": "~3.0.2",<% } %><% if (filters.auth) { %>
"jsonwebtoken": "^5.0.0",
Expand All @@ -26,12 +27,11 @@
"passport-local": "~0.1.6",<% } %><% if (filters.facebookAuth) { %>
"passport-facebook": "latest",<% } %><% if (filters.twitterAuth) { %>
"passport-twitter": "latest",<% } %><% if (filters.googleAuth) { %>
"passport-google-oauth": "latest",<% } %>
"composable-middleware": "^0.3.0"<% if (filters.mongoose) { %>,
"connect-mongo": "^0.4.1"<% } %><% if (filters.socketio) { %>,
"passport-google-oauth": "latest",<% } %><% if (filters.socketio) { %>
"socket.io": "^1.0.6",
"socket.io-client": "^1.0.6",
"socketio-jwt": "^3.0.0"<% } %>
"socketio-jwt": "^3.0.0",<% } %>
"serve-favicon": "~2.0.1"
},
"devDependencies": {
"grunt": "~0.4.4",
Expand Down
3 changes: 2 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# AngularJS Full-Stack generator [![Build Status](https://travis-ci.org/DaftMonk/generator-angular-fullstack.svg?branch=master)](http://travis-ci.org/DaftMonk/generator-angular-fullstack) [![Gitter chat](https://badges.gitter.im/gitterHQ/gitter.png)](https://gitter.im/DaftMonk/generator-angular-fullstack)
# AngularJS Full-Stack generator
[![Build Status](https://travis-ci.org/DaftMonk/generator-angular-fullstack.svg?branch=master)](http://travis-ci.org/DaftMonk/generator-angular-fullstack) [![Dependency Status](https://david-dm.org/daftmonk/generator-angular-fullstack.png)](https://david-dm.org/daftmonk/generator-angular-fullstack) [![Gitter chat](https://badges.gitter.im/gitterHQ/gitter.png)](https://gitter.im/DaftMonk/generator-angular-fullstack)

> Yeoman generator for creating MEAN stack applications, using MongoDB, Express, AngularJS, and Node - lets you quickly set up a project following best practices.
Expand Down

0 comments on commit 2a1f37a

Please sign in to comment.