mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
75a8aedc32
The version of a build is now derived from both the `version` field in `package.json` and the requested build type and version. The build type and version are added onto the manifest version as a suffix, according to the SemVer prerelease format. We already have support in the extension for versions of this format, but to apply a Flask or Beta version required manual updates to `package.json`. Now it can be done just with build arguments. A `get-version` module was created to make it easier to generate the version in the various places we do that during the build. It was created in the `development/lib` directory because it will be used by other non-build development scripts in a future PR. The `BuildType` constant was extracted to its own module as well, and moved to the `development/lib` directory. This was to make it clear that it's used by various different development scripts, not just the build.
226 lines
5.2 KiB
JavaScript
226 lines
5.2 KiB
JavaScript
const path = require('path');
|
|
const fs = require('fs-extra');
|
|
const watch = require('gulp-watch');
|
|
const glob = require('fast-glob');
|
|
|
|
const locales = require('../../app/_locales/index.json');
|
|
const { BuildType } = require('../lib/build-type');
|
|
|
|
const { createTask, composeSeries } = require('./task');
|
|
|
|
const EMPTY_JS_FILE = './development/empty.js';
|
|
|
|
module.exports = function createStaticAssetTasks({
|
|
livereload,
|
|
browserPlatforms,
|
|
shouldIncludeLockdown = true,
|
|
buildType,
|
|
}) {
|
|
const [copyTargetsProd, copyTargetsDev] = getCopyTargets(
|
|
shouldIncludeLockdown,
|
|
);
|
|
|
|
const additionalBuildTargets = {
|
|
[BuildType.beta]: [
|
|
{
|
|
src: './app/build-types/beta/images/',
|
|
dest: `images`,
|
|
},
|
|
],
|
|
[BuildType.flask]: [
|
|
{
|
|
src: './app/build-types/flask/images/',
|
|
dest: `images`,
|
|
},
|
|
],
|
|
};
|
|
|
|
if (Object.keys(additionalBuildTargets).includes(buildType)) {
|
|
copyTargetsProd.push(...additionalBuildTargets[buildType]);
|
|
copyTargetsDev.push(...additionalBuildTargets[buildType]);
|
|
}
|
|
|
|
const prod = createTask(
|
|
'static:prod',
|
|
composeSeries(
|
|
...copyTargetsProd.map((target) => {
|
|
return async function copyStaticAssets() {
|
|
await performCopy(target);
|
|
};
|
|
}),
|
|
),
|
|
);
|
|
const dev = createTask(
|
|
'static:dev',
|
|
composeSeries(
|
|
...copyTargetsDev.map((target) => {
|
|
return async function copyStaticAssets() {
|
|
await setupLiveCopy(target);
|
|
};
|
|
}),
|
|
),
|
|
);
|
|
|
|
return { dev, prod };
|
|
|
|
async function setupLiveCopy(target) {
|
|
const pattern = target.pattern || '/**/*';
|
|
watch(target.src + pattern, (event) => {
|
|
livereload.changed(event.path);
|
|
performCopy(target);
|
|
});
|
|
await performCopy(target);
|
|
}
|
|
|
|
async function performCopy(target) {
|
|
await Promise.all(
|
|
browserPlatforms.map(async (platform) => {
|
|
if (target.pattern) {
|
|
await copyGlob(
|
|
target.src,
|
|
`${target.src}${target.pattern}`,
|
|
`./dist/${platform}/${target.dest}`,
|
|
);
|
|
} else {
|
|
await copyGlob(
|
|
target.src,
|
|
`${target.src}`,
|
|
`./dist/${platform}/${target.dest}`,
|
|
);
|
|
}
|
|
}),
|
|
);
|
|
}
|
|
|
|
async function copyGlob(baseDir, srcGlob, dest) {
|
|
const sources = await glob(srcGlob, { onlyFiles: false });
|
|
await Promise.all(
|
|
sources.map(async (src) => {
|
|
const relativePath = path.relative(baseDir, src);
|
|
await fs.copy(src, `${dest}${relativePath}`);
|
|
}),
|
|
);
|
|
}
|
|
};
|
|
|
|
function getCopyTargets(shouldIncludeLockdown) {
|
|
const allCopyTargets = [
|
|
{
|
|
src: `./app/_locales/`,
|
|
dest: `_locales`,
|
|
},
|
|
{
|
|
src: `./app/images/`,
|
|
dest: `images`,
|
|
},
|
|
{
|
|
src: `./node_modules/@metamask/contract-metadata/images/`,
|
|
dest: `images/contract`,
|
|
},
|
|
{
|
|
src: `./app/fonts/`,
|
|
dest: `fonts`,
|
|
},
|
|
{
|
|
src: `./app/vendor/`,
|
|
dest: `vendor`,
|
|
},
|
|
{
|
|
src: `./node_modules/@fortawesome/fontawesome-free/webfonts/`,
|
|
dest: `fonts/fontawesome`,
|
|
},
|
|
{
|
|
src: `./node_modules/react-responsive-carousel/lib/styles`,
|
|
dest: 'react-gallery/',
|
|
},
|
|
{
|
|
src: `./ui/css/output/`,
|
|
pattern: `*.css`,
|
|
dest: ``,
|
|
},
|
|
{
|
|
src: `./app/loading.html`,
|
|
dest: `loading.html`,
|
|
},
|
|
{
|
|
src: `./node_modules/globalthis/dist/browser.js`,
|
|
dest: `globalthis.js`,
|
|
},
|
|
{
|
|
src: shouldIncludeLockdown
|
|
? `./node_modules/ses/dist/lockdown.umd.min.js`
|
|
: EMPTY_JS_FILE,
|
|
dest: `lockdown-install.js`,
|
|
},
|
|
{
|
|
src: shouldIncludeLockdown
|
|
? `./app/scripts/lockdown-run.js`
|
|
: EMPTY_JS_FILE,
|
|
dest: `lockdown-run.js`,
|
|
},
|
|
{
|
|
src: shouldIncludeLockdown
|
|
? `./app/scripts/lockdown-more.js`
|
|
: EMPTY_JS_FILE,
|
|
dest: `lockdown-more.js`,
|
|
},
|
|
{
|
|
// eslint-disable-next-line node/no-extraneous-require
|
|
src: require.resolve('@lavamoat/lavapack/src/runtime-cjs.js'),
|
|
dest: `runtime-cjs.js`,
|
|
},
|
|
{
|
|
// eslint-disable-next-line node/no-extraneous-require
|
|
src: require.resolve('@lavamoat/lavapack/src/runtime.js'),
|
|
dest: `runtime-lavamoat.js`,
|
|
},
|
|
{
|
|
src: `./app/phishing.html`,
|
|
dest: `phishing.html`,
|
|
},
|
|
];
|
|
|
|
const languageTags = new Set();
|
|
for (const locale of locales) {
|
|
const { code } = locale;
|
|
const tag = code.split('_')[0];
|
|
languageTags.add(tag);
|
|
}
|
|
|
|
for (const tag of languageTags) {
|
|
allCopyTargets.push({
|
|
src: `./node_modules/@formatjs/intl-relativetimeformat/dist/locale-data/${tag}.json`,
|
|
dest: `intl/${tag}/relative-time-format-data.json`,
|
|
});
|
|
}
|
|
|
|
const copyTargetsDev = [
|
|
...allCopyTargets,
|
|
{
|
|
src: './development',
|
|
pattern: '/chromereload.js',
|
|
dest: ``,
|
|
},
|
|
// empty files to suppress missing file errors
|
|
{
|
|
src: EMPTY_JS_FILE,
|
|
dest: `bg-libs.js`,
|
|
},
|
|
{
|
|
src: EMPTY_JS_FILE,
|
|
dest: `ui-libs.js`,
|
|
},
|
|
];
|
|
|
|
const copyTargetsProd = [
|
|
...allCopyTargets,
|
|
// empty files to suppress missing file errors
|
|
{
|
|
src: EMPTY_JS_FILE,
|
|
dest: `chromereload.js`,
|
|
},
|
|
];
|
|
|
|
return [copyTargetsProd, copyTargetsDev];
|
|
}
|