Skip to content

Commit 950da47

Browse files
committed
Merge branch 'master' into canary
Conflicts: app/templates/Gruntfile.js app/templates/_bower.json test/fixtures/package.json
2 parents 499bc8d + 5c40db4 commit 950da47

File tree

5 files changed

+5
-6
lines changed

5 files changed

+5
-6
lines changed

Diff for: app/templates/Gruntfile.js

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ module.exports = function (grunt) {
1616
ngtemplates: 'grunt-angular-templates',
1717
cdnify: 'grunt-google-cdn',
1818
protractor: 'grunt-protractor-runner',
19-
injector: 'grunt-asset-injector',
2019
buildcontrol: 'grunt-build-control',
2120
istanbul_check_coverage: 'grunt-mocha-istanbul'
2221
});

Diff for: app/templates/_bower.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
"dependencies": {
55
"angular": ">=1.2.*",
66
"json3": "~3.3.1",
7-
"es5-shim": "~3.0.1",
8-
"jquery": "~1.11.0",<% if (filters.bootstrap) { %><% if (filters.sass) { %>
7+
"es5-shim": "~3.0.1",<% if(filters.bootstrap) { %><% if (filters.sass) { %>
98
"bootstrap-sass-official": "~3.1.1",<% } %>
109
"bootstrap": "~3.1.1",<% } %>
1110
"angular-resource": ">=1.2.*",

Diff for: app/templates/_package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"grunt-angular-templates": "^0.5.4",
6161
"grunt-dom-munger": "^3.4.0",
6262
"grunt-protractor-runner": "^1.1.0",
63-
"grunt-asset-injector": "^0.1.0",
63+
"grunt-injector": "~0.5.4",
6464
"grunt-karma": "~0.8.2",
6565
"grunt-build-control": "DaftMonk/grunt-build-control",<% if (filters.sass) { %>
6666
"grunt-contrib-sass": "^0.7.3",<% } %><% if (filters.stylus) { %>

Diff for: app/templates/server/routes.js

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

77
var errors = require('./components/errors');
8+
var path = require('path');
89

910
module.exports = function(app) {
1011

@@ -21,6 +22,6 @@ module.exports = function(app) {
2122
// All other routes should redirect to the index.html
2223
app.route('/*')
2324
.get(function(req, res) {
24-
res.sendfile(app.get('appPath') + '/index.html');
25+
res.sendFile(path.resolve(app.get('appPath') + '/index.html'));
2526
});
2627
};

Diff for: readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ Produces:
198198
client/app/myService/myService.service.spec.js
199199

200200

201-
You can also do `yo angular:factory` and `yo angular:provider` for other types of services.
201+
You can also do `yo angular-fullstack:factory` and `yo angular-fullstack:provider` for other types of services.
202202

203203
### Decorator
204204
Generates an AngularJS service decorator.

0 commit comments

Comments
 (0)