electerm 2.3.36 → 2.3.58

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.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -180,6 +180,7 @@ npm run test
180
180
  # Build linux only with -l
181
181
  npm i
182
182
  npm run b
183
+ npm run pb
183
184
  ./node_modules/.bin/electron-builder --linux tar.gz
184
185
  # or replace tar.gz to rpm/deb/AppImage
185
186
  # check dist/ folder
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "electerm",
3
- "version": "2.3.36",
3
+ "version": "2.3.58",
4
4
  "description": "Terminal/ssh/telnet/serialport/sftp client(linux, mac, win)",
5
5
  "main": "app.js",
6
6
  "bin": "npm/electerm",
@@ -9,13 +9,13 @@
9
9
  "build": "npm run vite-build",
10
10
  "start": "node build/bin/start.js",
11
11
  "icon": "node build/bin/icon",
12
- "ver": "node build/bin/generate-version",
13
12
  "clean": "node build/bin/clean",
14
13
  "compile": "node build/bin/build",
15
14
  "vite-build": "node build/bin/vite-build.js",
16
15
  "prepublishOnly": "node build/bin/prepublish",
17
16
  "postpublish": "node build/bin/postpublish",
18
17
  "prepare-file": "node build/bin/prepare",
18
+ "pb": "node build/bin/prepare-electron-build.js",
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
20
  "postinstall": "node build/bin/post-install",
21
21
  "lint": "./node_modules/.bin/standard --verbose",