git clone https://github.com/florianporada/another-webpack-boilerplate.git <project-name>
cd <project-name>
yarn run new
yarn start
export PROJECT_NAME=superservice
git clone https://github.com/florianporada/another-webpack-boilerplate.git $PROJECT_NAME
cd $PROJECT_NAME
rm -rf .git
echo $PROJECT_NAME > README.md
git init -b main
git add .
git commit -m "chore: add boilerplate code"
echo "READY TO GO"
- Webpack 5
- Tailwind 3 support
- ES6 transpiling
- Automatic favicon generation
- Docker ready ...
Since this boilerplate is basically a port of tris-webpack-boilerplate to webpack 5 with some new features, most of the features are explained here.
The standard behavior of the action is to create a docker image and push it to the docker registry.
-
GitHub Actions Environment Secrets
DOCKER_USERNAME DOCKER_PASSWORD
-
Skip CI:
If the commit message contains
skip ci
the GitHub Action will not be triggered.
- Heavily inspired by: tris-webpack-boilerplate