Skip to content

Commit

Permalink
chore: undo fix to verify the smoke tests will fail
Browse files Browse the repository at this point in the history
  • Loading branch information
volodymyr-rutskyi committed Oct 4, 2024
1 parent 0112ecb commit 1f09c01
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 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: Smoke tests
name: Plugins smoke tests

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

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

0 comments on commit 1f09c01

Please sign in to comment.