Some checks failed
CodeQL / Analyze (javascript) (push) Has been cancelled
Publish / publish (macos-latest) (push) Has been cancelled
Test / test (macos-latest) (push) Has been cancelled
Test / test (ubuntu-latest) (push) Has been cancelled
Test / test (windows-latest) (push) Has been cancelled
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');
|
|
}
|