mirror of https://github.com/certd/certd
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));
|