-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Closed as not planned
Labels
enhancementNew feature or requestNew feature or request
Description
Hi, we'd love the ability to directly import setGlobalDevModeChecks from @reduxjs/toolkit rather than importing the values from reselect
We are importing it currently using this so that we can run our test files without the stability checks for performance reasons. We have these turned back on for our tests in CI
const { setGlobalDevModeChecks } = require(
require.resolve("reselect", {
paths: [require.resolve("@reduxjs/toolkit")],
}),
);
Your current exports for re-select
export type { Selector, OutputSelector } from 'reselect'
Happy to raise a pr to change to this, as long as you are happy with the change
export type { Selector, OutputSelector, setGlobalDevModeChecks } from 'reselect'
SYoder1
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request