From 89149500297d1caf2b4d44ec6553fc1fac9ebacc Mon Sep 17 00:00:00 2001 From: Jayden Seric Date: Sat, 23 Jul 2022 14:53:24 +1000 Subject: [PATCH] Tweak changelog entry wording. --- changelog.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index 1ef7e68..435335d 100644 --- a/changelog.md +++ b/changelog.md @@ -44,7 +44,7 @@ - Updated the [`graphql`](https://npm.im/graphql) peer dependency to `^16.3.0`. - Updated the [`http-errors`](https://npm.im/http-errors) dependency to v2. - Public modules are now individually listed in the package `files` and `exports` fields. -- Removed the package main index module; deep imports must be used. To migrate: +- Removed the package main index module; deep imports must be used. To migrate imports: ```diff - import { GraphQLUpload } from "graphql-upload"; @@ -71,7 +71,7 @@ + import Upload from "graphql-upload/Upload.js"; ``` -- Shortened public module deep import paths, removing the `/public/`. To migrate: +- Shortened public module deep import paths, removing the `/public/`. To migrate imports: ```diff - import GraphQLUpload from "graphql-upload/public/GraphQLUpload.js";