Konstantin Raev

Results 107 comments of Konstantin Raev

wait a minute. ``` function () { cwd: 'node_modules/deploy-azure-cdn' }) ``` It should not be a function, just a JSON ``` gulp.task('upload-azure', function () { return gulp.src(['asserts/dist/*.css', 'asserts/dist/*.js'], { cwd:...

Did you try my last suggestion? The options with CWD should not be a function IMO

You tell me, @shaneprice, debugging is not native to node. Webstorm is quite good at it though, it can run node apps, give it a try. I would really appreciate...

@PWKad I would appreciate a PR and any improvements on the docs.

Hey guys, I have just published 2.0.0 version and it uses `base` parameter of vinyl files and uses an updated `deploy-azure-cdn` dependency. I wonder if it fixes the problem for...

Sure. Full disclosure, I don't completely understand what this `base` means in gulp. In your case I would do ``` return gulp.src(['public/assets/**'], { base: 'public' }).pipe(deployCdn({ containerName: 'my-comtainer', folder: 'path-in-container/'...

correct On 26 May 2017 at 13:28, Thomas Schaaf wrote: > @bestander https://travis-ci.org/ > thomaschaaf/npm-vs-yarn/jobs/236357125#L583 the real time is what is > interessting correct? > > — > You are...

@BYK, yes this totally makes sense to have a solution that addresses all these issues. Anyone who wants to improve Yarn feel free to send an RFC

@bdwain, once you have a solution in mind send an RFC and ping me

I have written a standalone script that reconstructs full node_modules in a given workspace that does the trick just to unblock my project. I am not a fan of adding...