2020-08-05 22:08:55 +05:30
|
|
|
/*
|
|
|
|
Copyright 2020 Bruno Windels <bruno@windels.cloud>
|
2020-08-05 22:29:16 +05:30
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
2020-08-05 22:08:55 +05:30
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2019-09-15 12:44:20 +05:30
|
|
|
import cheerio from "cheerio";
|
|
|
|
import fsRoot from "fs";
|
|
|
|
const fs = fsRoot.promises;
|
|
|
|
import path from "path";
|
2020-08-13 22:29:31 +05:30
|
|
|
import XXHash from 'xxhash';
|
2019-09-15 12:44:20 +05:30
|
|
|
import rollup from 'rollup';
|
|
|
|
import postcss from "postcss";
|
|
|
|
import postcssImport from "postcss-import";
|
|
|
|
import { fileURLToPath } from 'url';
|
|
|
|
import { dirname } from 'path';
|
2020-08-13 22:29:31 +05:30
|
|
|
import commander from "commander";
|
2020-08-05 22:04:41 +05:30
|
|
|
// needed for legacy bundle
|
|
|
|
import babel from '@rollup/plugin-babel';
|
|
|
|
// needed to find the polyfill modules in the main-legacy.js bundle
|
|
|
|
import { nodeResolve } from '@rollup/plugin-node-resolve';
|
|
|
|
// needed because some of the polyfills are written as commonjs modules
|
|
|
|
import commonjs from '@rollup/plugin-commonjs';
|
2020-08-07 20:20:18 +05:30
|
|
|
// multi-entry plugin so we can add polyfill file to main
|
|
|
|
import multi from '@rollup/plugin-multi-entry';
|
2020-08-14 14:15:14 +05:30
|
|
|
// replace urls of asset names with content hashed version
|
|
|
|
import postcssUrl from "postcss-url";
|
2019-09-15 12:44:20 +05:30
|
|
|
|
2020-08-07 22:45:53 +05:30
|
|
|
import cssvariables from "postcss-css-variables";
|
|
|
|
import flexbugsFixes from "postcss-flexbugs-fixes";
|
|
|
|
|
2020-08-05 22:04:41 +05:30
|
|
|
const PROJECT_ID = "hydrogen";
|
|
|
|
const PROJECT_SHORT_NAME = "Hydrogen";
|
|
|
|
const PROJECT_NAME = "Hydrogen Chat";
|
2019-09-15 12:44:20 +05:30
|
|
|
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
|
|
const __dirname = dirname(__filename);
|
|
|
|
const projectDir = path.join(__dirname, "../");
|
2020-08-13 22:29:31 +05:30
|
|
|
const cssSrcDir = path.join(projectDir, "src/ui/web/css/");
|
|
|
|
const targetDir = path.join(projectDir, "target/");
|
2019-09-15 12:44:20 +05:30
|
|
|
|
2020-08-13 22:29:31 +05:30
|
|
|
const program = new commander.Command();
|
|
|
|
program
|
|
|
|
.option("--legacy", "make a build for IE11")
|
|
|
|
.option("--no-offline", "make a build without a service worker or appcache manifest")
|
|
|
|
program.parse(process.argv);
|
|
|
|
const {debug, noOffline, legacy} = program;
|
2020-08-05 22:04:41 +05:30
|
|
|
const offline = !noOffline;
|
2019-09-15 15:52:43 +05:30
|
|
|
|
2019-09-15 12:44:20 +05:30
|
|
|
async function build() {
|
2019-09-15 15:52:43 +05:30
|
|
|
// get version number
|
|
|
|
const version = JSON.parse(await fs.readFile(path.join(projectDir, "package.json"), "utf8")).version;
|
2020-08-12 20:05:48 +05:30
|
|
|
|
|
|
|
const devHtml = await fs.readFile(path.join(projectDir, "index.html"), "utf8");
|
|
|
|
const doc = cheerio.load(devHtml);
|
|
|
|
const themes = [];
|
|
|
|
findThemes(doc, themeName => {
|
|
|
|
themes.push(themeName);
|
|
|
|
});
|
2020-08-13 22:29:31 +05:30
|
|
|
// clear target dir
|
|
|
|
await removeDirIfExists(targetDir);
|
|
|
|
await createDirs(targetDir, themes);
|
2020-08-12 20:07:55 +05:30
|
|
|
// also creates the directories where the theme css bundles are placed in,
|
|
|
|
// so do it first
|
|
|
|
const themeAssets = await copyThemeAssets(themes, legacy);
|
2020-08-13 22:29:31 +05:30
|
|
|
const jsBundlePath = await (legacy ? buildJsLegacy() : buildJs());
|
2020-08-14 14:15:14 +05:30
|
|
|
const cssBundlePaths = await buildCssBundles(legacy ? buildCssLegacy : buildCss, themes, themeAssets);
|
2020-08-13 22:29:31 +05:30
|
|
|
const assetPaths = createAssetPaths(jsBundlePath, cssBundlePaths, themeAssets);
|
2020-08-12 20:07:55 +05:30
|
|
|
|
2020-08-14 14:36:39 +05:30
|
|
|
let manifestPath;
|
2019-09-28 13:15:01 +05:30
|
|
|
if (offline) {
|
2020-08-14 14:36:39 +05:30
|
|
|
manifestPath = await buildOffline(version, assetPaths);
|
2019-09-28 13:15:01 +05:30
|
|
|
}
|
2020-08-14 14:36:39 +05:30
|
|
|
await buildHtml(doc, version, assetPaths, manifestPath);
|
2019-09-15 18:02:12 +05:30
|
|
|
|
2020-08-05 22:04:41 +05:30
|
|
|
console.log(`built ${PROJECT_ID}${legacy ? " legacy" : ""} ${version} successfully`);
|
2019-09-15 18:02:12 +05:30
|
|
|
}
|
|
|
|
|
2020-08-13 22:29:31 +05:30
|
|
|
function createAssetPaths(jsBundlePath, cssBundlePaths, themeAssets) {
|
|
|
|
function trim(path) {
|
|
|
|
if (!path.startsWith(targetDir)) {
|
|
|
|
throw new Error("invalid target path: " + targetDir);
|
|
|
|
}
|
|
|
|
return path.substr(targetDir.length);
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
jsBundle: () => trim(jsBundlePath),
|
|
|
|
cssMainBundle: () => trim(cssBundlePaths.main),
|
|
|
|
cssThemeBundle: themeName => trim(cssBundlePaths.themes[themeName]),
|
|
|
|
cssThemeBundles: () => Object.values(cssBundlePaths.themes).map(a => trim(a)),
|
2020-08-14 14:15:14 +05:30
|
|
|
otherAssets: () => Object.values(themeAssets).map(a => trim(a))
|
2020-08-13 22:29:31 +05:30
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-08-12 20:05:48 +05:30
|
|
|
async function findThemes(doc, callback) {
|
|
|
|
doc("link[rel~=stylesheet][title]").each((i, el) => {
|
|
|
|
const theme = doc(el);
|
|
|
|
const href = theme.attr("href");
|
|
|
|
const themesPrefix = "/themes/";
|
|
|
|
const prefixIdx = href.indexOf(themesPrefix);
|
|
|
|
if (prefixIdx !== -1) {
|
|
|
|
const themeNameStart = prefixIdx + themesPrefix.length;
|
|
|
|
const themeNameEnd = href.indexOf("/", themeNameStart);
|
|
|
|
const themeName = href.substr(themeNameStart, themeNameEnd - themeNameStart);
|
|
|
|
callback(themeName, theme);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-08-13 22:29:31 +05:30
|
|
|
async function createDirs(targetDir, themes) {
|
|
|
|
await fs.mkdir(targetDir);
|
|
|
|
const themeDir = path.join(targetDir, "themes");
|
|
|
|
await fs.mkdir(themeDir);
|
|
|
|
for (const theme of themes) {
|
|
|
|
await fs.mkdir(path.join(themeDir, theme));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-12 20:07:55 +05:30
|
|
|
async function copyThemeAssets(themes, legacy) {
|
2020-08-14 14:15:14 +05:30
|
|
|
const assets = {};
|
2020-08-12 20:07:55 +05:30
|
|
|
for (const theme of themes) {
|
|
|
|
const themeDstFolder = path.join(targetDir, `themes/${theme}`);
|
2020-08-13 22:29:31 +05:30
|
|
|
const themeSrcFolder = path.join(cssSrcDir, `themes/${theme}`);
|
|
|
|
const themeAssets = await copyFolder(themeSrcFolder, themeDstFolder, file => {
|
2020-08-12 20:07:55 +05:30
|
|
|
const isUnneededFont = legacy ? file.endsWith(".woff2") : file.endsWith(".woff");
|
2020-08-13 22:29:31 +05:30
|
|
|
return !file.endsWith(".css") && !isUnneededFont;
|
2020-08-12 20:07:55 +05:30
|
|
|
});
|
2020-08-14 14:15:14 +05:30
|
|
|
Object.assign(assets, themeAssets);
|
2020-08-12 20:07:55 +05:30
|
|
|
}
|
|
|
|
return assets;
|
|
|
|
}
|
|
|
|
|
2020-08-14 14:36:39 +05:30
|
|
|
async function buildHtml(doc, version, assetPaths, manifestPath) {
|
2019-09-15 12:44:20 +05:30
|
|
|
// transform html file
|
2020-08-12 20:05:48 +05:30
|
|
|
// change path to main.css to css bundle
|
2020-08-13 22:29:31 +05:30
|
|
|
doc("link[rel=stylesheet]:not([title])").attr("href", assetPaths.cssMainBundle());
|
2020-08-12 20:05:48 +05:30
|
|
|
// change paths to all theme stylesheets
|
|
|
|
findThemes(doc, (themeName, theme) => {
|
2020-08-13 22:29:31 +05:30
|
|
|
theme.attr("href", assetPaths.cssThemeBundle(themeName));
|
2020-08-12 20:05:48 +05:30
|
|
|
});
|
2019-09-15 18:02:12 +05:30
|
|
|
doc("script#main").replaceWith(
|
2020-08-13 22:29:31 +05:30
|
|
|
`<script type="text/javascript" src="${assetPaths.jsBundle()}"></script>` +
|
2020-08-07 20:20:18 +05:30
|
|
|
`<script type="text/javascript">${PROJECT_ID}Bundle.main(document.body);</script>`);
|
2019-10-12 23:53:37 +05:30
|
|
|
removeOrEnableScript(doc("script#service-worker"), offline);
|
2020-03-24 03:16:31 +05:30
|
|
|
|
|
|
|
const versionScript = doc("script#version");
|
|
|
|
versionScript.attr("type", "text/javascript");
|
|
|
|
let vSource = versionScript.contents().text();
|
|
|
|
vSource = vSource.replace(`"%%VERSION%%"`, `"${version}"`);
|
|
|
|
versionScript.text(vSource);
|
|
|
|
|
2019-09-28 13:15:01 +05:30
|
|
|
if (offline) {
|
|
|
|
doc("html").attr("manifest", "manifest.appcache");
|
2020-08-14 14:36:39 +05:30
|
|
|
doc("head").append(`<link rel="manifest" href="${manifestPath.substr(targetDir.length)}">`);
|
2019-09-28 13:15:01 +05:30
|
|
|
}
|
2019-09-15 12:44:20 +05:30
|
|
|
await fs.writeFile(path.join(targetDir, "index.html"), doc.html(), "utf8");
|
2019-09-15 18:02:12 +05:30
|
|
|
}
|
|
|
|
|
2020-08-13 22:29:31 +05:30
|
|
|
async function buildJs() {
|
2019-09-15 12:44:20 +05:30
|
|
|
// create js bundle
|
2020-08-07 13:38:08 +05:30
|
|
|
const bundle = await rollup.rollup({input: 'src/main.js'});
|
2020-08-13 22:29:31 +05:30
|
|
|
const {output} = await bundle.generate({
|
2020-08-07 13:38:08 +05:30
|
|
|
format: 'iife',
|
2020-08-07 20:20:18 +05:30
|
|
|
name: `${PROJECT_ID}Bundle`
|
2020-08-07 13:38:08 +05:30
|
|
|
});
|
2020-08-13 22:29:31 +05:30
|
|
|
const code = output[0].code;
|
|
|
|
const bundlePath = resource(`${PROJECT_ID}.js`, code);
|
|
|
|
await fs.writeFile(bundlePath, code, "utf8");
|
|
|
|
return bundlePath;
|
2019-09-15 18:02:12 +05:30
|
|
|
}
|
|
|
|
|
2020-08-13 22:29:31 +05:30
|
|
|
async function buildJsLegacy() {
|
2020-08-05 22:04:41 +05:30
|
|
|
// compile down to whatever IE 11 needs
|
|
|
|
const babelPlugin = babel.babel({
|
|
|
|
babelHelpers: 'bundled',
|
2020-08-07 13:38:31 +05:30
|
|
|
exclude: 'node_modules/**',
|
2020-08-05 22:04:41 +05:30
|
|
|
presets: [
|
|
|
|
[
|
|
|
|
"@babel/preset-env",
|
|
|
|
{
|
|
|
|
useBuiltIns: "entry",
|
|
|
|
corejs: "3",
|
|
|
|
targets: "IE 11"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
});
|
|
|
|
// create js bundle
|
|
|
|
const rollupConfig = {
|
2020-08-07 20:20:18 +05:30
|
|
|
input: ['src/legacy-polyfill.js', 'src/main.js'],
|
|
|
|
plugins: [multi(), commonjs(), nodeResolve(), babelPlugin]
|
2020-08-05 22:04:41 +05:30
|
|
|
};
|
|
|
|
const bundle = await rollup.rollup(rollupConfig);
|
2020-08-13 22:29:31 +05:30
|
|
|
const {output} = await bundle.generate({
|
2020-08-07 13:38:08 +05:30
|
|
|
format: 'iife',
|
2020-08-07 20:20:18 +05:30
|
|
|
name: `${PROJECT_ID}Bundle`
|
2020-08-07 13:38:08 +05:30
|
|
|
});
|
2020-08-13 22:29:31 +05:30
|
|
|
const code = output[0].code;
|
|
|
|
const bundlePath = resource(`${PROJECT_ID}-legacy.js`, code);
|
|
|
|
await fs.writeFile(bundlePath, code, "utf8");
|
|
|
|
return bundlePath;
|
2020-08-05 22:04:41 +05:30
|
|
|
}
|
|
|
|
|
2020-08-13 22:29:31 +05:30
|
|
|
async function buildOffline(version, assetPaths) {
|
2019-09-15 18:02:12 +05:30
|
|
|
// write offline availability
|
2020-08-13 22:29:31 +05:30
|
|
|
const offlineFiles = [
|
|
|
|
assetPaths.jsBundle(),
|
|
|
|
assetPaths.cssMainBundle(),
|
|
|
|
"index.html",
|
|
|
|
"icon-192.png",
|
|
|
|
].concat(assetPaths.cssThemeBundles());
|
2019-09-15 18:02:12 +05:30
|
|
|
|
|
|
|
// write appcache manifest
|
|
|
|
const manifestLines = [
|
|
|
|
`CACHE MANIFEST`,
|
|
|
|
`# v${version}`,
|
|
|
|
`NETWORK`,
|
|
|
|
`"*"`,
|
|
|
|
`CACHE`,
|
|
|
|
];
|
|
|
|
manifestLines.push(...offlineFiles);
|
|
|
|
const manifest = manifestLines.join("\n") + "\n";
|
|
|
|
await fs.writeFile(path.join(targetDir, "manifest.appcache"), manifest, "utf8");
|
|
|
|
// write service worker
|
|
|
|
let swSource = await fs.readFile(path.join(projectDir, "src/service-worker.template.js"), "utf8");
|
|
|
|
swSource = swSource.replace(`"%%VERSION%%"`, `"${version}"`);
|
2020-08-12 20:10:28 +05:30
|
|
|
swSource = swSource.replace(`"%%OFFLINE_FILES%%"`, JSON.stringify(offlineFiles));
|
2020-08-13 22:29:31 +05:30
|
|
|
swSource = swSource.replace(`"%%CACHE_FILES%%"`, JSON.stringify(assetPaths.otherAssets()));
|
2019-09-15 18:02:12 +05:30
|
|
|
await fs.writeFile(path.join(targetDir, "sw.js"), swSource, "utf8");
|
|
|
|
// write web manifest
|
|
|
|
const webManifest = {
|
2020-08-05 22:04:41 +05:30
|
|
|
name:PROJECT_NAME,
|
|
|
|
short_name: PROJECT_SHORT_NAME,
|
2020-03-14 03:24:11 +05:30
|
|
|
display: "fullscreen",
|
2019-09-15 18:02:12 +05:30
|
|
|
start_url: "index.html",
|
|
|
|
icons: [{"src": "icon-192.png", "sizes": "192x192", "type": "image/png"}],
|
|
|
|
};
|
2020-08-14 14:36:39 +05:30
|
|
|
const manifestJson = JSON.stringify(webManifest);
|
|
|
|
const manifestPath = resource("manifest.json", manifestJson);
|
|
|
|
await fs.writeFile(manifestPath, manifestJson, "utf8");
|
2019-09-15 18:02:12 +05:30
|
|
|
// copy icon
|
2020-08-13 22:29:31 +05:30
|
|
|
// should this icon have a content hash as well?
|
2019-09-15 18:02:12 +05:30
|
|
|
let icon = await fs.readFile(path.join(projectDir, "icon.png"));
|
|
|
|
await fs.writeFile(path.join(targetDir, "icon-192.png"), icon);
|
2020-08-14 14:36:39 +05:30
|
|
|
return manifestPath;
|
2019-09-15 18:02:12 +05:30
|
|
|
}
|
|
|
|
|
2020-08-14 14:15:14 +05:30
|
|
|
async function buildCssBundles(buildFn, themes, themeAssets) {
|
2020-08-13 22:29:31 +05:30
|
|
|
const bundleCss = await buildFn(path.join(cssSrcDir, "main.css"));
|
|
|
|
const mainDstPath = resource(`${PROJECT_ID}.css`, bundleCss);
|
|
|
|
await fs.writeFile(mainDstPath, bundleCss, "utf8");
|
|
|
|
const bundlePaths = {main: mainDstPath, themes: {}};
|
2020-08-12 20:09:35 +05:30
|
|
|
for (const theme of themes) {
|
2020-08-14 14:15:14 +05:30
|
|
|
const urlBase = path.join(targetDir, `themes/${theme}/`);
|
|
|
|
const assetUrlMapper = ({absolutePath}) => {
|
|
|
|
const hashedDstPath = themeAssets[absolutePath];
|
|
|
|
if (hashedDstPath && hashedDstPath.startsWith(urlBase)) {
|
|
|
|
return hashedDstPath.substr(urlBase.length);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
const themeCss = await buildFn(path.join(cssSrcDir, `themes/${theme}/theme.css`), assetUrlMapper);
|
2020-08-13 22:29:31 +05:30
|
|
|
const themeDstPath = resource(`themes/${theme}/bundle.css`, themeCss);
|
|
|
|
await fs.writeFile(themeDstPath, themeCss, "utf8");
|
|
|
|
bundlePaths.themes[theme] = themeDstPath;
|
2020-08-12 20:09:35 +05:30
|
|
|
}
|
2020-08-13 22:29:31 +05:30
|
|
|
return bundlePaths;
|
2020-08-12 20:09:35 +05:30
|
|
|
}
|
|
|
|
|
2020-08-14 14:15:14 +05:30
|
|
|
async function buildCss(entryPath, urlMapper = null) {
|
2020-08-12 20:09:35 +05:30
|
|
|
const preCss = await fs.readFile(entryPath, "utf8");
|
2020-08-14 14:15:14 +05:30
|
|
|
const options = [postcssImport];
|
|
|
|
if (urlMapper) {
|
|
|
|
options.push(postcssUrl({url: urlMapper}));
|
|
|
|
}
|
|
|
|
const cssBundler = postcss(options);
|
2020-08-12 20:09:35 +05:30
|
|
|
const result = await cssBundler.process(preCss, {from: entryPath});
|
2020-08-13 22:29:31 +05:30
|
|
|
return result.css;
|
2019-09-15 18:02:12 +05:30
|
|
|
}
|
|
|
|
|
2020-08-14 14:15:14 +05:30
|
|
|
async function buildCssLegacy(entryPath, urlMapper = null) {
|
2020-08-12 20:09:35 +05:30
|
|
|
const preCss = await fs.readFile(entryPath, "utf8");
|
2020-08-14 14:15:14 +05:30
|
|
|
const options = [
|
|
|
|
postcssImport,
|
|
|
|
cssvariables(),
|
|
|
|
flexbugsFixes()
|
|
|
|
];
|
|
|
|
if (urlMapper) {
|
|
|
|
options.push(postcssUrl({url: urlMapper}));
|
|
|
|
}
|
|
|
|
const cssBundler = postcss(options);
|
2020-08-12 20:09:35 +05:30
|
|
|
const result = await cssBundler.process(preCss, {from: entryPath});
|
2020-08-13 22:29:31 +05:30
|
|
|
return result.css;
|
2020-08-07 22:45:53 +05:30
|
|
|
}
|
|
|
|
|
2019-09-15 18:02:12 +05:30
|
|
|
function removeOrEnableScript(scriptNode, enable) {
|
|
|
|
if (enable) {
|
|
|
|
scriptNode.attr("type", "text/javascript");
|
|
|
|
} else {
|
|
|
|
scriptNode.remove();
|
|
|
|
}
|
2019-09-15 12:44:20 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
async function removeDirIfExists(targetDir) {
|
|
|
|
try {
|
2020-08-12 20:07:55 +05:30
|
|
|
await fs.rmdir(targetDir, {recursive: true});
|
2019-09-15 12:44:20 +05:30
|
|
|
} catch (err) {
|
2019-09-15 15:52:43 +05:30
|
|
|
if (err.code !== "ENOENT") {
|
|
|
|
throw err;
|
|
|
|
}
|
2019-09-15 12:44:20 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-12 20:07:55 +05:30
|
|
|
async function copyFolder(srcRoot, dstRoot, filter) {
|
2020-08-14 14:15:14 +05:30
|
|
|
const assetPaths = {};
|
2020-08-12 20:07:55 +05:30
|
|
|
const dirEnts = await fs.readdir(srcRoot, {withFileTypes: true});
|
|
|
|
for (const dirEnt of dirEnts) {
|
|
|
|
const dstPath = path.join(dstRoot, dirEnt.name);
|
|
|
|
const srcPath = path.join(srcRoot, dirEnt.name);
|
|
|
|
if (dirEnt.isDirectory()) {
|
|
|
|
await fs.mkdir(dstPath);
|
2020-08-14 14:15:14 +05:30
|
|
|
Object.assign(assetPaths, await copyFolder(srcPath, dstPath, filter));
|
2020-08-12 20:07:55 +05:30
|
|
|
} else if (dirEnt.isFile() && filter(srcPath)) {
|
2020-08-13 22:29:31 +05:30
|
|
|
const content = await fs.readFile(srcPath);
|
|
|
|
const hashedDstPath = resource(dstPath, content);
|
|
|
|
await fs.writeFile(hashedDstPath, content);
|
2020-08-14 14:15:14 +05:30
|
|
|
assetPaths[srcPath] = hashedDstPath;
|
2020-08-12 20:07:55 +05:30
|
|
|
}
|
|
|
|
}
|
2020-08-13 22:29:31 +05:30
|
|
|
return assetPaths;
|
|
|
|
}
|
|
|
|
|
|
|
|
function resource(relPath, content) {
|
|
|
|
let fullPath = relPath;
|
|
|
|
if (!relPath.startsWith("/")) {
|
|
|
|
fullPath = path.join(targetDir, relPath);
|
|
|
|
}
|
|
|
|
const hash = contentHash(Buffer.from(content));
|
|
|
|
const dir = path.dirname(fullPath);
|
|
|
|
const extname = path.extname(fullPath);
|
|
|
|
const basename = path.basename(fullPath, extname);
|
|
|
|
return path.join(dir, `${basename}-${hash}${extname}`);
|
2020-08-12 20:07:55 +05:30
|
|
|
}
|
|
|
|
|
2020-08-13 22:29:31 +05:30
|
|
|
function contentHash(str) {
|
|
|
|
var hasher = new XXHash(0);
|
|
|
|
hasher.update(str);
|
|
|
|
return hasher.digest();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-09-15 12:44:20 +05:30
|
|
|
build().catch(err => console.error(err));
|