Skip to content

Commit

Permalink
Path fix for jison parser generation
Browse files Browse the repository at this point in the history
  • Loading branch information
knsv committed Jun 14, 2015
1 parent efb4e46 commit 14520e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gulp/tasks/jison.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ var shell = require('gulp-shell');
var jison = require('gulp-jison');

gulp.task('jison', function() {
return gulp.src('./src/*.jison')
return gulp.src('./src/**/*.jison')
.pipe(jison({ moduleType: 'commonjs' }))
.pipe(gulp.dest('./src/parser'));
.pipe(gulp.dest('./src/'));
});

gulp.task('jison_legacy', shell.task([
Expand Down

0 comments on commit 14520e8

Please sign in to comment.