pear-electron 1.4.15 → 1.4.16

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/package.json +3 -3
  2. package/runtime.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pear-electron",
3
- "version": "1.4.15",
3
+ "version": "1.4.16",
4
4
  "description": "Pear User-Interface Library for Electron",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -17,7 +17,7 @@
17
17
  "pre.js"
18
18
  ],
19
19
  "pear": {
20
- "bootstrap": "pear://0.2648.yceb7sjhgfzsnza7oc38hy3oxu9dhnywi3mzxdm9ubc48kjnxqgo",
20
+ "bootstrap": "pear://0.2650.yceb7sjhgfzsnza7oc38hy3oxu9dhnywi3mzxdm9ubc48kjnxqgo",
21
21
  "stage": {
22
22
  "skipWarmup": "true",
23
23
  "only": [
@@ -63,7 +63,7 @@
63
63
  "localdrive": "^1.12.1",
64
64
  "paparam": "^1.6.1",
65
65
  "pear-api": "^1.16.0",
66
- "pear-ipc": "^6.1.0",
66
+ "pear-ipc": "^6.3.0",
67
67
  "script-linker": "^2.5.3",
68
68
  "streamx": "^2.20.2",
69
69
  "url-file-url": "^1.0.4",
package/runtime.js CHANGED
@@ -20,7 +20,7 @@ const pkg = require('./package.json')
20
20
  const bin = (name = Pear.config.name) => {
21
21
  const formatedName = name[0].toUpperCase() + name.slice(1)
22
22
  const app = isMac ? formatedName + ' Runtime.app' : name + '-runtime-app'
23
- const exe = isWindows ? formatedName + 'Runtime.exe' : (isMac ? 'Contents/MacOS/' + formatedName + ' Runtime' : name + '-runtime')
23
+ const exe = isWindows ? formatedName + ' Runtime.exe' : (isMac ? 'Contents/MacOS/' + formatedName + ' Runtime' : name + '-runtime')
24
24
  return isWindows ? 'bin\\' + app + '\\' + exe : (isMac ? 'bin/' + app + '/' + exe : 'bin/' + app + '/' + exe)
25
25
  }
26
26
 
@@ -121,7 +121,7 @@ class PearElectron {
121
121
  dir
122
122
  })
123
123
 
124
- argv = ['boot.bundle', '--rti', info, ...argv]
124
+ argv = ['run', '--rti', info, ...argv]
125
125
  const stdio = args.detach
126
126
  ? ['ignore', 'ignore', 'ignore', 'overlapped']
127
127
  : ['ignore', 'inherit', 'pipe', 'overlapped']