refactor: don't pretty twice during ok

This commit is contained in:
Michael Vines 2018-11-04 12:17:23 -08:00
parent 1d6abb17cf
commit ee25e0278c
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@
"localnet:down": "bin/localnet.sh down",
"localnet:update": "bin/localnet.sh update",
"localnet:logs": "bin/localnet.sh logs -f",
"ok": "npm run pretty && npm run lint && npm run flow && npm run test && npm run doc",
"ok": "npm run lint && npm run flow && npm run test && npm run doc",
"pretty": "prettier --write '{,{examples,src,test}/**/}*.js'",
"prepare": "npm run clean && npm run ok && npm run fetch-bpf-sdk && npm run build",
"examples": "set -ex; for example in examples/*.js; do node $example; done",