This is a boiler project with Tailwind for styling, and Parcel for building. This boiler is for smaller projects, but I will work on implementing CraftCMS and Vue as a fork to this git in the future.
- Parcel
- Tailwind JIT
- PostCSS 8
Clone the git and use the package manager npm to install the packages.
npm install
To run the dev server and serve it on localhost:1234
npm run start
To build for production
npm run build
To do a clean
npm run clean
The clean script will run with both running the dev server as well as building. Never manually run any other of the scripts, they are controlled with npm-run-all plugin, and are used during the three commands above.
The files build and ready for production is in the dist folder. It is fine if the index.css file is empty, as the pcss will produce the content of the css file.
- Implement best practices from html5boilerplate
- Implement Vue framework
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.