Closed levibostian closed 1 year ago
Fixes: https://github.com/hayd/deno-udd/issues/96
udd takes a npm import npm:ical-generator@^4.0.0 and converts that to npm:ical-generator@4.0.0#^ from this line of code
npm:ical-generator@^4.0.0
npm:ical-generator@4.0.0#^
The npm regex gives you the version string of 4.0.0#^ which SemVer() fails at.
4.0.0#^
SemVer()
This PR fixes the problem by getting the version from npm:ical-generator@4.0.0#^ to return 4.0.0 instead of 4.0.0#^.
4.0.0
Huh. I guess github will not let you reopen a PR once the branch has been force pushed.
I had to keep this closed and open a new one. https://github.com/hayd/deno-udd/pull/109
Fixes: https://github.com/hayd/deno-udd/issues/96
udd takes a npm import
npm:ical-generator@^4.0.0
and converts that tonpm:ical-generator@4.0.0#^
from this line of codeThe npm regex gives you the version string of
4.0.0#^
whichSemVer()
fails at.This PR fixes the problem by getting the version from
npm:ical-generator@4.0.0#^
to return4.0.0
instead of4.0.0#^
.