Scott Wade

Results 15 comments of Scott Wade

Your right it's the windows shell lacking shebang support. Is it that problem where yarn/npm ends up treating/running the shell script as javascript? It looks like [create-react-app](https://github.com/facebook/create-react-app/blob/next/packages/react-scripts/bin/react-scripts.js) and [create-react-app-typescript](https://github.com/wmonk/create-react-app-typescript/blob/master/packages/react-scripts/bin/react-scripts-ts.js) are...

Sure thing. Just reading the code/docs for node-cross-spawn. Specifically mentions node problems when using spawn on Windows: "Has an issue with command shims (files in node_modules/.bin/), where arguments with quotes...

I tried out [0.4.5](https://github.com/Cretezy/Noderize/tree/v0.4.5) this afternoon (nice work) and can confirm all scripts work without any issues on linux systems for me. ```format``` is still problematic on Widows and again...

Sure. I checked and prettier works fine... ``` λ node_modules\@noderize\scripts\node_modules\.bin\prettier --version 1.11.1 ``` In another noderize generated app, I'm using a quick work around. I've added a script to the...

The ```test``` script seems to have the same issue. Syntax error when run as ```yarn test```. However, it too, runs correctly with a fully qualified path: ``` c:\projects\typescript\thirdapp λ node_modules\@noderize\scripts\node_modules\.bin\jest...

```Prettier``` handling command-line arguments on Windows from npm/yarn scripts has given me problems in the past. For some reason it seems to frequently not operate the way it does when...

I have time today and tomorrow to look into it. and can let you know if I find a resolution.

The core issue seems to come down to ```npm``` assuming the *command* passed to it is a JS file--somewhere in the complicated script calling script decomposition into commands and args...

What setup do you recommend for running a development version of Noderize locally to work with? I'm having a problem with setting up a good debug workflow. Currently, I'm jumping...

Thanks! I'll be able to look into this again tonight.