-
Notifications
You must be signed in to change notification settings - Fork 108
Do we really need a Makefile? #73
Comments
I think if the Either way, I don't feel too strongly about it, but have a slight preference towards keeping it if it's not a pain to do so. ... (Somewhat off-topic, I'm pretty sure that Git for Windows does install make by default. Or at least I don't recall having to do anything special beyond that to get make on my Windows system.) |
I am familiar with make but still found it confusing what I had to update to add the TS support for the normal build and webpack. It seems overkill to me. You are probably right that make is more familiar for people who never used Node, but imo a javascript implementation should use what javascript developers know, not non-javascript developers ;) Of course the scripts should be documented in the readme. Afaik make is only in MinGW, not in msysgit. But npm is always available. |
I don't feel strongly. If the Makefile is removed in the TS conversion, I won't complain :) |
+1 to remove Makefile, if possible. For people new to JS ecosystem we just need a few instructions in the Contributing file. |
I'm down to replace it will a small set of scripts and instructions. |
Can this issue now be closed? |
+1 |
It seems like the basic tasks of compilation would be expressed equally well with npm scripts, which Javascript developers are way more familiar with and already have
node_modules/.bin
in their PATH.make
is also not available on Windows.The text was updated successfully, but these errors were encountered: