The process assumes you already have git
, node.js
and yarn
installed in you local machine.
Go to your suitable project directory in your machine and run the following command
git clone [email protected]:RiadHossain43/appbox.git
or if you are using https
git clone https://github.com/RiadHossain43/appbox.git
Now change your working directory to appbox
cd appbox
Run the folling command
npm install
or
yarn install
To initialise lerna
run the following commands
npx learna@latest init
To bootstrap all the packages run folloing command
npx learna bootstrap --hoist
--hoist
flag will hoist all your lerna dependency in the root of the project.