bare 1.26.0 → 1.27.0
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/index.d.ts +1 -3
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -23,13 +23,11 @@ interface BareEvents extends EventMap {
|
|
|
23
23
|
interface Bare extends EventEmitter<BareEvents> {
|
|
24
24
|
readonly platform: 'android' | 'darwin' | 'ios' | 'linux' | 'win32'
|
|
25
25
|
readonly arch: 'arm' | 'arm64' | 'ia32' | 'x64' | 'mips' | 'mipsel'
|
|
26
|
+
/** @deprecated */
|
|
26
27
|
readonly simulator: boolean
|
|
27
28
|
readonly argv: string[]
|
|
28
29
|
readonly pid: number
|
|
29
30
|
exitCode: number
|
|
30
|
-
readonly suspending: boolean
|
|
31
|
-
readonly suspended: boolean
|
|
32
|
-
readonly exiting: boolean
|
|
33
31
|
readonly version: string
|
|
34
32
|
readonly versions: { readonly [package: string]: string }
|
|
35
33
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bare",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.27.0",
|
|
4
4
|
"description": "Small and modular JavaScript runtime for desktop and mobile",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
},
|
|
30
30
|
"homepage": "https://github.com/holepunchto/bare",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"bare-runtime": "1.
|
|
32
|
+
"bare-runtime": "1.27.0"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
35
|
"bare-buffer": "*",
|