Only hint modules once
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details

pull/24/head
Cadence Ember 3 years ago
parent 017f30be65
commit 1aebc2c100
Signed by: cadence
GPG Key ID: BC1C2C61CF521B17

@ -147,7 +147,7 @@ async function addJS(sourcePath, targetPath) {
async function addBundle(sourcePath, targetPath, module = false) {
let opts = {}
if(module) opts.standalone = sourcePath
if (module) opts.standalone = sourcePath
const content = await new Promise(resolve => {
browserify([], opts)
.add(pj(".", sourcePath))
@ -175,7 +175,6 @@ async function addBundle(sourcePath, targetPath, module = false) {
})
const writer = fs.promises.writeFile(pj(buildDir, targetPath), content)
staticFiles.set(sourcePath, `${targetPath}?static=${hash(content)}`)
runHint(sourcePath, content)
await writer
}

Loading…
Cancel
Save