2018-09-23 21:26:01 +02:00
|
|
|
import crypto from 'crypto'
|
|
|
|
import fs from 'fs'
|
2019-01-20 00:06:25 +01:00
|
|
|
import { promisify } from 'util'
|
2018-09-23 21:26:01 +02:00
|
|
|
import path from 'path'
|
2018-12-08 20:21:54 +01:00
|
|
|
import { rollup } from 'rollup'
|
|
|
|
import { terser } from 'rollup-plugin-terser'
|
|
|
|
import replace from 'rollup-plugin-replace'
|
|
|
|
import fromPairs from 'lodash-es/fromPairs'
|
2018-12-11 16:31:48 +01:00
|
|
|
import { themes } from '../src/routes/_static/themes'
|
2018-09-23 21:26:01 +02:00
|
|
|
|
2019-01-20 00:06:25 +01:00
|
|
|
const writeFile = promisify(fs.writeFile)
|
2018-04-15 00:50:16 +02:00
|
|
|
|
2018-12-08 20:21:54 +01:00
|
|
|
const themeColors = fromPairs(themes.map(_ => ([_.name, _.color])))
|
|
|
|
|
2018-12-18 02:21:29 +01:00
|
|
|
export async function buildInlineScript () {
|
2019-01-26 19:14:15 +01:00
|
|
|
let inlineScriptPath = path.join(__dirname, '../src/inline-script/inline-script.js')
|
2018-04-15 00:50:16 +02:00
|
|
|
|
2018-12-08 20:21:54 +01:00
|
|
|
let bundle = await rollup({
|
|
|
|
input: inlineScriptPath,
|
|
|
|
plugins: [
|
|
|
|
replace({
|
|
|
|
'process.browser': true,
|
|
|
|
'process.env.THEME_COLORS': JSON.stringify(themeColors)
|
|
|
|
}),
|
|
|
|
terser({
|
|
|
|
mangle: true,
|
|
|
|
compress: true
|
|
|
|
})
|
|
|
|
]
|
|
|
|
})
|
2019-01-01 19:42:50 +01:00
|
|
|
let { output } = await bundle.generate({
|
2018-12-08 20:21:54 +01:00
|
|
|
format: 'iife',
|
|
|
|
sourcemap: true
|
|
|
|
})
|
|
|
|
|
2019-01-01 19:42:50 +01:00
|
|
|
let { code, map } = output[0]
|
|
|
|
|
2018-12-18 02:21:29 +01:00
|
|
|
let fullCode = `${code}//# sourceMappingURL=/inline-script.js.map`
|
2018-12-08 20:21:54 +01:00
|
|
|
let checksum = crypto.createHash('sha256').update(fullCode).digest('base64')
|
2018-04-15 00:50:16 +02:00
|
|
|
|
2019-01-26 19:14:15 +01:00
|
|
|
await writeFile(path.resolve(__dirname, '../src/inline-script/checksum.js'),
|
|
|
|
`module.exports = ${JSON.stringify(checksum)}`, 'utf8')
|
2018-12-18 02:21:29 +01:00
|
|
|
await writeFile(path.resolve(__dirname, '../static/inline-script.js.map'),
|
|
|
|
map.toString(), 'utf8')
|
2018-12-08 20:21:54 +01:00
|
|
|
|
2018-12-18 02:21:29 +01:00
|
|
|
return '<script>' + fullCode + '</script>'
|
2018-04-15 00:50:16 +02:00
|
|
|
}
|