TODO
first you will need jq
sudo apt-get install jq # linuxbrew install jq # MacOSnpm i -g nx
npm iyou can now build lint and test all packages
npm run build
npm run lint
npm run test
npm run e2eExecute the following command to create a new component, it will create component foo in the packages folder
bin/create-component.sh fooYou can now run for this particular component
## Build the component foo
nx build foo
## lint the component foo and fix the issues
nx lint foo --fix
## run .spec.ts test for the component foo
nx test foo
## run .e2e.ts test for the component foo
nx e2e foo
## run the component foo in the browser
nx serve foo