mirror of
https://github.com/certd/certd.git
synced 2026-04-15 05:00:52 +08:00
7 lines
291 B
JavaScript
7 lines
291 B
JavaScript
import http from 'axios';
|
|
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));
|