electerm 1.37.106 → 1.37.110
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/README.md +5 -1
- package/package.json +1 -3
package/README.md
CHANGED
|
@@ -166,8 +166,12 @@ npm run test
|
|
|
166
166
|
# Build linux only with -l
|
|
167
167
|
npm i
|
|
168
168
|
npm run prepare-build
|
|
169
|
-
|
|
169
|
+
./node_modules/.bin/electron-builder --linux tar.gz
|
|
170
|
+
# or replace tar.gz to rpm/deb/AppImage
|
|
170
171
|
# check dist/ folder
|
|
172
|
+
|
|
173
|
+
# build for linux arm/
|
|
174
|
+
./node_modules/.bin/electron-builder --linux --arm64
|
|
171
175
|
```
|
|
172
176
|
|
|
173
177
|
## Use
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "electerm",
|
|
3
|
-
"version": "1.37.
|
|
3
|
+
"version": "1.37.110",
|
|
4
4
|
"description": "Terminal/ssh/telnet/serialport/sftp client(linux, mac, win)",
|
|
5
5
|
"main": "app.js",
|
|
6
6
|
"bin": "npm/electerm",
|
|
@@ -17,8 +17,6 @@
|
|
|
17
17
|
"postpublish": "node build/bin/postpublish",
|
|
18
18
|
"prepare-file": "node build/bin/prepare",
|
|
19
19
|
"prepare-test": "PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 npm i -E playwright@1.28.1 --no-save && npm i -E @playwright/test@1.28.1 --no-save",
|
|
20
|
-
"output": "./node_modules/.bin/electron-builder",
|
|
21
|
-
"release": "npm run pre-test && npm run output",
|
|
22
20
|
"postinstall": "node build/bin/post-install",
|
|
23
21
|
"lint": "./node_modules/.bin/standard --verbose",
|
|
24
22
|
"fix": "./node_modules/.bin/standard --fix",
|