| .vscode | ||
| part-1-html-css | ||
| part-2-javascript | ||
| part-3-angular | ||
| part-4-problem-solving | ||
| part-5-code-review | ||
| .editorconfig | ||
| .eslintignore | ||
| .eslintrc.json | ||
| .gitignore | ||
| .prettierignore | ||
| .prettierrc | ||
| jest.config.ts | ||
| jest.preset.js | ||
| nx.json | ||
| package-lock.json | ||
| package.json | ||
| README.md | ||
| tsconfig.base.json | ||
Payspace
Applications was built using nx monorepo -> https://nx.dev/
After cloning project run npm install --legacy-peer-deps (the flag is due to prettier version requirement)
Running tasks
To run Part 1: HTML/CSS use the following syntax:
npm run part1
To run Part 2: JavaScript use the following syntax:
npm run part2
To run Part 3: Angular Component use the following syntax:
npm run part3
To run Part 4: Problem-Solving use the following syntax:
npm run part4
To run Part 5: Code Review use the following syntax:
npm run part5
Targets can be defined in the package.json or projects.json. Learn more in the docs.
Ready to deploy?
npm run part1:build
npm run part2:build
npm run part3:build
npm run part4:build
npm run part5:build
The build artifacts will be stored in the dist/ directory, ready to be deployed.
Author
Brian Pooe