Skip to content

Commit

Permalink
fix: add missing affectedHooks parameter to ProvidePlugin
Browse files Browse the repository at this point in the history
  • Loading branch information
inottn committed Nov 28, 2024
1 parent d249e62 commit 6e609b6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/get-runner-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:
jobs:
main:
name: Get Runner Labels
runs-on: [self-hosted, Linux, ci]
runs-on: ubuntu-latest
outputs:
LINUX_RUNNER_LABELS: ${{ steps.run.outputs.LINUX_RUNNER_LABELS }}
MACOS_RUNNER_LABELS: ${{ steps.run.outputs.MACOS_RUNNER_LABELS }}
Expand Down
3 changes: 2 additions & 1 deletion packages/rspack/src/builtin-plugin/ProvidePlugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@ export const ProvidePlugin = create(
return [key, value];
});
return Object.fromEntries(entries);
}
},
"compilation"
);

0 comments on commit 6e609b6

Please sign in to comment.