The addon is using @ember/string but its not declared as peerDependency.
This makes impossible to use @ember/string v4 as its a v2 addon
https://github.com/funkensturm/ember-local-storage/blob/02112d14e475520a776f3eb97ef4bf918e10fd79/addon/helpers/storage.js#L1-L8
There are two options to fix this issue:
- adding
dasherize as internal function (not braking - recommended)
- adding
@ember/string as peerDependency (braking)
The addon is using
@ember/stringbut its not declared as peerDependency.This makes impossible to use
@ember/stringv4 as its a v2 addonhttps://github.com/funkensturm/ember-local-storage/blob/02112d14e475520a776f3eb97ef4bf918e10fd79/addon/helpers/storage.js#L1-L8
There are two options to fix this issue:
dasherizeas internal function (not braking - recommended)@ember/stringas peerDependency (braking)