bottender-compose
Advanced tools
Comparing version 0.1.0 to 0.1.1
@@ -0,3 +1,7 @@ | ||
0.1.1 / 2017-11-30 | ||
================== | ||
- [fix] Export `series`, `parallel` api methods. | ||
0.1.0 / 2017-11-30 | ||
================== | ||
- [new] Support `series`, `parallel`, `random`, and most of api methods. |
{ | ||
"name": "bottender-compose", | ||
"description": "An utility library for bottender and higher-order handlers", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"repository": { | ||
@@ -6,0 +6,0 @@ "type": "git", |
@@ -5,2 +5,5 @@ # bottender-compose | ||
[![npm](https://img.shields.io/npm/v/bottender-compose.svg?style=flat-square)](https://www.npmjs.com/package/bottender-compose) | ||
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) | ||
## Installation | ||
@@ -19,3 +22,3 @@ | ||
```js | ||
const { series } = require('bottender-compose'); | ||
const { series, sendText } = require('bottender-compose'); | ||
@@ -34,3 +37,3 @@ bot.onEvent(series([ | ||
```js | ||
const { parallel } = require('bottender-compose'); | ||
const { parallel, sendText } = require('bottender-compose'); | ||
@@ -49,3 +52,3 @@ bot.onEvent(parallel([ | ||
```js | ||
const { parallel } = require('bottender-compose'); | ||
const { parallel, sendText } = require('bottender-compose'); | ||
@@ -52,0 +55,0 @@ bot.onEvent(random([ |
@@ -16,1 +16,3 @@ const { state, messenger, line, slack, telegram } = require('./methods'); | ||
exports.random = require('./random'); | ||
exports.series = require('./series'); | ||
exports.parallel = require('./parallel'); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
113541
306
159