Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Append paths with build path when needed #25

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 13 additions & 5 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ program
.option('-p, --project <file>', 'path to tsconfig.json')
.option('-s, --src <path>', 'source root path')
.option('-o, --out <path>', 'output root path')
.option('-v, --verbose', 'output logs');
.option('-v, --verbose', 'output logs')
.option('-b, --build', 'append build path to paths');

program.on('--help', () => {
console.log(`
Expand All @@ -22,10 +23,11 @@ program.on('--help', () => {

program.parse(process.argv);

const { project, src, out, verbose } = program as {
const { project, src, out, build, verbose } = program as {
project?: string;
src?: string;
out?: string;
build?: boolean;
verbose?: boolean;
};

Expand Down Expand Up @@ -77,15 +79,20 @@ verboseLog(`outPath: ${outPath}`);

const outFileToSrcFile = (x: string): string =>
resolve(srcRoot, relative(outPath, x));

const aliases = Object.keys(paths)
.map((alias) => ({
prefix: alias.replace(/\*$/, ''),
aliasPaths: paths[alias as keyof typeof paths].map((p) =>
resolve(basePath, p.replace(/\*$/, ''))
aliasPaths: paths[alias as keyof typeof paths].map((p) => {
let path = p.replace(/\*$/, '');
if (build) {
path = `${outDir}/${path}`
}
return resolve(basePath, path);
}
),
}))
.filter(({ prefix }) => prefix);

verboseLog(`aliases: ${JSON.stringify(aliases, null, 2)}`);

const toRelative = (from: string, x: string): string => {
Expand Down Expand Up @@ -128,6 +135,7 @@ const absToRel = (modulePath: string, outFile: string): string => {
}
}
console.log(`could not replace ${modulePath}`);
process.exit(1);
}
}
return modulePath;
Expand Down