Skip to content

Commit 2ce0004

Browse files
committed
Merge branch 'upstream_master'
Conflicts: CHANGELOG.md app/index.js package.json templates/common/Gruntfile.js templates/common/root/app/views/partials/main.html
2 parents 5ccdeb7 + 8d05eb5 commit 2ce0004

13 files changed

+2728
-1768
lines changed

Diff for: .travis.yml

+4
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,7 @@ language: node_js
22
node_js:
33
- '0.10'
44
- '0.8'
5+
before_install:
6+
- currentfolder=${PWD##*/}
7+
- if [ "$currentfolder" != 'generator-angular-fullstack' ]; then cd .. && eval "mv $currentfolder generator-angular-fullstack" && cd generator-angular-fullstack; fi
8+

Diff for: app/index.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ Generator.prototype.bootstrapFiles = function bootstrapFiles() {
231231
sourceFileList: files.map(function (file) {
232232
return 'styles/' + file.replace('.scss', '.css');
233233
}),
234-
searchPath: '.tmp'
234+
searchPath: ['.tmp', 'app']
235235
});
236236
};
237237

@@ -307,11 +307,17 @@ Generator.prototype.createIndexHtml = function createIndexHtml() {
307307
};
308308

309309
Generator.prototype.packageFiles = function () {
310+
this.coffee = this.env.options.coffee;
310311
this.template('../../templates/common/_bower.json', 'bower.json');
311312
this.template('../../templates/common/_package.json', 'package.json');
312313
this.template('../../templates/common/Gruntfile.js', 'Gruntfile.js');
313314
};
314315

316+
Generator.prototype.imageFiles = function () {
317+
this.sourceRoot(path.join(__dirname, 'templates'));
318+
this.directory('images', 'app/images', true);
319+
}
320+
315321
Generator.prototype.serverFiles = function () {
316322
this.template('../../templates/express/server.js', 'server.js');
317323
this.template('../../templates/express/api.js', 'lib/controllers/api.js');

Diff for: app/templates/fonts/glyphicons-halflings-regular.eot

100755100644
6.07 KB
Binary file not shown.

Diff for: app/templates/fonts/glyphicons-halflings-regular.svg

100755100644
+201-200
Loading

Diff for: app/templates/fonts/glyphicons-halflings-regular.ttf

100755100644
11.4 KB
Binary file not shown.

Diff for: app/templates/fonts/glyphicons-halflings-regular.woff

100755100644
6.68 KB
Binary file not shown.

Diff for: app/templates/images/yeoman.png

13.2 KB
Loading

0 commit comments

Comments
 (0)