gritty 8.1.1 → 8.1.2

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/ChangeLog CHANGED
@@ -1,3 +1,8 @@
1
+ 2024.03.18, v8.1.2
2
+
3
+ fix:
4
+ - c630120 gritty: get back node-pty
5
+
1
6
  2024.03.16, v8.1.1
2
7
 
3
8
  fix:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gritty",
3
- "version": "8.1.1",
3
+ "version": "8.1.2",
4
4
  "type": "commonjs",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "Web terminal emulator",
@@ -42,10 +42,10 @@
42
42
  "express"
43
43
  ],
44
44
  "dependencies": {
45
- "@lydell/node-pty": "^1.0.0-beta.4",
46
45
  "currify": "^4.0.0",
47
46
  "debug": "^4.0.1",
48
47
  "express": "^4.14.0",
48
+ "node-pty": "^1.0.0",
49
49
  "router": "^1.3.3",
50
50
  "socket.io": "^4.0.0",
51
51
  "squad": "^3.0.0",
package/server/gritty.js CHANGED
@@ -9,8 +9,7 @@ const Router = require('router');
9
9
 
10
10
  const currify = require('currify');
11
11
  const wraptile = require('wraptile');
12
- //const _pty = require('node-pty');
13
- const _pty = require('@lydell/node-pty');
12
+ const _pty = require('node-pty');
14
13
 
15
14
  const stringArgv = require('string-to-argv');
16
15
  const isBool = (a) => typeof a === 'boolean';