This repository was archived by the owner on Sep 4, 2020. It is now read-only.
Releases: adriancarriger/angular-provide-once
Releases · adriancarriger/angular-provide-once
v3.1.0
v3.0.0
<a name"3.0.0">
3.0.0 (2017-02-14)
Features
- core: support AOT (2bb3c78b)
Breaking Changes
- must specify provider dependencies
To migrate your code follow the example below:
Before:
providers: [
...ProvideOnce(MyService)
],
After:
providers: [
...ProvideOnce(MyService, [DependantService])
],
See the README for more details.
(2bb3c78b)