Skip to content

Commit

Permalink
Polishing
Browse files Browse the repository at this point in the history
  • Loading branch information
mraible committed Oct 24, 2016
1 parent 3db689b commit 85b18fc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions generators/app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ module.exports = yeoman.Base.extend({
checkJHVersion: function () {
var supportedJHVersion = packagejs.dependencies['generator-jhipster'];
if (jhipsterVar.jhipsterVersion && !semver.satisfies(jhipsterVar.jhipsterVersion, supportedJHVersion)) {
this.env.error(chalk.red.bold('ERROR!') + ` I support only JHipster versions greater than ${supportedJHVersion}...
If you want to use Stormpath with an older JHipster version, please contact [email protected].`);
this.env.error(chalk.red.bold('ERROR!') + ' I support only JHipster versions greater than ${supportedJHVersion}...');
this.env.error('If you want to use Stormpath with an older JHipster version, please contact [email protected].');
}

var security
Expand Down
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
var plumber = require('gulp-plumber');

gulp.task('static', function () {
return gulp.src('**/*.js')
return gulp.src('generators/app/index.js')
.pipe(excludeGitignore())
.pipe(eslint())
.pipe(eslint.format())
Expand Down

0 comments on commit 85b18fc

Please sign in to comment.