Blaine Bublitz

Results 267 comments of Blaine Bublitz

@donpedro Sorry for not following up here quickly, I've been traveling extensively and haven't had much time to dive in deeply. I definitely think we can use some help on...

@pixeldesu Yeah, I think that it is probably best to give feedback with PR review. There are some things that we might need to drop until further work is done,...

Hey @ray007 Does that file exist before you run the `gulp.src`? It sounds like it does but I just wanted to check. gulp 4 doesn't support singular globs that don't...

There's also a long-standing issue on node-glob about UNC paths: https://github.com/isaacs/node-glob/issues/74 There's a possible solution at https://github.com/isaacs/node-glob/issues/74#issuecomment-369860520 which says to set the `cwd` option to your UNC base. I just...

@ray007 can you try this: ```js var glob = require('glob'); console.log(glob.sync('//server.domain.name/share/some/folders/manual.doc')); ```

@ray007 thanks for testing those out. It seems that `glob` breaks when the path is absolute but it's actually pointing at a UNC server path. And we make all paths...

@ray007 yeah, unfortunately making all paths absolute is a thing we **must** do. I forget exactly what it solves but it was something important.

@sttk I think we should avoid logging any line that is "falsey" so they can set the theming to `false` to disable.

I am unable to replicate this. Can someone provide a repository and specific instructions on how to reproduce?

Interesting project. I will consider this but we'd also have to add `node_modules` to the package.json `files` array, I think.