File tree 3 files changed +3
-5
lines changed
3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,6 @@ const connectApp = function (readSw) {
37
37
store . subscribe ( ( ) => {
38
38
const state = store . getState ( )
39
39
if ( state . appState . shouldClose ) window . close ( )
40
- console . log ( 'IN the things?' )
41
40
} )
42
41
} )
43
42
}
Original file line number Diff line number Diff line change @@ -8,7 +8,9 @@ var b = browserify();
8
8
// Remove old bundle
9
9
try {
10
10
fs . unlinkSync ( bundlePath )
11
- } catch ( e ) { }
11
+ } catch ( e ) {
12
+ console . error ( e )
13
+ }
12
14
13
15
var writeStream = fs . createWriteStream ( bundlePath )
14
16
Original file line number Diff line number Diff line change 1
1
const Helper = require ( './util/mascara-test-helper.js' )
2
2
3
3
window . addEventListener ( 'load' , ( ) => {
4
- // const helper = new Helper()
5
- // helper.on('complete', () => require('../src/ui.js'))
6
- // helper.tryToCleanContext()
7
4
require ( '../src/ui.js' )
8
5
} )
You can’t perform that action at this time.
0 commit comments