bdy 1.8.4-dev → 1.8.5-dev
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/distTs/package.json +70 -0
- package/distTs/src/texts.js +1 -2
- package/package.json +1 -1
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "bdy",
|
|
3
|
+
"preferGlobal": false,
|
|
4
|
+
"version": "1.8.5-dev",
|
|
5
|
+
"type": "commonjs",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"lint": "eslint \"*/**\"",
|
|
9
|
+
"lint:types": "tsc --skipLibCheck --noEmit --project tsconfig.json",
|
|
10
|
+
"watch": "tsc --watch --project tsconfig.json"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"distTs"
|
|
14
|
+
],
|
|
15
|
+
"bin": {
|
|
16
|
+
"bdy": "distTs/bin/cli.js"
|
|
17
|
+
},
|
|
18
|
+
"dependencies": {
|
|
19
|
+
"@fastify/accept-negotiator": "1.1.0",
|
|
20
|
+
"@fastify/cors": "9.0.1",
|
|
21
|
+
"@puppeteer/browsers": "2.4.0",
|
|
22
|
+
"@xhmikosr/decompress": "10.0.1",
|
|
23
|
+
"basic-auth": "2.0.1",
|
|
24
|
+
"chalk": "4.1.2",
|
|
25
|
+
"commander": "12.1.0",
|
|
26
|
+
"content-disposition": "0.5.4",
|
|
27
|
+
"cross-spawn": "7.0.3",
|
|
28
|
+
"fastify": "4.28.1",
|
|
29
|
+
"isbinaryfile": "5.0.2",
|
|
30
|
+
"jsonwebtoken": "9.0.2",
|
|
31
|
+
"mime-db": "1.52.0",
|
|
32
|
+
"mime-types": "2.1.35",
|
|
33
|
+
"netmask": "2.0.2",
|
|
34
|
+
"node-fetch": "3.3.2",
|
|
35
|
+
"node-forge": "1.3.1",
|
|
36
|
+
"path-is-inside": "1.0.2",
|
|
37
|
+
"pino": "8.20.0",
|
|
38
|
+
"puppeteer-core": "23.6.0",
|
|
39
|
+
"range-parser": "1.2.1",
|
|
40
|
+
"socket.io-client": "4.7.5",
|
|
41
|
+
"ssh2": "1.15.0",
|
|
42
|
+
"terminal-kit": "3.1.1",
|
|
43
|
+
"undici": "6.19.2",
|
|
44
|
+
"uuid": "10.0.0",
|
|
45
|
+
"which": "4.0.0",
|
|
46
|
+
"ws": "8.18.0"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@eslint/js": "9.13.0",
|
|
50
|
+
"@rollup/plugin-commonjs": "28.0.1",
|
|
51
|
+
"@rollup/plugin-json": "6.1.0",
|
|
52
|
+
"@rollup/plugin-node-resolve": "15.3.0",
|
|
53
|
+
"@rollup/plugin-replace": "6.0.1",
|
|
54
|
+
"@stylistic/eslint-plugin-js": "2.9.0",
|
|
55
|
+
"@types/cross-spawn": "6.0.6",
|
|
56
|
+
"@types/eslint__js": "8.42.3",
|
|
57
|
+
"@types/ssh2": "1.15.1",
|
|
58
|
+
"@types/terminal-kit": "2.5.6",
|
|
59
|
+
"@types/uuid": "10.0.0",
|
|
60
|
+
"@types/which": "3.0.4",
|
|
61
|
+
"eslint": "9.13.0",
|
|
62
|
+
"eslint-config-prettier": "9.1.0",
|
|
63
|
+
"globals": "15.11.0",
|
|
64
|
+
"prettier": "3.3.3",
|
|
65
|
+
"rollup-plugin-natives": "0.7.8",
|
|
66
|
+
"typescript": "5.6.3",
|
|
67
|
+
"typescript-eslint": "8.11.0",
|
|
68
|
+
"rollup": "4.24.2"
|
|
69
|
+
}
|
|
70
|
+
}
|
package/distTs/src/texts.js
CHANGED
|
@@ -194,8 +194,7 @@ const TXT_NEW_CLI_DOCKER_VERSION = (version) => `A new version of bdy Docker ima
|
|
|
194
194
|
exports.TXT_NEW_CLI_DOCKER_VERSION = TXT_NEW_CLI_DOCKER_VERSION;
|
|
195
195
|
const TXT_NEW_CLI_VERSION = (version) => `A new version of bdy is available! (${version})\n\n`;
|
|
196
196
|
exports.TXT_NEW_CLI_VERSION = TXT_NEW_CLI_VERSION;
|
|
197
|
-
|
|
198
|
-
exports.TXT_NEW_AGENT_VERSION = TXT_NEW_AGENT_VERSION;
|
|
197
|
+
exports.TXT_NEW_AGENT_VERSION = 'Agent upgrade required. Update the agent by running:\n`bdy agent update`\n\n';
|
|
199
198
|
exports.TXT_DISABLING_AGENT = 'Uninstalling agent...';
|
|
200
199
|
exports.TXT_ENABLING_AGENT = 'Installing agent...';
|
|
201
200
|
exports.TXT_UPDATING_AGENT = 'Updating agent...';
|