-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
53 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
|
@@ -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", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,3 +69,5 @@ typings/ | |
|
||
# editors files | ||
.idea | ||
|
||
CHANGELOG.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,3 +69,5 @@ typings/ | |
|
||
# editors files | ||
.idea | ||
|
||
CHANGELOG.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,3 +69,5 @@ typings/ | |
|
||
# editors files | ||
.idea | ||
|
||
CHANGELOG.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,3 +69,5 @@ typings/ | |
|
||
# editors files | ||
.idea | ||
|
||
CHANGELOG.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
|
@@ -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": { | ||
|