fix: 修复关闭SSH终端标签页时会话状态未更新的问题

This commit is contained in:
2026-04-18 02:35:38 +08:00
commit 6e2e2f9387
43467 changed files with 5489040 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
guacamole-common-js library
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
@@ -0,0 +1,3 @@
{
"type": "commonjs"
}
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
+45
View File
@@ -0,0 +1,45 @@
{
"name": "@dushixiang/guacamole-common-js",
"version": "1.6.0-fix",
"description": "guacamole-common-js",
"type": "module",
"main": "dist/cjs/guacamole-common.js",
"module": "dist/esm/guacamole-common.js",
"exports": {
".": {
"import": "./dist/esm/guacamole-common.js",
"require": "./dist/cjs/guacamole-common.js"
}
},
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "cat src/*.js > dist/esm/guacamole-common.js && echo 'export default Guacamole;' >> dist/esm/guacamole-common.js && terser dist/esm/guacamole-common.js > dist/esm/guacamole-common.min.js",
"build:cjs": "cat src/*.js > dist/cjs/guacamole-common.js && echo 'module.exports = Guacamole;' >> dist/cjs/guacamole-common.js && terser dist/cjs/guacamole-common.js > dist/cjs/guacamole-common.min.js"
},
"repository": {
"type": "git",
"url": "github.com/dushixiang/guacamole-common-js"
},
"files": [
"dist",
"README.md"
],
"keywords": [
"guacamole",
"common",
"js",
"guac",
"remote",
"desktop",
"vnc",
"rdp",
"ssh",
"telnet"
],
"author": "dushixiang",
"license": "Apache 2.0",
"homepage": "https://github.com/dushixiang/guacamole-common-js",
"devDependencies": {
"terser": "^5.30.3"
}
}