Skip to content

Commit

Permalink
feat: Add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
windkomo committed Jan 22, 2018
1 parent 5339903 commit 65660ef
Show file tree
Hide file tree
Showing 12 changed files with 53 additions and 11 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="1.5.1"></a>
## [1.5.1](https://github.com/Botfuel/bot-sdk2/compare/v1.5.0...v1.5.1) (2018-01-22)




**Note:** Version bump only for package root
6 changes: 4 additions & 2 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
{
"lerna": "2.7.1",
"packages": ["packages/*"],
"packages": [
"packages/*"
],
"changelog": {
"repo": "botfuel-dialog/botfuel-dialog",
"cacheDir": ".changelog"
},
"npmClient": "yarn",
"useWorkspaces": true,
"version": "1.5.0"
"version": "1.5.1"
}
12 changes: 12 additions & 0 deletions packages/botfuel-dialog/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="1.5.1"></a>
## [1.5.1](https://github.com/Botfuel/botfuel-dialog/compare/v1.5.0...v1.5.1) (2018-01-22)




**Note:** Version bump only for package botfuel-dialog
15 changes: 12 additions & 3 deletions packages/botfuel-dialog/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "botfuel-dialog",
"version": "1.5.0",
"version": "1.5.1",
"author": "[email protected]",
"main": "index.js",
"description": "Botfuel Dialog",
Expand All @@ -9,21 +9,30 @@
"url": "https://github.com/Botfuel/botfuel-dialog"
},
"license": "Apache-2.0",
"files": ["build"],
"files": [
"build"
],
"bin": {
"botfuel-run": "./build/run.js",
"botfuel-train": "./build/train.js",
"botfuel-clean": "./build/clean.js"
},
"scripts": {
"compile": "rm -rf build; babel src --out-dir build; cp -r src/corpora/*.txt build/corpora/",
<<<<<<< HEAD
"test": "BOTFUEL_APP_TOKEN=TEST_BOT jest --testPathPattern='botfuel-dialog/tests' --forceExit",
=======
"test": "BOTFUEL_APP_TOKEN=TEST_BOT MONGODB_URI=mongodb://localhost/sdk-brain-test jest --testPathPattern='botfuel-dialog/tests' --forceExit",
>>>>>>> feat: Add changelog
"style": "eslint src; eslint tests",
"docs": "node_modules/.bin/jsdoc --configure .jsdoc.json --verbose",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": ["prettier-eslint --write \"{src,tests}/**/*.js\"", "git add"]
"*.js": [
"prettier-eslint --write \"{src,tests}/**/*.js\"",
"git add"
]
},
"dependencies": {
"babel-polyfill": "^6.26.0",
Expand Down
2 changes: 2 additions & 0 deletions packages/test-complexdialogs/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,5 @@ typings/

# editors files
.idea

CHANGELOG.md
2 changes: 1 addition & 1 deletion packages/test-complexdialogs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sample-botfuel-dialog-complexdialogs",
"version": "1.5.0",
"version": "1.5.1",
"private": true,
"author": "[email protected]",
"description": "Sample bot using botfuel-dialog and illustrating complex dialogs",
Expand Down
2 changes: 2 additions & 0 deletions packages/test-complexentities/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,5 @@ typings/

# editors files
.idea

CHANGELOG.md
2 changes: 1 addition & 1 deletion packages/test-complexentities/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sample-botfuel-dialog-complexentities",
"version": "1.5.0",
"version": "1.5.1",
"private": true,
"author": "[email protected]",
"description": "Sample bot using botfuel-dialog and illustrating complex dialogs entities",
Expand Down
2 changes: 2 additions & 0 deletions packages/test-ecommerce/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,5 @@ typings/

# editors files
.idea

CHANGELOG.md
2 changes: 1 addition & 1 deletion packages/test-ecommerce/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "test-ecommerce",
"version": "1.5.0",
"version": "1.5.1",
"private": true,
"author": "[email protected]",
"description": "Bot testing and illustrating an ecommerce botfuel-dialog bot",
Expand Down
2 changes: 2 additions & 0 deletions packages/test-qna/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,5 @@ typings/

# editors files
.idea

CHANGELOG.md
5 changes: 2 additions & 3 deletions packages/test-qna/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "test-qna",
"version": "1.5.0",
"version": "1.5.1",
"private": true,
"author": "[email protected]",
"description": "Bot testing botfuel-dialog and qna",
Expand All @@ -9,8 +9,7 @@
"start": "botfuel-run",
"train": "botfuel-train",
"clean": "botfuel-clean",
"test":
"BOTFUEL_APP_TOKEN=TEST_BOT mocha --timeout 30000 --require babel-polyfill --require babel-register tests/*.js",
"test": "BOTFUEL_APP_TOKEN=TEST_BOT mocha --timeout 30000 --require babel-polyfill --require babel-register tests/*.js",
"style": "eslint src; eslint tests"
},
"dependencies": {
Expand Down

0 comments on commit 65660ef

Please sign in to comment.