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.
feature/default_network_editable
Mark Stacey 4 years ago committed by GitHub
parent 6e89b60a4a
commit 84bd2dcce7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      development/build/styles.js

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

Loading…
Cancel
Save