catscradleio / catscradle.io

Play cat's cradle online
7 stars 2 forks source link

Automate npm install subdir #18

Closed yucho closed 5 years ago

yucho commented 5 years ago

We have 2 different dependencies in our projects. One at top-level (for express/mongo), and one in frontend (react). Currently, running npm install only installs the top-level dependency.

Automating npm i for frontend is as easy as having a postinstall script that cd frontend && npm i. I'ma do that really quick!