Skip to content

Commit ef5f1fc

Browse files
author
Thomas Hourlier
committed
Merge branch 'release/0.6.2'
2 parents 3f06e43 + 2be888d commit ef5f1fc

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

.eslintrc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"extends": "xo-space",
3+
"globals": {
4+
"describe": true,
5+
"it": true,
6+
"before": true,
7+
"beforeEach": true,
8+
"afterEach": true
9+
}
10+
}

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ var plumber = require('gulp-plumber');
1010
var coveralls = require('gulp-coveralls');
1111

1212
gulp.task('static', function () {
13-
return gulp.src('**/*.js')
13+
return gulp.src(['**/*.js', '!generators/**/templates/**/*.js'])
1414
.pipe(excludeGitignore())
1515
.pipe(eslint())
1616
.pipe(eslint.format())

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "generator-fullstack-react",
3-
"version": "0.6.1",
3+
"version": "0.6.2",
44
"description": "Fullstack react boilerplate production ready.",
55
"homepage": "https://github.com/hourliert/generator-fullstack-react",
66
"author": {
@@ -12,9 +12,6 @@
1212
"node": ">=5",
1313
"npm": ">=3.3 <4"
1414
},
15-
"files": [
16-
"generators"
17-
],
1815
"main": "generators/index.js",
1916
"keywords": [
2017
"yeoman-generator",
@@ -25,6 +22,10 @@
2522
"immutable",
2623
"boilerplate"
2724
],
25+
"files": [
26+
"generators",
27+
"helpers"
28+
],
2829
"dependencies": {
2930
"chalk": "^1.0.0",
3031
"lodash": "^4.6.1",

0 commit comments

Comments
 (0)