Skip to content

Commit

Permalink
chore: reapply the fix after verification
Browse files Browse the repository at this point in the history
  • Loading branch information
volodymyr-rutskyi committed Oct 4, 2024
1 parent 1f09c01 commit fd38cca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/smoke-plugins.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Plugins smoke tests
name: Plugins smoke tests

on:
pull_request:
Expand Down
3 changes: 1 addition & 2 deletions packages/core/src/config/config-resolvers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,7 @@ export async function resolvePlugins(
const absolutePluginPath = existsSync(maybeAbsolutePluginPath)
? maybeAbsolutePluginPath
: // For plugins imported from packages specifically
// require.resolve(plugin, { paths: [configDir] });
require.resolve(plugin);
require.resolve(plugin, { paths: [configDir] });

if (!pluginsCache.has(absolutePluginPath)) {
let requiredPlugin: ImportedPlugin | undefined;
Expand Down

0 comments on commit fd38cca

Please sign in to comment.