Comment on Show HN: Makedown – A Markdown powered Makefile alternativeparentComments−mkesper1yGreat point. My take is that most inexperienced people know make only as a bundle of shell scripts with semi-nice unification (not really nice because you just don't have an easy way to pass arguments to your scripts and no automatic help etc.).−timzOP1yAdded support for dependency between commands. So one can now write: # [clean]() Clean build directory ```bash rm -rf ./build ``` # [format]() Format the source code ```bash npx prettier --write . ``` # [build](clean format) Build the project ```bash npm run build ``` # [deploy](build) Deploy to surge.sh ```bash surge ./build my-project.surge.sh ``` This doesn't include file time modification between files as in Makefile.Thank you for feature suggestion.
Comments
Great point. My take is that most inexperienced people know make only as a bundle of shell scripts with semi-nice unification (not really nice because you just don't have an easy way to pass arguments to your scripts and no automatic help etc.).
Added support for dependency between commands. So one can now write:
This doesn't include file time modification between files as in Makefile.Thank you for feature suggestion.