commit 79ed9e8448690686169407695a0f13d4c3f96c4d
parent 9cd0c5a6749a14f57450d185497b562a57251c6c
Author: Dan Stillman <dstillman@zotero.org>
Date: Tue, 23 May 2017 17:25:53 -0400
Display relative path to files in build output
Not just filenames
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gulpfile.js b/gulpfile.js
@@ -45,7 +45,7 @@ function getJS(source = jsGlob) {
.pipe(reactPatcher())
.on('error', onError)
.on('data', file => {
- onSuccess(`[js] ${path.basename(file.path)}`);
+ onSuccess(`[js] ${file.path}`);
})
.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' && onSuccess(`[js] ${path.basename(ev.data.sourcefile)}`);
+ NODE_ENV != 'debug' && onSuccess(`[js] ${ev.data.sourcefile}`);
if(ev.data.isSkipped) {
NODE_ENV == 'debug' && console.log(`process ${i} SKIPPED ${ev.data.sourcefile}`);
@@ -99,7 +99,7 @@ function getSymlinks() {
.src(match, { nodir: true, base: '.', read: false })
.on('error', onError)
.on('data', file => {
- onSuccess(`[ln] ${path.basename(file.path)}`);
+ onSuccess(`[ln] ${file.path.substr(__dirname.length + 1)}`);
})
.pipe(vfs.symlink('build/'));
}