@lydell/node-pty 1.0.0-beta.2 → 1.0.0-beta.4

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 +5 -4
  2. package/package.json +6 -5
package/README.md CHANGED
@@ -17,13 +17,14 @@ Copyright (c) 2018, Microsoft Corporation (MIT License).
17
17
 
18
18
  ## Version
19
19
 
20
- @lydell/node-pty@1.0.0-beta.2 is based on node-pty@1.0.0 (plus maybe a few more unreleased commits).
20
+ @lydell/node-pty@1.0.0-beta.4 is based on node-pty@1.0.0 (plus maybe a few more unreleased commits).
21
21
 
22
22
  ## Prebuilt binaries
23
23
 
24
24
  This package includes prebuilt binaries for the following platforms and architectures:
25
25
 
26
- - macOS (darwin-x64)
27
- - macOS ARM (darwin-arm64)
26
+ - macOS x86_64 (darwin-x64) (not tested)
27
+ - macOS ARM64 (darwin-arm64)
28
28
  - Linux x86_64 (linux-x64)
29
- - Windows (win32-x64)
29
+ - Windows x86_64 (win32-x64)
30
+ - Windows ARM64 (win32-arm64) (not tested)
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@lydell/node-pty",
3
3
  "description": "node-pty with prebuilt binaries",
4
4
  "author": "Simon Lydell",
5
- "version": "1.0.0-beta.2",
5
+ "version": "1.0.0-beta.4",
6
6
  "license": "MIT",
7
7
  "main": "./index.js",
8
8
  "types": "./node-pty.d.ts",
@@ -24,9 +24,10 @@
24
24
  "node-addon-api": "^7.1.0"
25
25
  },
26
26
  "optionalDependencies": {
27
- "@lydell/node-pty-darwin-x64": "1.0.0-beta.2",
28
- "@lydell/node-pty-darwin-arm64": "1.0.0-beta.2",
29
- "@lydell/node-pty-linux-x64": "1.0.0-beta.2",
30
- "@lydell/node-pty-win32-x64": "1.0.0-beta.2"
27
+ "@lydell/node-pty-darwin-x64": "1.0.0-beta.4",
28
+ "@lydell/node-pty-darwin-arm64": "1.0.0-beta.4",
29
+ "@lydell/node-pty-linux-x64": "1.0.0-beta.4",
30
+ "@lydell/node-pty-win32-x64": "1.0.0-beta.4",
31
+ "@lydell/node-pty-win32-arm64": "1.0.0-beta.4"
31
32
  }
32
33
  }