2017-09-28 10:25:28 -04:00
|
|
|
'use strict'
|
|
|
|
|
2017-09-15 06:37:34 -04:00
|
|
|
const fs = require('fs')
|
|
|
|
const path = require('path')
|
|
|
|
const swBuild = require('workbox-build')
|
|
|
|
const config = require('./workbox.config.json')
|
2017-12-16 07:00:38 -05:00
|
|
|
|
2017-09-15 06:37:34 -04:00
|
|
|
const buildPrefix = '_gh_pages/'
|
|
|
|
|
|
|
|
const workboxSWSrcPath = require.resolve('workbox-sw')
|
|
|
|
const wbFileName = path.basename(workboxSWSrcPath)
|
2017-10-31 06:41:03 -04:00
|
|
|
const workboxSWDestPath = `${buildPrefix}assets/js/vendor/${wbFileName}`
|
2017-09-15 06:37:34 -04:00
|
|
|
const workboxSWSrcMapPath = `${workboxSWSrcPath}.map`
|
|
|
|
const workboxSWDestMapPath = `${workboxSWDestPath}.map`
|
|
|
|
|
|
|
|
fs.createReadStream(workboxSWSrcPath).pipe(fs.createWriteStream(workboxSWDestPath))
|
|
|
|
fs.createReadStream(workboxSWSrcMapPath).pipe(fs.createWriteStream(workboxSWDestMapPath))
|
|
|
|
|
2018-03-16 16:46:58 -04:00
|
|
|
const updateUrl = (manifestEntries) => {
|
|
|
|
const manifest = manifestEntries.map((entry) => {
|
|
|
|
if (entry.url.startsWith(buildPrefix)) {
|
|
|
|
const regex = new RegExp(buildPrefix, 'g')
|
|
|
|
entry.url = entry.url.replace(regex, '')
|
|
|
|
}
|
|
|
|
return entry
|
|
|
|
})
|
|
|
|
return {
|
|
|
|
manifest,
|
|
|
|
warnings: []
|
2017-09-15 06:37:34 -04:00
|
|
|
}
|
2018-03-16 16:46:58 -04:00
|
|
|
}
|
2017-09-15 06:37:34 -04:00
|
|
|
|
|
|
|
config.manifestTransforms = [updateUrl]
|
|
|
|
|
2018-03-16 16:46:58 -04:00
|
|
|
swBuild.injectManifest(config).then(({
|
|
|
|
count,
|
|
|
|
size
|
|
|
|
}) => {
|
2017-09-15 06:37:34 -04:00
|
|
|
const wbSwRegex = /{fileName}/g
|
|
|
|
fs.readFile(config.swDest, 'utf8', (err, data) => {
|
|
|
|
if (err) {
|
|
|
|
throw err
|
|
|
|
}
|
|
|
|
const swFileContents = data.replace(wbSwRegex, wbFileName)
|
|
|
|
fs.writeFile(config.swDest, swFileContents, () => {
|
2018-03-16 16:46:58 -04:00
|
|
|
console.log('Pre-cache Manifest generated.', `Pre-cached ${count} files, totalling ${size} bytes.`)
|
2017-09-15 06:37:34 -04:00
|
|
|
})
|
|
|
|
})
|
2018-03-16 16:46:58 -04:00
|
|
|
}).catch((error) => {
|
|
|
|
console.error(`Something went wrong: ${error}`)
|
2017-09-15 06:37:34 -04:00
|
|
|
})
|