update package.json to successfully resolve forked packages #2
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
problem:
mdx-live-editor
requires forks of npm packages that are not published on npm or yarn registries. Perhaps you have themyarn link
ed on your dev box?The two commits show alternative approaches to fixing the error:
mdx-live-editor
source code to refer to them in imports as if they were the forked version. Not good approach if you plan on modifying your forks.either way, both solutions allow
git clone
ing thenyarn
installing to work successfully while retaining the alternate names of the forked packages (i.e.import EasyMDE from '@axe312/easymde'
). If you ever publish your forks, you would just need to change thepackage.json
s in this repo.I really like this project - thanks for publishing it! I am working on something kinda similar (and also saw the
[blocks/blocks](https://github.com/blocks/blocks)
project announcement, so I will see you around and perhaps even have some contributions someday.