Skip to content
This repository has been archived by the owner on Apr 17, 2023. It is now read-only.

Commit

Permalink
fix: release script for audit logging (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
psturc committed Mar 6, 2019
1 parent 66241d6 commit 57e631d
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Expand Up @@ -23,7 +23,7 @@
"type": "node",
"request": "launch",
"name": "Launch Audit Logging Example",
"program": "${workspaceFolder}/examples/auditLogging/index.js",
"program": "${workspaceFolder}/examples/audit_logging/index.js",
"outFiles": [
"${workspaceFolder}/**/*.js"
]
Expand Down
@@ -1,9 +1,9 @@
## Audit Logging Example

`auditLogging/index.js` is the example of how to use audit logging feature with the `voyager-server` framework.
`audit_logging/index.js` is the example of how to use audit logging feature with the `voyager-server` framework.

```
$ node auditLogging/index.js
$ node audit_logging/index.js
🚀 Server ready at http://localhost:4000/graphql
```

Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion examples/package.json
Expand Up @@ -10,7 +10,7 @@
"test-examples": "ava --concurrency=1 test/*.test.js",
"push-basic": "TAG=\"$npm_package_version\" ./push-script.sh basic",
"push-keycloak": "TAG=\"$npm_package_version\" ./push-script.sh keycloak",
"push-auditLogging": "TAG=\"$npm_package_version\" ./push-script.sh auditLogging",
"push-audit_logging": "TAG=\"$npm_package_version\" ./push-script.sh audit_logging",
"push-metrics": "TAG=\"$npm_package_version\" ./push-script.sh metrics",
"push-restapi": "TAG=\"$npm_package_version\" ./push-script.sh restapi"
},
Expand Down
2 changes: 1 addition & 1 deletion examples/test/auditLogging.test.js
@@ -1,6 +1,6 @@
const test = require('ava')
const axios = require('axios')
const { server, app } = require('../auditLogging/server')
const { server, app } = require('../audit_logging/server')

const port = 4000
app.listen({ port })
Expand Down

0 comments on commit 57e631d

Please sign in to comment.