61 lines
1.9 KiB
TypeScript
Vendored
61 lines
1.9 KiB
TypeScript
Vendored
import fs from 'fs/promises';
|
|
import path from 'path';
|
|
import prompts from 'prompts';
|
|
import { checkRustInstalled, installRust } from '@/helpers/rust.js';
|
|
import { PakeAppOptions } from '@/types.js';
|
|
import { IBuilder } from './base.js';
|
|
import { shellExec } from '@/utils/shell.js';
|
|
// @ts-expect-error 加上resolveJsonModule rollup会打包报错
|
|
import tauriConf from '../../src-tauri/tauri.conf.json';
|
|
import log from 'loglevel';
|
|
import { mergeTauriConfig } from './common.js';
|
|
import { npmDirectory } from '@/utils/dir.js';
|
|
import logger from '@/options/logger.js';
|
|
|
|
export default class MacBuilder implements IBuilder {
|
|
async prepare() {
|
|
if (checkRustInstalled()) {
|
|
return;
|
|
}
|
|
|
|
const res = await prompts({
|
|
type: 'confirm',
|
|
message: 'We detected that you have not installed Rust. Install it now?',
|
|
name: 'value',
|
|
});
|
|
|
|
if (res.value) {
|
|
// TODO 国内有可能会超时
|
|
await installRust();
|
|
} else {
|
|
log.error('Error: Pake need Rust to package your webapp!!!');
|
|
process.exit(2);
|
|
}
|
|
}
|
|
|
|
async build(url: string, options: PakeAppOptions) {
|
|
log.debug('PakeAppOptions', options);
|
|
const { name } = options;
|
|
|
|
await mergeTauriConfig(url, options, tauriConf);
|
|
|
|
const code = await shellExec(`cd ${npmDirectory} && npm run build`);
|
|
const dmgName = `${name}_${tauriConf.package.version}_universal.dmg`;
|
|
const appPath = this.getBuildedAppPath(npmDirectory, dmgName);
|
|
const distPath = path.resolve(`${name}_universal.dmg`);
|
|
await fs.copyFile(appPath, distPath);
|
|
await fs.unlink(appPath);
|
|
|
|
logger.success('Build success!');
|
|
logger.success('You can find the app installer in', distPath);
|
|
}
|
|
|
|
getBuildedAppPath(npmDirectory: string, dmgName: string) {
|
|
return path.join(
|
|
npmDirectory,
|
|
'src-tauri/target/universal-apple-darwin/release/bundle/dmg',
|
|
dmgName
|
|
);
|
|
}
|
|
}
|