Skip to content
This repository was archived by the owner on Jan 15, 2019. It is now read-only.

development process

KevinGrandon edited this page Apr 12, 2012 · 3 revisions

Releasing


ALWAYS run the unit tests before bumping a version. DO IT.

Update package.json, bump version.

Make commit.

git tag -a v1.0.x -m "Release 1.0.x."

git push --tags

npm publish

Running Tests


1 - Install with dev packages.

npm install nwt --dev

2 - Run the test server

node test/testserver.js

3 - Visit test server

localhost:3000/test/

Updating Static Site


1 - Build JS, jekyll the site

node build/build.js; # jekyll; node jekyll/testserver.js

Clone this wiki locally