Skip to content

Commit d4ed8c9

Browse files
committed
'.ts,.tsx' -> .ts,.tsx to make command work on windows, format
1 parent 4563536 commit d4ed8c9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tools/build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ require.main === module &&
4646
$`cleaning build folder`
4747
await fs.emptyDir(fromRoot('build'))
4848
await copyAll()
49-
await run("babel --extensions .ts,.tsx src -d build")
49+
await run('babel --extensions .ts,.tsx src -d build')
5050
})
5151

5252
module.exports = { paths, copy, copyAll }

tools/start-release.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict'
22

3-
const { go, run, } = require('./runner')
3+
const { go, run } = require('./runner')
44

55
go(async () => {
66
// TODO(smolck): Maybe verify `npm run build` has been run first somehow?

tools/start.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ go(async () => {
1010
await copyAll()
1111

1212
$`running babel stuff`
13-
await run("babel --extensions '.ts,.tsx' src -d build")
13+
await run('babel --extensions .ts,.tsx src -d build')
1414

1515
run('electron build/bootstrap/main.js', {
1616
shh: true,

0 commit comments

Comments
 (0)