diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-12-08 21:12:49 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-12-08 21:12:49 +0900 |
| commit | c88097298f204bcd3f181e84e0028b2ec0a39814 (patch) | |
| tree | ac1e0af503046706fd863693c63e49f16d288e6f /gulpfile.ts | |
| parent | Refactor (diff) | |
| download | sharkey-c88097298f204bcd3f181e84e0028b2ec0a39814.tar.gz sharkey-c88097298f204bcd3f181e84e0028b2ec0a39814.tar.bz2 sharkey-c88097298f204bcd3f181e84e0028b2ec0a39814.zip | |
Display Exif
Diffstat (limited to 'gulpfile.ts')
| -rw-r--r-- | gulpfile.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gulpfile.ts b/gulpfile.ts index cb72272130..641500bbe2 100644 --- a/gulpfile.ts +++ b/gulpfile.ts @@ -3,6 +3,7 @@ */ import * as childProcess from 'child_process'; +import * as fs from 'fs'; import * as Path from 'path'; import * as gulp from 'gulp'; import * as gutil from 'gulp-util'; @@ -180,7 +181,9 @@ gulp.task('build:client:pug', [ .pipe(pug({ locals: { themeColor: constants.themeColor, - facss: fontawesome.dom.css() + facss: fontawesome.dom.css(), + //hljscss: fs.readFileSync('./node_modules/highlight.js/styles/default.css', 'utf8') + hljscss: fs.readFileSync('./src/web/assets/code-highlight.css', 'utf8') } })) .pipe(htmlmin({ |