1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 18:00:18 +01:00

Remove unused parameter in styles build script (#9710)

The `devMode` parameter being passed to the `buildScss` function was
not being used. The `buildScss` function was declared _inside_ the
function in which it is invoked, so the `devMode` variable is already
in scope - it doesn't need to be passed in.
This commit is contained in:
Mark Stacey 2020-10-26 11:01:07 -02:30 committed by GitHub
parent 6e89b60a4a
commit 84bd2dcce7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -50,7 +50,7 @@ function createStyleTasks ({ livereload }) {
livereload.changed(event.path)
})
}
await buildScss(devMode)
await buildScss()
}
async function buildScss () {