Expected Behavior
"use strict";
const semver = require("semver");
console.log(semver.satisfies("4.2.4", ">= 4.0.0"));
This code prints true if executed with and without bundling.
Actual Behavior
After bundling it prints false. semver.satisfies always returns false now.
Additional Information
It worked as expected with the previous version of the plugin.
Related: #658, https://github.com/npm/node-semver/blob/master/classes/range.js
Expected Behavior
This code prints
trueif executed with and without bundling.Actual Behavior
After bundling it prints
false.semver.satisfiesalways returnsfalsenow.Additional Information
It worked as expected with the previous version of the plugin.
Related: #658, https://github.com/npm/node-semver/blob/master/classes/range.js