Takayuki Sato
Takayuki Sato
This is a sample: ```sh $ cat .gulp.js module.exports = { log: { theme: require('./my-theme'), messages: require('./my-msgs'), } }; $ cat my-theme.json { "ICON": "🥤", "VERSION": "{bold: {magenta: {1}}}", "TIMESTAMP":...
@phated Thanks. HTML files (and other files in `docs/html`) are sample documents to configure themes and messages. It's not necessary and use as refernece of Gulp document.
@phated I created a new branch in my repository, which was based on the current master (v2.2.1), was merged with the change of this PR except `doc/html`, and was modified...
@phated I've updated! > would you want to include your gulp libraries inside the gulpjs organization? Yeah, it's good. I'd like to include [copy-props](https://github.com/sttk/copy-props), [each-props](https://github.com/sttk/each-props) and [theming-log](https://github.com/sttk/theming-log) into gulp organization.
I forgot to test about #177, and did it.
This issue is due to `micromatch` which is used in `chokidar`.
@marcofugaro Now we consider that gulp-cli enable to customize colors and messages of logs. If it is achieved, gulp-cli will be able to output an empty line too instead of...
@phated To do that, we should modify `lib/shared/log/log-levels.js` in PR #161 as follows: * L33: `log.on(level, console.error);` → `log.on(function(s) { if (s) console.error(s): });` * L35: `log.on(level, console.log);` → `log.on(function(s)...
@phated I think this find-up behavior is helpful when a user works in a directory which is a sub directory but not a sub project of a project, so I...
@phated I've just merged v2.0.1 to my repository, and I'm going to address this issue from now.