certd/packages/ui/certd-server/before-build.js

6 lines
265 B
JavaScript
Raw Normal View History

2024-07-20 06:26:01 +00:00
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));