File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ require.main === module &&
46
46
$ `cleaning build folder`
47
47
await fs . emptyDir ( fromRoot ( 'build' ) )
48
48
await copyAll ( )
49
- await run ( " babel --extensions .ts,.tsx src -d build" )
49
+ await run ( ' babel --extensions .ts,.tsx src -d build' )
50
50
} )
51
51
52
52
module . exports = { paths, copy, copyAll }
Original file line number Diff line number Diff line change 1
1
'use strict'
2
2
3
- const { go, run, } = require ( './runner' )
3
+ const { go, run } = require ( './runner' )
4
4
5
5
go ( async ( ) => {
6
6
// TODO(smolck): Maybe verify `npm run build` has been run first somehow?
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ go(async () => {
10
10
await copyAll ( )
11
11
12
12
$ `running babel stuff`
13
- await run ( " babel --extensions ' .ts,.tsx' src -d build" )
13
+ await run ( ' babel --extensions .ts,.tsx src -d build' )
14
14
15
15
run ( 'electron build/bootstrap/main.js' , {
16
16
shh : true ,
You can’t perform that action at this time.
0 commit comments