@tsufbarkai/relay-stream 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/relay-stream.js +2 -2
- package/package.json +2 -2
package/bin/relay-stream.js
CHANGED
|
@@ -203,10 +203,10 @@ async function main() {
|
|
|
203
203
|
if (isPtyMode) {
|
|
204
204
|
let pty;
|
|
205
205
|
try {
|
|
206
|
-
pty = require('node-pty
|
|
206
|
+
pty = require('node-pty');
|
|
207
207
|
} catch {
|
|
208
208
|
process.stderr.write(
|
|
209
|
-
'PTY mode requires node-pty
|
|
209
|
+
'PTY mode requires node-pty. Install it with: npm install node-pty\n'
|
|
210
210
|
);
|
|
211
211
|
process.exit(1);
|
|
212
212
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsufbarkai/relay-stream",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Stream your terminal to a Relay session",
|
|
5
5
|
"bin": {
|
|
6
6
|
"relay-stream": "./bin/relay-stream.js"
|
|
@@ -31,6 +31,6 @@
|
|
|
31
31
|
"postinstall": "node -e \"require('fs').chmodSync(require('path').join(__dirname, 'bin/relay-stream.js'), '755')\""
|
|
32
32
|
},
|
|
33
33
|
"optionalDependencies": {
|
|
34
|
-
"node-pty
|
|
34
|
+
"node-pty": "^1.1.0"
|
|
35
35
|
}
|
|
36
36
|
}
|