Skip to content

Commit f5ab0e2

Browse files
authored
fix(plugin): add artus dir to package path resolver for pnpm (#258)
1 parent fc3504d commit f5ab0e2

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/plugin/common.ts

+5-3
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,11 @@ export function topologicalSort(pluginInstanceMap: Map<string, PluginType>, plug
3535
}
3636

3737
// A util function of get package path for plugin
38-
export function getPackagePath(packageName: string, paths?: string[]): string {
39-
const opts = paths ? { paths } : undefined;
40-
return path.resolve(require.resolve(packageName, opts), '..');
38+
export function getPackagePath(packageName: string, paths: string[] = []): string {
39+
const opts = {
40+
paths: paths.concat(__dirname),
41+
};
42+
return path.dirname(require.resolve(packageName, opts));
4143
}
4244

4345
export async function getInlinePackageEntryPath(packagePath: string): Promise<string> {

0 commit comments

Comments
 (0)