gritty 7.0.0 → 7.1.0
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 +8 -0
- package/dist/gritty.js +22 -16
- package/dist/gritty.js.map +1 -1
- package/dist-dev/gritty.js +23 -23
- package/package.json +6 -6
- package/server/gritty.js +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gritty",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.1.0",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
|
|
6
6
|
"description": "Web terminal emulator",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"css-modules-require-hook": "^4.0.6",
|
|
68
68
|
"es6-promisify": "^7.0.0",
|
|
69
69
|
"eslint": "^8.0.0-beta.0",
|
|
70
|
-
"eslint-plugin-
|
|
70
|
+
"eslint-plugin-n": "^15.2.4",
|
|
71
71
|
"eslint-plugin-putout": "^16.0.0",
|
|
72
72
|
"json-loader": "^0.5.4",
|
|
73
73
|
"madrun": "^9.0.6",
|
|
@@ -79,12 +79,12 @@
|
|
|
79
79
|
"serve-once": "^2.0.0",
|
|
80
80
|
"socket.io-client": "^4.0.0",
|
|
81
81
|
"style-loader": "^3.2.1",
|
|
82
|
-
"supertape": "^
|
|
82
|
+
"supertape": "^8.1.0",
|
|
83
83
|
"webpack": "^5.1.3",
|
|
84
84
|
"webpack-cli": "^4.0.0",
|
|
85
|
-
"xterm": "^
|
|
86
|
-
"xterm-addon-fit": "^0.
|
|
87
|
-
"xterm-addon-webgl": "^0.
|
|
85
|
+
"xterm": "^5.0.0",
|
|
86
|
+
"xterm-addon-fit": "^0.6.0",
|
|
87
|
+
"xterm-addon-webgl": "^0.13.0"
|
|
88
88
|
},
|
|
89
89
|
"engines": {
|
|
90
90
|
"node": ">=16"
|
package/server/gritty.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
const isBool = (a) => typeof a === 'boolean';
|
|
4
|
-
|
|
5
3
|
const path = require('path');
|
|
6
|
-
const log = require('debug')('gritty');
|
|
7
4
|
|
|
5
|
+
const log = require('debug')('gritty');
|
|
8
6
|
const Router = require('router');
|
|
7
|
+
|
|
9
8
|
const currify = require('currify');
|
|
10
9
|
const wraptile = require('wraptile');
|
|
11
10
|
const pty = require('node-pty');
|
|
12
11
|
const stringArgv = require('string-to-argv');
|
|
12
|
+
const isBool = (a) => typeof a === 'boolean';
|
|
13
13
|
|
|
14
14
|
const DIR_ROOT = __dirname + '/..';
|
|
15
15
|
|