Simple week calendar.
To get development server running on your machine, run:
# Install dependencies and start dev server
npm install
npm run devLint code by running npm run lint.
npm run buildAutomatically format code by running npm run format.
npm run formatUnit-test the code with npm test.
# Unit test
npm test
# or
npm test -- --coverage
# to also get coverage analysisCreate production build by running npm run build.
# Build
npm run build
# Build with non-root public URL
echo 'PUBLIC_URL="/${path}"' > .env
npm run buildSee index.html and navigate.ts for how PUBLIC_URL is being used.