If you don't yet have nodejs installed and you are running mac os, I suggest using nvm (node version manger), which makes managing different node versions a breeze.
Clone the repo:
git clone
Cd into the project folder
cd webpack-bulma
Install yarn modules
yarn install (if you have not installed yarn then: brew install yarn)
Build production
yarn deploy
Build version is available in dist
folder.
For development you can use:
yarn start
This brings up demo website on http://localhost:8080.
For demo purposes I've copied the bulma blog template.
webpack-bulma/ ├── src/ │ ├── sass │ │ └── main.scss │ ├── templates/index.html │ └── app.js # main webpack entry file ├── .gitignore ├── package.json ├── README.md └── webpack.config.js