mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 19:16:33 +00:00
43 lines
1.5 KiB
TypeScript
43 lines
1.5 KiB
TypeScript
/**
|
|
* This file is part of the NocoBase (R) project.
|
|
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
* Authors: NocoBase Team.
|
|
*
|
|
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
*/
|
|
|
|
import path from 'path';
|
|
import tar from 'tar';
|
|
import fg from 'fast-glob';
|
|
import fs from 'fs-extra';
|
|
|
|
import { PkgLog } from "./utils";
|
|
import { TAR_OUTPUT_DIR, tarIncludesFiles } from './constant'
|
|
|
|
export function tarPlugin(cwd: string, log: PkgLog) {
|
|
log('tar package');
|
|
const pkg = require(path.join(cwd, 'package.json'));
|
|
const npmIgnore = path.join(cwd, '.npmignore');
|
|
let files = pkg.files || [];
|
|
if (fs.existsSync(npmIgnore)) {
|
|
files = fs.readFileSync(npmIgnore, 'utf-8')
|
|
.split('\n')
|
|
.filter((item) => item.trim())
|
|
.map(item => item.startsWith('/') ? `.${item}` : item)
|
|
.map(item => `!${item}`);
|
|
files.push('**/*');
|
|
}
|
|
|
|
// 必须包含的文件
|
|
files.push(...tarIncludesFiles);
|
|
files = files.map((item: string) => item !== '**/*' && fs.existsSync(path.join(cwd, item.replace('!', ''))) && fs.statSync(path.join(cwd, item.replace('!', ''))).isDirectory() ? `${item}/**/*` : item);
|
|
|
|
const tarball = path.join(TAR_OUTPUT_DIR, `${pkg.name}-${pkg.version}.tgz`);
|
|
const tarFiles = fg.sync(files, { cwd });
|
|
|
|
fs.mkdirpSync(path.dirname(tarball));
|
|
fs.rmSync(tarball, { force: true });
|
|
return tar.c({ gzip: true, file: tarball, cwd }, tarFiles);
|
|
}
|