Display relative path to files in build output

Not just filenames
This commit is contained in:
Dan Stillman 2017-05-23 17:25:53 -04:00
parent 9cd0c5a674
commit 79ed9e8448

View File

@ -45,7 +45,7 @@ function getJS(source = jsGlob) {
.pipe(reactPatcher()) .pipe(reactPatcher())
.on('error', onError) .on('error', onError)
.on('data', file => { .on('data', file => {
onSuccess(`[js] ${path.basename(file.path)}`); onSuccess(`[js] ${file.path}`);
}) })
.pipe(gulp.dest('./build')); .pipe(gulp.dest('./build'));
} }
@ -65,7 +65,7 @@ function getJSParallel(source = jsGlob) {
} }
NODE_ENV == 'debug' && console.log(`process ${i} took ${ev.data.processingTime} ms to process ${ev.data.sourcefile}`); NODE_ENV == 'debug' && console.log(`process ${i} took ${ev.data.processingTime} ms to process ${ev.data.sourcefile}`);
NODE_ENV != 'debug' && onSuccess(`[js] ${path.basename(ev.data.sourcefile)}`); NODE_ENV != 'debug' && onSuccess(`[js] ${ev.data.sourcefile}`);
if(ev.data.isSkipped) { if(ev.data.isSkipped) {
NODE_ENV == 'debug' && console.log(`process ${i} SKIPPED ${ev.data.sourcefile}`); NODE_ENV == 'debug' && console.log(`process ${i} SKIPPED ${ev.data.sourcefile}`);
@ -99,7 +99,7 @@ function getSymlinks() {
.src(match, { nodir: true, base: '.', read: false }) .src(match, { nodir: true, base: '.', read: false })
.on('error', onError) .on('error', onError)
.on('data', file => { .on('data', file => {
onSuccess(`[ln] ${path.basename(file.path)}`); onSuccess(`[ln] ${file.path.substr(__dirname.length + 1)}`);
}) })
.pipe(vfs.symlink('build/')); .pipe(vfs.symlink('build/'));
} }