Skip to content

Commit bd797dd

Browse files
committed
Merge branch 'hotfix/0.4.1'
2 parents 9559609 + 604888c commit bd797dd

3 files changed

Lines changed: 13 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
<a name="0.4.1"></a>
2+
## [0.4.1](https://github.com/amowu/slack-lambda-google/compare/0.4.0...v0.4.1) (2016-01-12)
3+
4+
5+
### Bug Fixes
6+
7+
* **gulp:** params error ([801c07e](https://github.com/amowu/slack-lambda-google/commit/801c07e))
8+
9+
10+
111
<a name="0.4.0"></a>
212
# [0.4.0](https://github.com/amowu/slack-lambda-google/compare/0.1.0...v0.4.0) (2016-01-12)
313

gulpfile.babel.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import config from './config.json'
1010

1111
gulp.task('clean', () => del('dist'))
1212

13-
gulp.task('webpack', (done, stats) => {
14-
webpack(require('./webpack.config.js'), (error) => {
13+
gulp.task('webpack', done => {
14+
webpack(require('./webpack.config.js'), (error, stats) => {
1515
if(error) throw new gutil.PluginError('webpack', error)
1616
gutil.log(stats.toString({
1717
chunks: false

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "slack-lambda-google",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"description": "A serverless Slack Slash Commands to integrate Google Knowledge Graph API using AWS Lambda and AWS API Gateway",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)