Torsten Walter

Results 7 comments of Torsten Walter

This really is an issue for small modules in a ci environment as downloading plugins from npm takes up most of the time spent on building. Contents of .babelrc: ```...

I like the idea very much. IMO it would be nice that if npm is used you don't need to type anything extra. npm knows of private repos and probably...

Just to add my 2 cts to the discussion. I think @jsr88f has a very valid point. A lot of times you do have some logic that requires actions based...

This solution would only be suboptimal. Since I git-validate is used to create modules that configure your project to use hooks, the module can't know upfront what to ignore. IMO...

My suggestion to look for package.json: ``` bash local projects; projects=$(find . -maxdepth 1 -name package.json -print 2>/dev/null) if [[ $? -ne 0 ]]; then projects=$(find . -not -iwholename '*node_modules*'...

Ah I see. I can certainly update the PR. It will be a week or two though. The reason I needed precompiling was because of #69. Too many partials caused...