mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-11-30 09:08:10 +08:00
chore: add back minify docker again (#20304)
* Revert "chore: minify docker (#18914)" This reverts commite9013a2313. * Reapply "chore: minify docker (#18914)" This reverts commitb16a021f0c. * fix(minify-docker): correct path to cross-env binary * feat(minify-docker): use import.meta.dirname * chore(deps): remove deprecated @types/imapflow dependency
This commit is contained in:
@@ -1,25 +1,24 @@
|
||||
/* eslint-disable no-console */
|
||||
const fs = require('fs-extra');
|
||||
const path = require('path');
|
||||
const { nodeFileTrace } = require('@vercel/nft');
|
||||
import fs from 'fs-extra';
|
||||
import path from 'node:path';
|
||||
import { nodeFileTrace } from '@vercel/nft';
|
||||
const __dirname = import.meta.dirname;
|
||||
// !!! if any new dependencies are added, update the Dockerfile !!!
|
||||
|
||||
const projectRoot = path.resolve(process.env.PROJECT_ROOT || path.join(__dirname, '../..'));
|
||||
const resultFolder = path.join(projectRoot, 'app-minimal'); // no need to resolve, ProjectRoot is always absolute
|
||||
const files = ['lib/index.ts', 'api/vercel.js'].map((file) => path.join(projectRoot, file));
|
||||
const files = ['dist/index.js', 'node_modules/cross-env/dist/bin/cross-env.js', 'node_modules/.bin/cross-env'].map((file) => path.join(projectRoot, file));
|
||||
|
||||
(async () => {
|
||||
console.log('Start analyzing, project root:', projectRoot);
|
||||
const { fileList: fileSet } = await nodeFileTrace(files, {
|
||||
base: projectRoot,
|
||||
});
|
||||
let fileList = [...fileSet];
|
||||
console.log('Total touchable files:', fileList.length);
|
||||
fileList = fileList.filter((file) => file.startsWith('node_modules/')); // only need node_modules
|
||||
console.log('Total files need to be copied (touchable files in node_modules/):', fileList.length);
|
||||
console.log('Start copying files, destination:', resultFolder);
|
||||
return Promise.all(fileList.map((e) => fs.copy(path.join(projectRoot, e), path.join(resultFolder, e))));
|
||||
})().catch((error) => {
|
||||
console.log('Start analyzing, project root:', projectRoot);
|
||||
const { fileList: fileSet } = await nodeFileTrace(files, {
|
||||
base: projectRoot,
|
||||
});
|
||||
let fileList = [...fileSet];
|
||||
console.log('Total touchable files:', fileList.length);
|
||||
fileList = fileList.filter((file) => file.startsWith('node_modules/')); // only need node_modules
|
||||
console.log('Total files need to be copied (touchable files in node_modules/):', fileList.length);
|
||||
console.log('Start copying files, destination:', resultFolder);
|
||||
await Promise.all(fileList.map((e) => fs.copy(path.join(projectRoot, e), path.join(resultFolder, e)))).catch((error) => {
|
||||
// fix unhandled promise rejections
|
||||
console.error(error, error.stack);
|
||||
process.exit(1);
|
||||
|
||||
Reference in New Issue
Block a user