ADD bootstrap for docs

This commit is contained in:
Norbert de Langen 2017-05-26 15:08:38 +02:00
parent eb9b161ba1
commit b00f125398
2 changed files with 3 additions and 1 deletions

View File

@ -12,6 +12,7 @@ after_success: ./scripts/travis/after_success.sh
script:
- npm run bootstrap
- npm run bootstrap:test-cra
- npm run bootstrap:docs
- npm run lint
- npm run test -- --coverage
- npm run coverage

View File

@ -42,7 +42,8 @@
"publish": "lerna publish",
"import-repo": "lerna import",
"bootstrap": "lerna bootstrap",
"bootstrap:test-cra": "lerna exec --scope test-cra -- npm i",
"bootstrap:test-cra": "lerna exec --scope test-cra -- npm i",
"bootstrap:docs": "cd docs && npm i",
"lint": "npm run lint:js && npm run lint:markdown",
"lint:js": "eslint . --cache --cache-location=.cache/eslint/main --ext .js,.jsx",
"lint:markdown": "remark .",