Skip to content

Latest commit

 

History

History
65 lines (33 loc) · 1.24 KB

README.MD

File metadata and controls

65 lines (33 loc) · 1.24 KB

Bulma Starter

Boiler plate code that includes a Webpack config and circleci config to bootstrap your next web project with Bulma.

Check out the template Here (https://robincheptileh.github.io/bulma-starter/).

Build status

CircleCI, master branch:

CircleCI

Prerequisites

  1. NodeJS (check with node --version)
  2. NPM (check with npm --version)

Quick start

Install dependencies

  1. npm install (initialize local node_modules packages from dependencies declared in package.json)

Start application

  1. npm start

Start application in Development

  1. npm run start:dev

Test

  1. npm test

Lint

Run Lint

It's very important (required) to launch lint before pushing any code on github repository

  1. npm run lint

Run Lint and fix errors

  1. npm run lint:fix

Check code formatting using Prettier

  1. npm run prettier:check

Prettify code using Prettier

  1. npm run prettier

Build

Build for development

  1. npm run build:dev

Build for production

  1. npm run build