Skip to content

apondlife/apondlife.github.io

Repository files navigation

our site

the games in the grass by pondlife website.

setup

first, install node.

$ brew install node # mac

this should also install npm. use this to install node packages:

$ npm install

dev

to run the development server:

$ npm start # or,
$ npm run dev

to format the code:

$ npm run format

to just check it:

$ npm run lint

deploy

to deploy to github pages, we need to to build the site to the docs dir before pushing:

$ npm run build

to preview the build site:

$ npm run preview