Brian Beck

Results 69 comments of Brian Beck

@ryan-roemer I'll take a swing at it tonight.

To bring the earlier PR discussion here, here's why I think it would be cool if you could override files (`webpack.config.js` included) without needing to override all the `scripts` that...

I think we should just go with the simple & strict design for the initial release – it's forwards-compatible with this feature being considered in the future anyway. But FWIW,...

@chaseadamsio I think that example does a good job of "working around" the lack of support for something like this in Builder itself, but we're eventually going to need something...

^ Answering my own question: thinking it out, if we were to avoid substitution and shell magic, it seems to make some things easier and some harder: Let's say the...

@chaseadamsio That doesn't sound too bad! Especially since we're discussing `builder init` now which could add them for you. In general though I'm still pretty weary of adding more than...

This is easy to do with plain old npm as well: ``` json "scripts": { "check": "npm run lint && npm run test", "lint": "echo OK", "test": "npm run check"...

I like the goal of keeping it simple and think we should keep it that way for now. But I can see why building up archetypes piecemeal is desirable, especially...

Adding a note that as of #122, this would require implicitly enabling `--buffer`, as we won't be able to read the process' output otherwise.

That's a strange error, seems like it would be coming from a low level in Node. Can you post your `scripts` section as well?