Files
gitlab-instance-0a899031_el…/.erb/scripts/link-modules.ts
hackrobot 769ed60311
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
init
2024-04-06 18:02:46 +08:00

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');
}