Questions tagged [gulp-print]

4 questions
7
votes
2 answers

gulp : "TypeError: print is not a function"

I am trying to build Semantic-UI with gulp in a directory, but I get having these errors : root@ks4000003:/var/www/mg.guylabbe.ca/web/inc/semantic# gulp build [10:36:53] Using gulpfile…
guylabbe.ca
  • 871
  • 2
  • 11
  • 21
2
votes
2 answers

gulp-foreach not looping over all files

I have a very basic usage of gulp-foreach that's failing so badly I imagine I must be doing something wrong; I'm just (for now) trying to print all files found in gulp.src. When doing this with gulp-foreach only a very, very small sample of the…
Adam Rackis
  • 82,527
  • 56
  • 270
  • 393
1
vote
2 answers

Passing a variable between pipes in Gulp 3.9.1

Using gulp 3.9.1 I am attempting to return a bunch of files and perform a task that requires a var to be passed between two pipes. I'm using node uuid to create a v3 UUID for each file path to ultimately end up with a uuid for each page. I'm…
Greg
  • 155
  • 11
0
votes
1 answer

Basic JavaScript string equality failing in Gulp

I have this gulp task gulp.src([`../../**/*.js`].concat(dontCheck.map(p => '!../../' + p))) .pipe(gulpPrint(path => { let adjusted = path.replace('..\\..\\', '').replace(/\\/g, '/'); let target = 'account/account.js'; if…
Adam Rackis
  • 82,527
  • 56
  • 270
  • 393