A simple countdown clock to help you tick down the seconds to that thing you're looking forward to.
Hosted at: tfft.dholmes.co.uk. Read more on the blog post
This project uses:
npm i
: Install dependenciesnpm start
: Start local dev server
- Clone the GitHub page repo into the .gitignore'd ./dist directory (eg: github.com/desholmes/tfft.dholmes.co.uk.github.io)
npm run build
: Builds the js and css files to ./distnpm run build:serve
: Statically serves the ./dist directory (for QA)npm run deploy
: Builds and deploys the site to GitHub pages
Command | Description |
---|---|
npm run clean |
Cleans the ./dist directory |
npm run build |
Runs npm run clean and parcel build |
npm run build:serve |
Runs serve dist/ to statically serve the build in the ./dist directory |
npm run lint |
Runs ESLint with 0 warnings argument |
npm run lint:fix |
Runs ESLint with 0 warnings and --fix arguments |
npm run prettier |
Runs Prettier with --check argument |
npm run prettier:fix |
Runs Prettier with --write argument |
npm run prettier-lint:fix |
Runs prettier:fix and lint:fix NPM scripts |
npm start |
Runs a local development server using the Parcel Bundler |