• Pinia Colada 0 14 Migration Recipe

    This codemod updates the usage of PiniaColada to ensure that the enabled and gcTime options are correctly placed under queryOptions. Previously, these options were directly passed as top-level properties, which is now deprecated. The codemod transforms these patterns into the new structure where enabled is nested under queryOptions.

    by@codemod
  • Correct Ts Specifiers

    This package transforms import specifiers from the old tsc (TypeScript's compiler) requirement of using .js file extensions in source-code to import files that are actually typescript; the corrected specifiers enable source-code to be runnable by standards-compliant software like Node.js.

    by@jakobjingleheimer
  • React Router/7/Add V7 SkipActionStatusRevalidation Flag

    This transformation adds the necessary configuration to enable v7 features, specifically the v7_skipActionStatusRevalidation flag.

    by@manishjha-04
  • React Router/7/Add V7 PartialHydration Flag

    This transformation adds the necessary configuration to enable v7 features, specifically the v7_partialHydration_Flag flags

    by@manishjha-04
  • React Router/7/Add V7 NormalizeFormMethod

    This transformation adds the necessary configuration to enable v7 features, specifically adds the v7_normalizeFormMethod

    by@manishjha-04
  • React Router/7/Add V7 FetcherPersist Flag

    This transformation adds the necessary configuration to enable v7 features, specifically the v7_fetcherPersist flags

    by@manishjha-04
  • React Router/7/Add V7 StartTransition Flag

    This transformation adds the necessary configuration to enable v7 features, specifically the v7_startTransition flags. It affects , , and createBrowserRouter configurations.

    by@manishjha-04
  • React Router/7/Add V7 RelativeSplatPath Flag

    This transformation adds the necessary configuration to enable v7 features, specifically the v7_relativeSplatPath flag. It affects both components and createBrowserRouter configurations.

    by@manishjha-04
  • Node/22.8.0/Enable Compile Cache In Start Server

    This release adds a new API module.enableCompileCache() that can be used to enable on-disk code caching of all modules loaded after this API is called. Previously this could only be enabled by the NODE_COMPILE_CACHE environment variable, so it could only set by end-users. This API allows tooling and library authors to enable caching of their own code. This is a built-in alternative to the v8-compile-cache/v8-compile-cache-lib packages, but have better performance and supports ESM.

    by@dfordp
  • Meteor/V3/Add Await To Async Webapp Methods

    Below are some webapp methods which are now async, thats why added await

    by@yugal41735
  • Next/15/Update Route Handlers

    Update Route Handlers to Handle Caching

    by@nishant2253
  • TanStackRouter CodeSplitting

    This codemod automates the process of splitting your TanStack Router route files into two separate files to enable code splitting. By utilizing this codemod, you can easily move non-critical route configuration, such as the component, into a separate .lazy.tsx file, which allows for better performance and reduced initial load time in your React application.

  • Netlify/0.8.1/EnableBuildEventHandlers

    This codemod renames enableBuildhook to enableBuildEventHandlers as required in Netlify SDK v0.8.1.

    by@codemod
  • Remove Unused Feature Flags

    This experimental codemod replaces function calls in a for of await functionName(featureFlagName), where:

    by@codemod