Skip to content

Commit

Permalink
Fix repository.url strings in packages/*/package.json.
Browse files Browse the repository at this point in the history
Noticed this oversight after merging #413.
  • Loading branch information
benjamn committed Mar 25, 2021
1 parent 49c10b9 commit 2bd87d6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/preset/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
],
"repository": {
"type": "git",
"url": "https://github.com/facebook/regenerator/tree/master/packages/regenerator-preset"
"url": "https://github.com/facebook/regenerator/tree/master/packages/preset"
},
"license": "MIT",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/runtime/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"sideEffects": true,
"repository": {
"type": "git",
"url": "https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime"
"url": "https://github.com/facebook/regenerator/tree/master/packages/runtime"
},
"license": "MIT"
}
2 changes: 1 addition & 1 deletion packages/transform/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
],
"repository": {
"type": "git",
"url": "https://github.com/facebook/regenerator/tree/master/packages/regenerator-transform"
"url": "https://github.com/facebook/regenerator/tree/master/packages/transform"
},
"license": "MIT",
"scripts": {
Expand Down

1 comment on commit 2bd87d6

@fuhlig
Copy link

@fuhlig fuhlig commented on 2bd87d6 Mar 26, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@benjamn
When is the next release planned? The incorrect URL in the current version leads to a broken link in our third party license references.

Please sign in to comment.