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

fix(utils): unable to start on Windows11 #290

Merged
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
9 changes: 6 additions & 3 deletions tools/base64-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ let project = process.argv.find((arg) => arg.includes('--project'));
if (project) {
project = project.slice('--project='.length);
}
const ROOT_PATH = path.join(__dirname, '..', project ? `packages/${project}` : '.');
const ROOT_PATH = path.join(__dirname, '..', project ? `packages${path.sep}${project}` : '.');
const OUT_FILE = 'base64.out.ts';

const table = createStream({
Expand All @@ -24,9 +24,12 @@ const reduceDir = (dirPath: string, paths: string[] = []) => {
if (statSync(filePath).isDirectory()) {
reduceDir(filePath, [...paths, file]);
} else if (/^base64\.[\s\S]+\.[\s\S]+$/.test(file) && file !== OUT_FILE) {
table.write([filePath.match(/(?<=packages\/)[\s\S]+?(?=\/)/)![0], file]);
const filePathReg = new RegExp(`(?<=packages\\${path.sep})[\\s\\S]+?(?=\\${path.sep})`);
const targetPath = filePath.match(filePathReg) as string[];
table.write([targetPath?.[0], file]);
const bitmap = readFileSync(filePath, { encoding: 'base64' });
output += String.raw` '${file.match(/(?<=\.)[\s\S]+(?=\.)/)![0]}': '${bitmap}',
const fileMiddleName = file.match(/(?<=\.)[\s\S]+(?=\.)/) as string[];
output += String.raw` '${fileMiddleName?.[0]}': '${bitmap}',
`;
}
}
Expand Down
Loading