Skip to content

Commit 8e0904c

Browse files
committed
Merge branch 'master' of github.com:DaftMonk/generator-angular-fullstack
2 parents a7c787e + 82d6357 commit 8e0904c

File tree

6 files changed

+11
-3
lines changed

6 files changed

+11
-3
lines changed

Diff for: app/templates/_package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"morgan": "~1.0.0",
88
"body-parser": "~1.5.0",
99
"method-override": "~1.0.0",
10-
"static-favicon": "~1.0.1",
10+
"serve-favicon": "^2.0.1",
1111
"cookie-parser": "~1.0.1",
1212
"express-session": "~1.0.2",
1313
"errorhandler": "~1.0.0",

Diff for: app/templates/server/config/express.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
'use strict';
66

77
var express = require('express');
8-
var favicon = require('static-favicon');
8+
var favicon = require('serve-favicon');
99
var morgan = require('morgan');
1010
var compression = require('compression');
1111
var bodyParser = require('body-parser');

Diff for: contributing.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ See the [contributing docs](https://github.com/yeoman/yeoman/blob/master/contrib
44

55
Additionally for this generator:
66

7+
* Please submit PRs to the `canary` branch, it is the main development branch for this generator.
78
* When submitting an issue, please follow the [guidelines](https://github.com/yeoman/yeoman/blob/master/contributing.md#issue-submission). Especially important is to make sure Yeoman is up-to-date, and providing the command or commands that cause the issue.
89
* When submitting a PR, make sure that the commit messages match the [AngularJS conventions][commit-message-format] (see below).
910
* When submitting a bugfix, write a test that exposes the bug and fails before applying your fix. Submit the test alongside the fix.

Diff for: readme.md

+4
Original file line numberDiff line numberDiff line change
@@ -384,6 +384,10 @@ An example server component in `server/api`
384384

385385
See the [contributing docs](https://github.com/DaftMonk/generator-angular-fullstack/blob/master/contributing.md)
386386

387+
This project has 2 main branches: `master` and `canary`. The `master` branch is where the current stable code lives and should be used for production setups. The `canary` branch is the main development branch, this is where PRs should be submitted to (backport fixes may be applied to `master`).
388+
389+
By seperating the current stable code from the cutting-edge development we hope to provide a stable and efficient workflow for users and developers alike.
390+
387391
When submitting an issue, please follow the [guidelines](https://github.com/yeoman/yeoman/blob/master/contributing.md#issue-submission). Especially important is to make sure Yeoman is up-to-date, and providing the command or commands that cause the issue.
388392

389393
When submitting a PR, make sure that the commit messages match the [AngularJS conventions](https://docs.google.com/document/d/1QrDFcIiPjSLDn3EL15IJygNPiHORgU1_OOAqWjiDU5Y/).

Diff for: test/fixtures/.bowerrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"directory": "bower_components"
3+
}

Diff for: test/fixtures/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"morgan": "~1.0.0",
88
"body-parser": "~1.5.0",
99
"method-override": "~1.0.0",
10-
"static-favicon": "~1.0.1",
10+
"serve-favicon": "^2.0.1",
1111
"cookie-parser": "~1.0.1",
1212
"express-session": "~1.0.2",
1313
"errorhandler": "~1.0.0",

0 commit comments

Comments
 (0)