Skip to content

Commit 43e03ac

Browse files
committed
zz_removals -> v4-migration
1 parent 600e500 commit 43e03ac

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/source/migrating/apollo-client-4-migration.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ This codemod consists of the following steps:
8484
- The `from`, `split` and `concat` functions should now be used as methods on the `ApolloLink` class, so this step will also update your code to use these static methods.
8585
- `removals`
8686
In Apollo Client 4, a number of exports has been removed for various reasons.
87-
This step will move all of those imports to point at `@apollo/client/zz_removals`, which is a special migration entry point. All imports from that entry point are type-only and have a DocBlock explaining why the specific export was removed. Many of those DocBlocks also contain migration instructions to help you move away from those removed exports.
87+
This step will move all of those imports to point at `@apollo/client/v4-migration`, which is a special migration entry point. All imports from that entry point are type-only and have a DocBlock explaining why the specific export was removed. Many of those DocBlocks also contain migration instructions to help you move away from those removed exports.
8888

8989
### Runing the Codemod
9090

@@ -399,9 +399,9 @@ The following individual imports have been renamed, moved to new entry points an
399399

400400
## Replacing removed exports
401401

402-
If you used the [Codemod](#applying-the-codemod) to update your imports, all imports for removed exports have been replaced with imports from `@apollo/client/zz_removals`. You should get a TypeScript error everywhere you use a removed export, and hovering your mouse over it, you get more information about why the export was removed and what you can use instead.
402+
If you used the [Codemod](#applying-the-codemod) to update your imports, all imports for removed exports have been replaced with imports from `@apollo/client/v4-migration`. You should get a TypeScript error everywhere you use a removed export, and hovering your mouse over it, you get more information about why the export was removed and what you can use instead.
403403

404-
For a list of all removed imports and recommended actions, see [node_modules/@apollo/client/zz_removals.d.ts](https://app.unpkg.com/@apollo/client@^4.0.0-rc/zz_removals.d.ts)
404+
For a list of all removed imports and recommended actions, see [node_modules/@apollo/client/v4-migration.d.ts](https://app.unpkg.com/@apollo/client@^4.0.0-rc/v4-migration.d.ts)
405405

406406
## Update your ApolloClient creation
407407

0 commit comments

Comments
 (0)