Skip to content

Commit

Permalink
chore(build-scripts): adds a prepublish script to build (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew T. Poe authored and David Daniell committed Jul 11, 2019
1 parent 43937d5 commit e5b2e66
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,10 @@
"build:watch": "concurrently \" yarn build:types -w\" \"yarn build:js -w\"",
"build:clean": "rimraf ./lib",
"lint": "eslint src/**/*.{js*,ts*}",
"prebuild": "npm run build:clean && npm run lint && npm run test",
"prebuild": "yarn build:clean && yarn lint && yarn test",
"prepublish": "yarn build",
"prettier": "prettier --write '**/*.{js*,ts*,md}'",
"review": "npm run lint && npm test",
"review": "yarn lint && yarn test",
"test": "jest",
"test:coverage:report": "open-cli coverage/lcov-report/index.html",
"lint:ci": "eslint --format junit -o reports/junit/js-lint-results.xml src/**",
Expand Down

0 comments on commit e5b2e66

Please sign in to comment.