Skip to content

Commit

Permalink
Bump v0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
9renpoto committed Mar 16, 2020
1 parent 28d3d32 commit bb9f5dd
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 13 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
lib/
**/nestjs-plugins-test
nestjs-plugins-test
/nestjs-plugins
.changelog/

### https://raw.github.com/github/gitignore/6c87d249af5f2b3f8ab65ae0a2648682ee4e8a2d/Node.gitignore

Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
## Unreleased (2020-03-16)

#### :rocket: Enhancement

- `nestjs-slack-webhook`
- [#37](https://github.com/piic/nestjs-plugins/pull/37) rename: package nestjs-slack-webhook ([@Yasai-T](https://github.com/Yasai-T))
- `nestjs-slack`
- [#25](https://github.com/piic/nestjs-plugins/pull/25) feat: nestjs-slack plugin ([@Yasai-T](https://github.com/Yasai-T))

#### Committers: 2

- Keisuke Kan ([@9renpoto](https://github.com/9renpoto))
- tomoki midorikawa ([@Yasai-T](https://github.com/Yasai-T))
6 changes: 3 additions & 3 deletions example/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "example",
"version": "0.0.1",
"version": "0.0.2",
"private": true,
"description": "TBA",
"license": "MIT",
Expand Down Expand Up @@ -30,8 +30,8 @@
"@types/graphql": "^14.5.0",
"apollo-server-express": "^2.11.0",
"graphql": "^14.6.0",
"nestjs-graphql-relay": "^0.0.1",
"nestjs-slack-webhook": "^0.0.1",
"nestjs-graphql-relay": "^0.0.2",
"nestjs-slack-webhook": "^0.0.2",
"reflect-metadata": "0.1.13",
"rxjs": "^6.5.4",
"typeorm": "0.2.24"
Expand Down
7 changes: 2 additions & 5 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
{
"packages": [
"packages/*",
"example"
],
"packages": ["packages/*", "example"],
"changelog": {
"labels": {
"enhancement": ":rocket: Enhancement",
Expand All @@ -12,5 +9,5 @@
},
"npmClient": "yarn",
"useWorkspaces": true,
"version": "0.0.1"
"version": "0.0.2"
}
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "nestjs-plugins",
"private": true,
"repository": "[email protected]:piic/nestjs-plugins.git",
"author": "piic",
"scripts": {
"build": "lerna run build --include-dependents",
Expand Down
2 changes: 1 addition & 1 deletion packages/nestjs-graphql-relay/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nestjs-graphql-relay",
"version": "0.0.1",
"version": "0.0.2",
"description": "Nest.js + graphql-relay + type-graphql + typeorm",
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions packages/nestjs-slack-webhook/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nestjs-slack-webhook",
"version": "0.0.1",
"version": "0.0.2",
"description": "Nest.js + slack-webhook",
"repository": {
"type": "git",
Expand All @@ -20,8 +20,8 @@
"slack-webhook"
],
"devDependencies": {
"@slack/webhook": "5.0.3",
"@nestjs/testing": "7.0.2"
"@nestjs/testing": "7.0.2",
"@slack/webhook": "5.0.3"
},
"types": "lib/index.d.ts"
}

0 comments on commit bb9f5dd

Please sign in to comment.