gulp-rigger
gulp-rigger copied to clipboard
Javascript file parser and include engine #buildjs #node http://buildjs.github.io/rigger
TypeError: First argument must be a string, Buffer, ArrayBuffer, Array, or array-like object. at fromObject (buffer.js:262:9) at Function.Buffer.from (buffer.js:101:10) at new Buffer (buffer.js:80:17) at C:\Users\*\alinabolat.com\node_modules\gulp-rigger\index.js:20:29 at Rigger. (C:\Users\*\alinabolat.com\node_modules\rigger\index.js:719:9) at emitOne...
I had a gulp 3 configuration with gulp-plumber as error handler (so current running task never crashes) and also had a gulp-notify as a message alert to system in a...
TypeError: Cannot read property 'toString' of null at /Users/username/Code/project/node_modules/gulp-rigger/index.js:19:37
Возможно это из-за большого кол-ва файлов. Таск отрабатывает: ``` gulp.task('html', function () { gulp.src('app/pages/*.html') .pipe(rigger()) .pipe(gulp.dest('app/')) .pipe(browsersync.reload( {stream: true} )) }); ``` **вот консоль:** _[20:06:02] Starting 'html'... [20:06:02] Finished 'html'...
Faced with a problem of `RangeError: Maximum call stack size exceeded`. Took a look into the versions of dependent rigger version and it's:`"gulp-rigger": "^0.5.8"` and i found it totally out...
buffer.js:68 throw new TypeError('must start with number, buffer, array or string'); ^ TypeError: must start with number, buffer, array or string at new Buffer (buffer.js:68:11) at D:\SERVER_U2\frontend\esterfurs\node_modules\gulp-rigger\index.js:23:29 at Rigger. (D:\SERVER_U2\frontend\esterfurs\node_modules\gulp-rigger\node_modules\rigger\index.js:719:9)...
It is not clear what your plugin does without any documentation except of just obvious `gulp` settings.
When I write comments like **/* ========= */** into file where I try to load another scripts (with using **//= path/to/file.js**) I catch the next error: ``` buffer.js:247 throw new...
Crash happens when I include files with other extensions than the original. ## main.txt //= part1.doc //= part2.txt I'd rather not have such restrictions. Is it possible?
Gulp-rigger doesnt work with gulp-plumber. Buffer.js:67 error appears. ``` javascript var gulp = require('gulp'), plumber = require('gulp-plumber'), rigger = require('gulp-rigger'); var onError = function(err) { notify.onError({message: "Failed\n", sound: true})(err); this.emit('end');...