(no title)
bndw | 4 years ago
I use Make as the standard way to interact with every repo I own. This allows me to type `make build` instead of `$some-language-specific-command-I-forget-in-2-weeks`.
I use Docker for distributing every app I build. If the app is a website I also use the nginx base image. Docker images make packaging and distribution a breeze IMO.
Regarding yarn, npx, react, and jest: I'm similarly disillusioned by the churn but I also like to remain knowledgeable as the industry evolves. React was something I hadn't touched before, so I decided to pick a simple project to give it whirl ;)
weejewel|4 years ago
cinntaile|4 years ago
cyral|4 years ago
moltar|4 years ago
This allows me to self contain all the build tooling. And allows other developers to setup a dev environment in a few easy steps.
shepherdjerred|4 years ago
quickthrower2|4 years ago
kortex|4 years ago
After much fussing around with many kinds of solutions, this too is what I have settled on. Download repo and run `make` will "do the needful" to get you going, and all the major entry points are make stanzas.
hootbootscoot|4 years ago
manuel_w|4 years ago
I also used to do this until I switched out Make by Just[1]. I find it worth a recommendation.
https://github.com/casey/just
sneak|4 years ago
catlifeonmars|4 years ago
unknown|4 years ago
[deleted]
lionkor|4 years ago
superjan|4 years ago