Use case
Framework
Owner
ChakraUI/V3/Remove Theme Tools
Theme tools has been removed, so this codemod transforms it, to use CSS color mix.
ChakraUI/V3/Update Chakra Provider
- Updates the ChakraProvider import from @chakra-ui/react
- Renames the theme prop to value to match the new system-based theming approach
ChakraUI/V3/Refactor Custom Theme
- Replaces extendTheme with createSystem and defaultConfig.
- Updates your theme object to fit the new structure required by Chakra UI.
Meteor/V3/Update React
This codemod helps in transforming react to meteor
Jasmine/V5/Migration Recipe
This recipe is a set of codemods that will help migrate to jasmine v5 from jasmine 4.x .
Jasmine/V5/Node Boot Removal
This codemod remove
node_boot.js
as it is no longer supported in jasmin 5.0Jasmine/V5/Handling Env Execute Callbacks
This codemod migrates
Env.execute
callbacks to await.Electron/V33/System Preferences To Native Theme
This codemod deprecates
systemPreferences.accessibilityDisplayShouldReduceTransparency
property, which is now deprecated in favor of the newnativeTheme.prefersReducedTransparency
, which provides identical information and works cross-platform.Three/R168/Migration Recipe
This recipe is a set of codemods that will help migrate to three r168 from three r167 .
Three/R168/Uniforms To Uniformarray
This codemod renames uniforms() function, to uniformsArray()
Meteor/V3/Migration Recipe
This recipe is a set of codemods that will help migrate to meteor v3 from meteor 2.x .
Three/R168/Logluvloader To UltraHDRLoader
This codemod removes
LogLuvLoader
, and replaces it withUltraHDRLoader
Three/R168/Pointerlockcontrols Object To Controls Object
This codemod helps in transforming
PointerLockControls.getObject()
tocontrols.object
Meteor/V3/Add Await To Async Webapp Methods
Below are some webapp methods which are now async, thats why added await
Three/R168/Dragcontrols Getraycaster To Controls Raycaster
This codemod renames DragControls.getRaycaster() to controls.raycaster
Three/R168/Dragcontrols.Deactivate To Disconnect
This codemod renames dragcontrols.deactivate() to disconnect()
Three/R168/Dragcontrols.Activate To Connect
This codemod renames dragcontrols.activate() to connect().
Three/R168/ViewportBottomLeft To ViewportUV.FlipY()
This codemod replaces viewportBottomLeft with viewportUV.flipY()
Three/R168/ViewportTopLeft To ViewportUV
This codemod replaces viewportTopLeft with viewportUV
Meteor/V3/Call Async
This codemod replaces call with callAsync, since thats how meteor works with calls now.