Skip to content

Commit

Permalink
update license
Browse files Browse the repository at this point in the history
  • Loading branch information
cdmbase committed Jun 10, 2018
1 parent 3f1e29d commit 011fd7c
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 1 deletion.
27 changes: 27 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
// Use IntelliSense to learn about possible Node.js debug attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Jest Tests",
"program": "${workspaceRoot}/node_modules/jest-cli/bin/jest.js",
"stopOnEntry": false,
"args": [
"--runInBand",
"--testPathPattern",
"async-iterator-sub"
],
"cwd": "${workspaceRoot}",
"runtimeExecutable": null,
"sourceMaps": true,
"env": {
"NODE_ENV": "development"
},
"console": "integratedTerminal"
}
]
}
24 changes: 24 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"taskName": "build",
"showOutput": "never",
"args": [
"run",
"build"
],
"isBuildCommand": true
},
{
"taskName": "debugBuild",
"showOutput": "never",
"args": [
"run",
"build:debug"
]
}
]
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,4 +101,4 @@ const pubsub = new NatsPubSub({
```
### License

ssh-keygen is [open source](https://github.com/cdmbase/graphql-nats-subscriptions/blob/master/LICENSE.md) under the MIT license
graphql-nats-subscriptions is [open source](https://github.com/cdmbase/graphql-nats-subscriptions/blob/master/LICENSE.md) under the MIT license

0 comments on commit 011fd7c

Please sign in to comment.