mirror of
https://github.com/certd/certd.git
synced 2025-11-25 09:10:11 +08:00
6 lines
265 B
JavaScript
6 lines
265 B
JavaScript
import fs from 'fs';
|
|
//读取 packages/core/pipline/package.json的版本号
|
|
import { default as packageJson } from './tsconfig.json' assert { type: 'json' };
|
|
delete packageJson.references;
|
|
fs.writeFileSync('./tsconfig.json', JSON.stringify(packageJson, null, 2));
|