Skip to content

Commit

Permalink
Merge branch 'hotfix/0.1.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
jsumners committed May 17, 2016
2 parents a3556d5 + 6fba89b commit f21c57a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/usr/bin/env node
'use strict';

const path = require('path');
const fs = require('fs');
const realPath = fs.realpathSync(__dirname);
const script = path.join(realPath, 'psock.js');

require(script.toString());
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pino-socket",
"version": "0.1.1",
"version": "0.1.2",
"description": "A pino 'transport' for writing to a tcp or udp socket",
"homepage": "https://github.com/jsumners/pino-socket",
"bugs": "https://github.com/jsumners/pino-socket/issues",
Expand All @@ -9,7 +9,7 @@
"test": "gulp test"
},
"bin": {
"pino-socket": "./psock.js"
"pino-socket": "./app.js"
},
"keywords": [
"pino",
Expand Down

0 comments on commit f21c57a

Please sign in to comment.