report-viewer

v0.0.2
Cli for piping a unit test result directly into your browser
socket.io mocha report viewer xunit browser live debug

clean:server

rimraf lib/ && mkdir lib

prebuild:server

npm run clean:server

build:server

coffee --compile --output lib/ src/*.coffee

clean:client

rimraf ngapp/ && mkdir ngapp

prebuild:client

npm run clean:client

build:client:script

coffee --bare --output ngapp/ --compile ngapp_src/index.coffee && browserify ngapp/index.js -d -t browserify-ngannotate -t browserify-css -p [minifyify --compressPath . --map index.js.map --output ngapp/index.js.map] -o ngapp/bundle.js

build:client:styles

stylus ngapp_src/*.styl -m -o ngapp/

build:client:markup

jade ngapp_src/*.jade -o ngapp/

build:client

npm run build:client:styles && npm run build:client:markup && npm run build:client:script

build

npm run build:client && npm run build:server

watch

parallelshell "npm run watch:server -s" "npm run watch:client:styles -s" "npm run watch:client:markup -s" "npm run watch:client:coffee -s" "npm run watch:client:watchify -s"

watch:server

nodemon -q -w src/ --ext 'coffee' --exec 'npm run build:server'

watch:client:coffee

nodemon -q -w ngapp_src/ --ext 'coffee' --exec 'coffee --bare --output ngapp/ --compile ngapp_src/index.coffee'

watch:client:watchify

watchify ngapp/index.js -d -t browserify-ngannotate -t browserify-css -p [minifyify --compressPath . --map index.js.map --output ngapp/index.js.map] -o ngapp/bundle.js

watch:client:styles

nodemon -q -w ngapp_src/ --ext 'styl' --exec 'npm run build:client:styles'

watch:client:markup

nodemon -q -w ngapp_src/ --ext 'jade' --exec 'npm run build:client:markup'

Metadata

Downloads

Maintainers