pyblocks/pyblocks-gui/.erb/scripts/link-modules.ts

10 lines
317 B
TypeScript
Raw Permalink Normal View History

2023-05-25 17:00:54 +00:00
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');
}