gulp-parcel icon indicating copy to clipboard operation
gulp-parcel copied to clipboard

Command line compilation plugin for gulp.js

Results 9 gulp-parcel issues
Sort by recently updated
recently updated
newest added

1. Return error with the callback, enabling gulp watch to continue when there is an error. 2. Output sourceMap file

Using parcel's output instead of one-off handling ('pug' --> 'html'). I was using other source files (not '.pug') so they came out with their source extension instead of the expected...

```javascript import('mediabox/dist/mediabox.min.css'); import('mediabox'); ``` ```javascript gulp.task('javascript', () => { gulp.src('source', { read: false }) .pipe(_.parcel({ minify: true, outDir: 'dest', })) .pipe(gulp.dest('dest')); }); ``` ## Error: ![image](https://user-images.githubusercontent.com/10743009/50551652-6bd08980-0c95-11e9-9ba4-201d375e3cd9.png) ## Dist folder: ![image](https://user-images.githubusercontent.com/10743009/50551644-3d52ae80-0c95-11e9-86b7-c8bc769c7717.png)...

Update parcel bundler package Fixes #12

Fix for the issue, [How to specify port ](https://github.com/zacky1972/gulp-parcel/issues/7) Enhanced the library to support parcel options **serve, port & sourceMaps** **Code Snippet** ``` const gulp = require("gulp"); const parcel =...

The following gulpfile.coffee with `gulp parcel` makes html files point to temporary files as links to CSS and JS. ```coffee gulp.task 'parcel', () -> gulp.src 'build/**/*.html', {read:false} .pipe parcel() .pipe...

bug

Hello I seem to be throwing errors even though compliation seems to be happending correctly this: ``` gulp.src('_scss/main.scss', {read:false}) .pipe( parcel( { outDir: 'dist' } ) ) .pipe( gulp.dest('dist') )...

For example take a.ts as the entry file The compiled output file is a.js not a.ts, which leads to exception.