e-jigsaw / gulp-riot

gulp plugin for riot

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

none of the option works

duongphuhiep opened this issue · comments

none of the option works, am I missing something?

var gulp = require('gulp');
var gp_riot = require('gulp-riot');

 gulp.task('compile:tag', function(){
     return gulp.src(['app/**/*.tag'])
         .pipe(gp_riot({modular: true}))
         .pipe(gulp.dest('gen'));
 });

Here I expected to make each .tag a module, but it still generate the plain one line javascript

riot.tag('language-selector'....

I'm using riot 2.2.4

@duongphuhiep Thanks your report. I will check it out.

@duongphuhiep I checked your gulpfile. And code is generate with tagger codes. Could you show all of .tag code? Thanks

The option is not working so I don't use option in my project so far:
https://github.com/duongphuhiep/hcqh/tree/master/app
You can create a project

The option is not working so I don't use option in my project so far:
https://github.com/duongphuhiep/hcqh/tree/master/app
You can create a simple project to reproduce the problem (i can do it later to show you)

It seem that some compiler options are now handled by the riot client tools, not by the riot compiler that gulp-riot is using

(I read the code of 2.2.4, but I might mistaken)

@duongphuhiep Whoops, You are using gulp-riot@0.2.18. Modular options are added v0.3.0. You should upgrade gulp-riot version.

ok, thanks!