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

Commit 1714c89

Browse files
committed
1 parent c0a5d46 commit 1714c89

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "beakerbrowser",
44
"devDependencies": {
55
"browserify": "^13.0.1",
6-
"electron": "2.0.0-beta.7",
6+
"electron": "2.0.0",
77
"electron-builder": "~20.8.0",
88
"eslint": "^4.5.0",
99
"eslint-plugin-import": "^2.7.0",

tasks/rebuild.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ var gulp = require('gulp')
22
var path = require('path')
33
var run = require('./util-run')
44

5-
//(cd app && npm rebuild --runtime=electron --target=2.0.0-beta.7 --disturl=https://atom.io/download/atom-shell --build-from-source); gulp build
5+
//(cd app && npm rebuild --runtime=electron --target=2.0.0 --disturl=https://atom.io/download/atom-shell --build-from-source); gulp build
66

77
gulp.task('rebuild', function () {
88
// TODO read electron version
99
var cwd = path.join(process.cwd(), 'app')
1010
console.log(cwd)
11-
run(`npm rebuild --runtime=electron --target=2.0.0-beta.7 --disturl=https://atom.io/download/atom-shell --build-from-source`, {cwd, shell: true}, function () {
11+
run(`npm rebuild --runtime=electron --target=2.0.0 --disturl=https://atom.io/download/atom-shell --build-from-source`, {cwd, shell: true}, function () {
1212
run(`npm run build`, {shell: true}, function () {
1313
process.exit(0)
1414
})

0 commit comments

Comments
 (0)