Files
bs-manager/.erb/scripts/link-modules.ts
2023-07-01 22:12:47 +02:00

10 lines
319 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");
}