Fully delegate your migrations to Intuita-certified experts.
Instantly build codemods with GPT4 & specialized helpers. All for free.
Read our latest blog post about the Next.js "Dream Migration."
This codemod replaces all occurrences of this.currentRouteName with this.router.currentRouteName and this.currentPath with this.router.currentPath.
This codemod transforms the module specifier @next/font/*
in import statements into next/font/*
.
This codemod reads the contents of your pages
directory and creates the placeholder files.
The App Router Recipe is a set of codemods that assist you with the pages-to-app migration process.
This recipe is a set of automations that will upgrade your project from using msw v1 to v2.
This codemod puts the generic arguments in the correct order to keep type safety.
This codemod updates MSW handlers to use the new HttpResponse function for responses, replacing old res
calls with this new method in msw v2.
This codemod updates the request handler signature in the MSW library, changing how certain request properties are accessed and removing deprecated elements.
A new way of calling a passthrough is available in msw v2. This codemod replaces req.passthrough()
calls with the new way of doing that using exported function.
A new way of listing all handlers is preferred in msw v2. This codemod replaces printHandlers()
calls with the new way of doing that.
In msw v2, lifecycle events callback methods have changed their signature. This codemod replaces usages if its arguments with the new ones.
This codemod replaces MSW v1 with v2 imports.
This codemod replaces ctx.fetch(req)
with fetch(bypass(req))
.
This codemod hard replaces the callback signature to the new one and cleans up unused variables.