Skip to content

Commit 7cea6f1

Browse files
committed
2 parents 106b9a8 + 8f99a8f commit 7cea6f1

File tree

6 files changed

+34
-6
lines changed

6 files changed

+34
-6
lines changed

Diff for: CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
<a name="3.1.1"></a>
2+
## [3.1.1](https://github.com/DaftMonk/generator-angular-fullstack/compare/3.1.0...v3.1.1) (2015-12-15)
3+
4+
5+
### Bug Fixes
6+
7+
* client:auth.decorator: fix Auth.isLoggedIn not having a noop arg ([0e9f302](https://github.com/angular-fullstack/generator-angular-fullstack/commit/0e9f3025fbe69c8613435e59d028cf6ce9b0e9e4))
8+
9+
10+
<a name="3.1.0"></a>
11+
## [3.1.0](https://github.com/DaftMonk/generator-angular-fullstack/compare/3.0.2...v3.1.0) (2015-12-13)
12+
13+
14+
### Bug Fixes
15+
16+
* **client:auth:** fix auth 'decorator' ([56d12fc](https://github.com/DaftMonk/generator-angular-fullstack/commit/56d12fc)), closes [#1492](https://github.com/DaftMonk/generator-angular-fullstack/issues/1492)
17+
* **gulp:**
18+
* add babel runtime options ([0a9afa1](https://github.com/DaftMonk/generator-angular-fullstack/commit/0a9afa1))
19+
* update gulp.src in build:client ([6f4d3b0](https://github.com/DaftMonk/generator-angular-fullstack/commit/6f4d3b0))
20+
* **navbar:** fix controller constructor with ng-route + auth ([4b59e1f](https://github.com/DaftMonk/generator-angular-fullstack/commit/4b59e1f)), closes [#1462](https://github.com/DaftMonk/generator-angular-fullstack/issues/1462)
21+
22+
### Features
23+
24+
* **admin:** spruce up the look of the user list ([38bb6b8](https://github.com/DaftMonk/generator-angular-fullstack/commit/38bb6b8))
25+
* **gulp:** add experimental Gulp support ([c70fd47](https://github.com/DaftMonk/generator-angular-fullstack/commit/c70fd47)) `yo angular-fullstack --gulp`
26+
27+
128
<a name="3.0.2"></a>
229
## [3.0.2](https://github.com/DaftMonk/generator-angular-fullstack/compare/3.0.1...3.0.2) (2015-12-05)
330

Diff for: app/generator.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ export default class Generator extends Base {
145145

146146
this.scriptExt = answers.script === 'coffee' ? 'coffee' : 'js';
147147
this.templateExt = answers.markup;
148-
this.styleExt = answers.stylesheet;
148+
this.styleExt = answers.stylesheet === 'sass' ? 'scss' : answers.stylesheet;
149149

150150
cb();
151151
}.bind(this));

Diff for: app/templates/_package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,9 @@
160160
"npm": "^2.14.7"
161161
},
162162
"scripts": {
163-
"start": "node server",
164-
"test": "<%= filters.grunt ? 'grunt' : 'gulp' %> test",
163+
"start": "node server",<% if(filters.gulp) { %>
164+
"test": "gulp test",<% } else { %>
165+
"test": "grunt test",<% } %>
165166
"update-webdriver": "node node_modules/grunt-protractor-runner/node_modules/protractor/bin/webdriver-manager update"
166167
},
167168
"private": true

Diff for: app/templates/client/components/auth(auth)/router.decorator.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ angular.module('<%= scriptAppName %>.auth')
1717
}
1818

1919
event.preventDefault();
20-
return Auth.isLoggedIn().then(is => {<% if (filters.ngroute) { %>
20+
return Auth.isLoggedIn(_.noop).then(is => {<% if (filters.ngroute) { %>
2121
$location.path(is ? '/' : '/login');<% } if (filters.uirouter) { %>
2222
$state.go(is ? 'main' : 'login');<% } %>
2323
});

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "generator-angular-fullstack",
3-
"version": "3.0.2",
3+
"version": "3.1.1",
44
"description": "Yeoman generator for creating MEAN stack applications, using MongoDB, Express, AngularJS, and Node",
55
"keywords": [
66
"yeoman-generator",

0 commit comments

Comments
 (0)