Skip to content

Commit

Permalink
fix: documentation, circle-ci config
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinDepuydt committed May 14, 2019
1 parent 375eb48 commit ac181f8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ git clone [email protected]:Botfuel/botfuel-dialog.git

```shell
npm install
npm bootstrap
npm run bootstrap
```

### Issue with node-gyp and Python v3.x
Expand All @@ -26,7 +26,7 @@ If python2.7 is not the default python version, you can use a virtualenv (`pew`)
```shell
npm config set python /path/to/your/python2.7 -g
npm install
npm bootstrap
npm run bootstrap
```

## Workflow
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
"scripts": {
"bootstrap": "lerna bootstrap && lerna run build --scope botfuel-dialog && lerna link --force-local",
"clean": "lerna clean && node clean.js",
"type-check": "npm flow",
"type-check": "npm run flow",
"style": "lerna run style",
"commitmsg": "node check-commit-msg.js",
"pretest": "npm run bootstrap",
"release": "npm test && lerna run build --scope botfuel-dialog && lerna publish --conventional-commits --changelog-preset=angular",
"unit-test": "BOTFUEL_APP_TOKEN=TEST_BOT BOTFUEL_APP_ID=TEST_BOT BOTFUEL_APP_KEY=TEST_BOT jest packages/botfuel-dialog",
"unit-test": "BOTFUEL_APP_TOKEN=TEST_BOT BOTFUEL_APP_ID=TEST_BOT BOTFUEL_APP_KEY=TEST_BOT jest packages/botfuel-dialog --maxWorkers=2",
"test": "jest --forceExit --maxWorkers=2"
},
"devDependencies": {
Expand Down

0 comments on commit ac181f8

Please sign in to comment.