Skip to content

Commit

Permalink
Revert "fix: import resolution within plugin modules (NodeBB#11200)"
Browse files Browse the repository at this point in the history
This reverts commit 89e059a.
  • Loading branch information
barisusakli committed Jan 26, 2023
1 parent eb2841e commit c3653be
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions src/meta/js.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,24 +40,14 @@ async function linkModules() {
await Promise.all(Object.keys(modules).map(async (relPath) => {
const srcPath = path.join(__dirname, '../../', modules[relPath]);
const destPath = path.join(__dirname, '../../build/public/src/modules', relPath);
const destDir = path.dirname(destPath);

const [stats] = await Promise.all([
fs.promises.stat(srcPath),
mkdirp(destDir),
mkdirp(path.dirname(destPath)),
]);

if (stats.isDirectory()) {
await file.linkDirs(srcPath, destPath, true);
} else {
// Get the relative path to the destination directory
const relPath = path.relative(destDir, srcPath)
// and convert to a posix path
.split(path.sep).join(path.posix.sep);

// Instead of copying file, create a new file re-exporting it
// This way, imports in modules are resolved correctly
await fs.promises.writeFile(destPath, `export * from '${relPath}'`);
await fs.promises.copyFile(srcPath, destPath);
}
}));
}
Expand Down

0 comments on commit c3653be

Please sign in to comment.