mirror of
https://github.com/jeffvli/feishin.git
synced 2024-11-20 06:27:09 +01:00
10 lines
317 B
TypeScript
10 lines
317 B
TypeScript
|
import fs from 'fs';
|
||
|
import webpackPaths from '../configs/webpack.paths';
|
||
|
|
||
|
const { srcNodeModulesPath } = webpackPaths;
|
||
|
const { appNodeModulesPath } = webpackPaths;
|
||
|
|
||
|
if (!fs.existsSync(srcNodeModulesPath) && fs.existsSync(appNodeModulesPath)) {
|
||
|
fs.symlinkSync(appNodeModulesPath, srcNodeModulesPath, 'junction');
|
||
|
}
|