We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Gulp-crisper is great but it would be even more awesome if it had support for sourcemaps generation.
For instance I should be able to do this:
gulp.task('separateJS', function () { return gulp.src(['app/**/*.html']) .pipe($.sourcemaps.init()) .pipe($.crisper()) // Extract JS from .html files .pipe($.sourcemaps.write('.')) .pipe(gulp.dest('dist/')) });
Some docs for you: https://www.npmjs.com/package/gulp-sourcemaps#plugin-developers-only-how-to-add-source-map-support-to-plugins
The text was updated successfully, but these errors were encountered:
/sub
Sorry, something went wrong.
FYI I filed PolymerLabs/crisper#14 asking to add sourcemaps generation support in the Crisper binary. Seems like you need it first.
Yes, I need supporting of vulcanize bin and then I can pass a source map file stream out
No branches or pull requests
Gulp-crisper is great but it would be even more awesome if it had support for sourcemaps generation.
For instance I should be able to do this:
Some docs for you: https://www.npmjs.com/package/gulp-sourcemaps#plugin-developers-only-how-to-add-source-map-support-to-plugins
The text was updated successfully, but these errors were encountered: