electron 4.0.0-nightly.20180821 → 4.0.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/README.md +8 -2
- package/cli.js +1 -1
- package/electron.d.ts +563 -259
- package/install.js +1 -1
- package/package.json +1 -1
package/install.js
CHANGED
|
@@ -37,7 +37,7 @@ download({
|
|
|
37
37
|
// unzips and makes path.txt point at the correct executable
|
|
38
38
|
function extractFile (err, zipPath) {
|
|
39
39
|
if (err) return onerror(err)
|
|
40
|
-
extract(zipPath, {dir: path.join(__dirname, 'dist')}, function (err) {
|
|
40
|
+
extract(zipPath, { dir: path.join(__dirname, 'dist') }, function (err) {
|
|
41
41
|
if (err) return onerror(err)
|
|
42
42
|
fs.writeFile(path.join(__dirname, 'path.txt'), platformPath, function (err) {
|
|
43
43
|
if (err) return onerror(err)
|
package/package.json
CHANGED
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"node": ">= 4.0"
|
|
28
28
|
},
|
|
29
29
|
"name": "electron",
|
|
30
|
-
"version": "4.0.0
|
|
30
|
+
"version": "4.0.0",
|
|
31
31
|
"repository": "https://github.com/electron/electron",
|
|
32
32
|
"description": "Build cross platform desktop apps with JavaScript, HTML, and CSS",
|
|
33
33
|
"license": "MIT",
|