Skip to content

Commit b4909a9

Browse files
authored
Merge branch 'master' into upstream_master
2 parents 4b27991 + 022ae82 commit b4909a9

32 files changed

+1136
-1335
lines changed

.github/pull.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: "1"
2+
rules: # Array of rules
3+
- base: upstream_master # Required. Target branch
4+
upstream: atom:master # Required. Must be in the same fork network.
5+
mergeMethod: hardreset # Optional, one of [none, merge, squash, rebase, hardreset], Default: none.
6+
mergeUnstable: false # Optional, merge pull request even when the mergeable_state is not clean. Default: false
7+
label: ":arrow_heading_down: pull upstream" # Optional

package-lock.json

Lines changed: 27 additions & 60 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
"url": "https://github.com/atom/atom/issues"
1313
},
1414
"license": "MIT",
15-
"electronVersion": "5.0.13",
15+
"electronVersion": "6.1.12",
1616
"dependencies": {
1717
"@atom/nsfw": "1.0.26",
1818
"@atom/source-map-support": "^0.3.4",
19-
"@atom/watcher": "1.3.1",
19+
"@atom/watcher": "1.3.4-0",
2020
"about": "file:packages/about",
2121
"archive-view": "https://www.atom.io/api/packages/archive-view/versions/0.65.2/tarball",
2222
"async": "0.2.6",
@@ -50,13 +50,13 @@
5050
"deprecation-cop": "file:packages/deprecation-cop",
5151
"dev-live-reload": "file:packages/dev-live-reload",
5252
"devtron": "1.3.0",
53-
"electron-notarize": "0.2.1",
54-
"electron-osx-sign": "0.4.15",
53+
"electron-notarize": "0.3.0",
54+
"electron-osx-sign": "0.4.16",
5555
"encoding-selector": "https://www.atom.io/api/packages/encoding-selector/versions/0.23.9/tarball",
5656
"etch": "^0.12.6",
5757
"event-kit": "^2.5.3",
5858
"exception-reporting": "file:packages/exception-reporting",
59-
"find-and-replace": "https://www.atom.io/api/packages/find-and-replace/versions/0.219.3/tarball",
59+
"find-and-replace": "https://www.atom.io/api/packages/find-and-replace/versions/0.219.5/tarball",
6060
"find-parent-dir": "^0.3.0",
6161
"first-mate": "7.4.1",
6262
"focus-trap": "2.4.5",
@@ -143,11 +143,11 @@
143143
"resolve": "1.17.0",
144144
"scandal": "^3.2.0",
145145
"scoped-property-store": "^0.17.0",
146-
"scrollbar-style": "^3.2",
146+
"scrollbar-style": "3.2.1",
147147
"season": "^6.0.2",
148148
"semver": "7.3.2",
149149
"service-hub": "^0.7.4",
150-
"settings-view": "https://www.atom.io/api/packages/settings-view/versions/0.261.4/tarball",
150+
"settings-view": "https://www.atom.io/api/packages/settings-view/versions/0.261.5/tarball",
151151
"sinon": "1.17.4",
152152
"snippets": "https://www.atom.io/api/packages/snippets/versions/1.5.1/tarball",
153153
"solarized-dark-syntax": "file:packages/solarized-dark-syntax",
@@ -202,7 +202,7 @@
202202
"dev-live-reload": "file:./packages/dev-live-reload",
203203
"encoding-selector": "0.23.9",
204204
"exception-reporting": "file:./packages/exception-reporting",
205-
"find-and-replace": "0.219.3",
205+
"find-and-replace": "0.219.5",
206206
"fuzzy-finder": "1.14.2",
207207
"github": "0.34.2",
208208
"git-diff": "file:./packages/git-diff",
@@ -218,7 +218,7 @@
218218
"notifications": "0.71.0",
219219
"open-on-github": "1.3.2",
220220
"package-generator": "1.3.0",
221-
"settings-view": "0.261.4",
221+
"settings-view": "0.261.5",
222222
"snippets": "1.5.1",
223223
"spell-check": "0.76.1",
224224
"status-bar": "1.8.17",

script/lib/package-application.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const assert = require('assert');
44
const childProcess = require('child_process');
55
const electronPackager = require('electron-packager');
66
const fs = require('fs-extra');
7-
const hostArch = require('electron-packager/targets').hostArch;
7+
const hostArch = require('@electron/get').getHostArch;
88
const includePathInPackagedApp = require('./include-path-in-packaged-app');
99
const getLicenseText = require('./get-license-text');
1010
const path = require('path');

0 commit comments

Comments
 (0)