You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Prior to this patch the value `false` would be passed to `semver.gte(`
causing an exception of `Invalid Version: false`. This ensures the range
validity of the version is only checked if one is present.
Specifically bower versions of Ember have an `emberVersion` of `false`
here. However none of those versions of Ember support co-location.
Fixesember-cli#422
Prior to this patch the value `false` would be passed to `semver.gte(`
causing an exception of `Invalid Version: false`. This ensures the range
validity of the version is only checked if one is present.
Specifically bower versions of Ember have an `emberVersion` of `false`
here. However none of those versions of Ember support co-location.
Fixesember-cli#422
When using an version of Ember from bower
ember
atember-cli-htmlbars/lib/ember-addon-main.js
Line 32 in 0176e64
...is
undefined
, thusemberVersion
atember-cli-htmlbars/lib/ember-addon-main.js
Line 33 in 0176e64
is
false
. ThenemberVersion
is passed tosemver.gte(
ember-cli-htmlbars/lib/ember-addon-main.js
Line 46 in 0176e64
resulting in an exception being thrown. It seems like that final line 46 should be
The text was updated successfully, but these errors were encountered: