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
Including the nightly builds into an app that used the 2.x branch results in the following console error(s):
polyfills.bundle.js:10977 Unhandled Promise rejection: No provider for SingletonEffectsService! ; Zone: <root> ; Task: Promise.then ; Value: Error: No provider for SingletonEffectsService!
My setup is that I have a core module (which includes the entire ngrx stuff) that I yarn link into a web and mobile project. For core: ngc -p tsconfig.json compiles successfully (config similar to web - see below).
For web: ng serve --proxy-config proxy.conf.json compiles properly also.
The issue appears on the first load, where it checks for authentication (using effects).
I know it is hardly alpha status ... maybe it helps.
Btw: I followed the migration guide.
Blimey ... following the docs under "docs" is indeed helpful ... forgot the .forRoot() import of EffectsModule. So in my case I import these three after another:
Including the nightly builds into an app that used the 2.x branch results in the following console error(s):
polyfills.bundle.js:10977 Unhandled Promise rejection: No provider for SingletonEffectsService! ; Zone: <root> ; Task: Promise.then ; Value: Error: No provider for SingletonEffectsService!
My setup is that I have a core module (which includes the entire ngrx stuff) that I
yarn link
into a web and mobile project. For core:ngc -p tsconfig.json
compiles successfully (config similar to web - see below).For web:
ng serve --proxy-config proxy.conf.json
compiles properly also.The issue appears on the first load, where it checks for authentication (using effects).
I know it is hardly alpha status ... maybe it helps.
Btw: I followed the migration guide.
node: 7.8.0
os: darwin x64
Typescript: 2.3.3
tsconfig:
The text was updated successfully, but these errors were encountered: