2018-09-23 20:26:01 +01:00
|
|
|
import crypto from 'crypto'
|
|
|
|
import fs from 'fs'
|
|
|
|
import pify from 'pify'
|
|
|
|
import path from 'path'
|
2018-12-08 19:21:54 +00: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 15:31:48 +00:00
|
|
|
import { themes } from '../src/routes/_static/themes'
|
2018-09-23 20:26:01 +01:00
|
|
|
|
2018-04-14 23:50:16 +01:00
|
|
|
const writeFile = pify(fs.writeFile.bind(fs))
|
|
|
|
|
2018-12-08 19:21:54 +00:00
|
|
|
const themeColors = fromPairs(themes.map(_ => ([_.name, _.color])))
|
|
|
|
|
2018-12-18 01:21:29 +00:00
|
|
|
export async function buildInlineScript () {
|
2018-09-23 20:26:01 +01:00
|
|
|
let inlineScriptPath = path.join(__dirname, '../inline-script.js')
|
2018-04-14 23:50:16 +01:00
|
|
|
|
2018-12-08 19:21:54 +00: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 18:42:50 +00:00
|
|
|
let { output } = await bundle.generate({
|
2018-12-08 19:21:54 +00:00
|
|
|
format: 'iife',
|
|
|
|
sourcemap: true
|
|
|
|
})
|
|
|
|
|
2019-01-01 18:42:50 +00:00
|
|
|
let { code, map } = output[0]
|
|
|
|
|
2018-12-18 01:21:29 +00:00
|
|
|
let fullCode = `${code}//# sourceMappingURL=/inline-script.js.map`
|
2018-12-08 19:21:54 +00:00
|
|
|
let checksum = crypto.createHash('sha256').update(fullCode).digest('base64')
|
2018-04-14 23:50:16 +01:00
|
|
|
|
2018-12-18 01:21:29 +00:00
|
|
|
await writeFile(path.resolve(__dirname, '../inline-script-checksum.json'),
|
|
|
|
JSON.stringify({ checksum }), 'utf8')
|
|
|
|
await writeFile(path.resolve(__dirname, '../static/inline-script.js.map'),
|
|
|
|
map.toString(), 'utf8')
|
2018-12-08 19:21:54 +00:00
|
|
|
|
2018-12-18 01:21:29 +00:00
|
|
|
return '<script>' + fullCode + '</script>'
|
2018-04-14 23:50:16 +01:00
|
|
|
}
|