Build sourcemaps with non-script instances
This commit is contained in:
parent
f293cbd05f
commit
66cba49172
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ function getSourcemap(root: string): Promise<RojoSourcemap> {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
let stdout = ''
|
let stdout = ''
|
||||||
let stderr = ''
|
let stderr = ''
|
||||||
const rojo = spawn('rojo', ['sourcemap', root])
|
const rojo = spawn('rojo', ['sourcemap', '--include-non-scripts', root])
|
||||||
rojo.stdout.on('data', (data) => {
|
rojo.stdout.on('data', (data) => {
|
||||||
stdout += data.toString()
|
stdout += data.toString()
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue