-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Stopgap fix for marked dependency issue #58
base: master
Are you sure you want to change the base?
Conversation
package.json
Outdated
"marked": "1.x.x", | ||
"marked-terminal": "4.x.x", | ||
"marked": "4.0.16", | ||
"marked-terminal": "5.x.x", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The only v5 marked-terminal versions that have support for CJS usage is v5.1.0+, so I think we'll want something like this:
"marked-terminal": "5.x.x", | |
"marked-terminal": "^5.1.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch - I'll push up a fix shortly.
@@ -44,8 +44,8 @@ | |||
"@hapipal/toys": "3.x.x", | |||
"bin-v8-flags-filter": ">=1.2.0 <2", | |||
"glob": "7.x.x", | |||
"marked": "1.x.x", | |||
"marked-terminal": "4.x.x", | |||
"marked": "4.0.16", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a special reason this version is pinned, or can we use ^4.0.16
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The markdown parsing change comes in at 4.0.17, which breaks some of hpal's tests, so I pinned it to this specific version.
…I'm not a travis user, so this might get reverted
It turns out in npm v9 an aborted |
…at when running hpal new. Also update lab to pick up new global leak handling
No description provided.