Skip to content
This repository was archived by the owner on Dec 27, 2022. It is now read-only.

Commit 63da273

Browse files
committed
1 parent 2e4fc48 commit 63da273

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

scripts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "beakerbrowser",
33
"devDependencies": {
44
"browserify": "^16.0.0",
5-
"electron": "9.0.0-beta.24",
5+
"electron": "9.0.0",
66
"electron-builder": "^22.6.0",
77
"electron-notarize": "^0.3.0",
88
"eslint": "^4.5.0",

scripts/tasks/rebuild.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ function runAsync (...args) {
1111

1212
const MODULES_NEEDING_REBUILD = ['sqlite3']
1313

14-
//(cd app && HOME=~/.electron-gyp npm rebuild --runtime=electron --target=9.0.0-beta.24 --disturl=https://atom.io/download/atom-shell --build-from-source); gulp build
14+
//(cd app && HOME=~/.electron-gyp npm rebuild --runtime=electron --target=9.0.0 --disturl=https://atom.io/download/atom-shell --build-from-source); gulp build
1515

1616
gulp.task('rebuild', gulp.series(async () => {
1717
// TODO read electron version
@@ -27,7 +27,7 @@ gulp.task('rebuild', gulp.series(async () => {
2727
}
2828
env.HOME = path.join(homedir, '.electron-gyp')
2929
for (let mod of MODULES_NEEDING_REBUILD) {
30-
await runAsync(`npm rebuild ${mod} --runtime=electron --target=9.0.0-beta.24 --disturl=https://atom.io/download/atom-shell --build-from-source`, {cwd, env, shell: true})
30+
await runAsync(`npm rebuild ${mod} --runtime=electron --target=9.0.0 --disturl=https://atom.io/download/atom-shell --build-from-source`, {cwd, env, shell: true})
3131
}
3232
await runAsync(`npm run build`, {shell: true})
3333
}))

0 commit comments

Comments
 (0)