Skip to content

Commit 59e1b00

Browse files
committed
2 parents 43920ff + 8e6b1a9 commit 59e1b00

6 files changed

Lines changed: 12 additions & 7 deletions

File tree

app/templates/Gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ module.exports = function (grunt) {
349349
files: [{
350350
expand: true,
351351
cwd: '.tmp/concat',
352-
src: '*/**.js',
352+
src: '**/*.js',
353353
dest: '.tmp/concat'
354354
}]
355355
}

app/templates/_package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"lodash": "~3.9.3",<% if(filters.jade) { %>
1616
"jade": "~1.2.0",<% } %><% if(filters.html) { %>
1717
"ejs": "~0.8.4",<% } %><% if(filters.mongoose) { %>
18-
"mongoose": "~3.8.8",<% } %><% if(filters.auth) { %>
18+
"mongoose": "~4.0.3",<% } %><% if(filters.auth) { %>
1919
"jsonwebtoken": "^5.0.0",
2020
"express-jwt": "^3.0.0",
2121
"passport": "~0.2.0",
@@ -24,7 +24,7 @@
2424
"passport-twitter": "latest",<% } %><% if(filters.googleAuth) { %>
2525
"passport-google-oauth": "latest",<% } %>
2626
"composable-middleware": "^0.3.0",
27-
"connect-mongo": "^0.4.1"<% if(filters.socketio) { %>,
27+
"connect-mongo": "^0.8.1"<% if(filters.socketio) { %>,
2828
"socket.io": "^1.0.6",
2929
"socket.io-client": "^1.0.6",
3030
"socketio-jwt": "^3.0.0"<% } %>

app/templates/client/.jshintrc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,10 @@
77
"curly": true,
88
"eqeqeq": true,
99
"immed": true,
10-
"indent": 2,
1110
"latedef": true,
1211
"newcap": true,
1312
"noarg": true,
1413
"quotmark": "single",
15-
"regexp": true,
1614
"undef": true,
1715
"unused": true,
1816
"strict": true,

app/templates/server/.jshintrc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
"latedef": "nofunc",
88
"newcap": true,
99
"noarg": true,
10-
"regexp": true,
1110
"undef": true,
1211
"smarttabs": true,
1312
"asi": true,

contributing.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ Additionally for this generator:
1010
* When submitting a bugfix, write a test that exposes the bug and fails before applying your fix. Submit the test alongside the fix.
1111
* When submitting a new feature, add tests that cover the feature.
1212

13+
To run the generator:
14+
1. Clone it and `cd` to its root
15+
2. `npm install`
16+
3. `npm link` (tells NPM to look to your own version)
17+
4. `yo angular-fullstack` as normal. It should run from your cloned version rather than the one downloaded from NPM.
18+
1319
## Git Commit Guidelines
1420

1521
These rules are adopted from the AngularJS project.

readme.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# 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)
1+
# AngularJS Full-Stack generator
2+
[![Build Status](https://travis-ci.org/DaftMonk/generator-angular-fullstack.svg?branch=master)](http://travis-ci.org/DaftMonk/generator-angular-fullstack) ![](https://david-dm.org/daftmonk/generator-angular-fullstack.png) [![Gitter chat](https://badges.gitter.im/gitterHQ/gitter.png)](https://gitter.im/DaftMonk/generator-angular-fullstack)
23

34
> Yeoman generator for creating MEAN stack applications, using MongoDB, Express, AngularJS, and Node - lets you quickly set up a project following best practices.
45
@@ -57,6 +58,7 @@ A grunt task looks for new files in your `client/app` and `client/components` fo
5758
* `css` files into `client/index.html`
5859
* `js` files into `client/index.html`
5960
* `coffeescript` temp `js` files into `client/index.html`
61+
* `babel` temp `js` files into `client/index.html`
6062

6163
## Generators
6264

0 commit comments

Comments
 (0)