-
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?
Changes from 2 commits
17a1daf
d02fa5f
cd132d8
0aa6c5b
80c2506
2cbcede
37b40a4
10e7246
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -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", | ||||||
"marked-terminal": "5.x.x", | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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:
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good catch - I'll push up a fix shortly. |
||||||
"mkdirp": "1.x.x", | ||||||
"mo-walk": ">=1.1.0 <2", | ||||||
"pkg-dir": "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.
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.