Karl Hepler
Karl Hepler
Thanks. If I figure it out somehow, I’ll submit a PR. Hopefully someone else can beat me to it! ;-)
I haven't looked through it yet, but Facebook's `create-react-app` does this with their dev utils and might be a good resource to lead us in the right direction. https://github.com/facebook/create-react-app/blob/master/packages/react-dev-utils/openBrowser.js
I'm having the same issue. From what I've found, the default functionality is to add the auth token in `.npmrc`, but Yarn 3.x doesn't use `.npmrc`. The credentials need to...
@hjylewis - After merging your pull request and reviewing this issue on the plunkr link you provided, it looks like this is no longer an issue. Would you please confirm...
This one is pretty tricky. I worked on it a bit tonight and didn't really get anywhere.
I haven't tried it yet, but it looks like you are using those new fancy arrow functions, which implicitly binds "this" to the parent object. I think, but I'm not...
@tohagan I think your ideas are great. I'll see what I can do about working them in.
I just found a neat work-around for this. ``` tmp="$(mktemp -d)" touch "$tmp/WORKSPACE" ln WORKSPACE "$tmp/BUILD" buildozer -root_dir="$tmp" '' //: rm -rf "$tmp" ```
This works too, but I'm not sure why I have to use `echo`. I feel like I should be able to redirect the output directly to `WORKSPACE`, but it doesn't...