You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
Maybe document a few extra comments on how to build a brandnew repo for the newly created module? Because it basically still starts out as your repo :-)
Here's how I did it - might not be the best way, so please have a look, comments are welcome.
I started by creating an empty repo on Github
adapted Licence and Readme
uncommented node_modules and mapfiles in .gitignore
removed setup.php and setup.json (and yarn.lock :))
Thanks, I could probably expand upon the docs for that next step. A comment on your build:
uncommented node_modules and mapfiles in .gitignore
You really, really should not do this. node_modules contains the build dependencies only and is often a huge folder, ~60MB or so. This is the point of having the yarn.lock file, so that anyone can download your repo and install the dependencies themselves if they need to. Never commit your node_modules to the repo.
Hi,
Maybe document a few extra comments on how to build a brandnew repo for the newly created module? Because it basically still starts out as your repo :-)
Here's how I did it - might not be the best way, so please have a look, comments are welcome.
I started by creating an empty repo on Github
If you agree I will gladly make a pulll
Martine
The text was updated successfully, but these errors were encountered: