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
[ ] Regression (a behavior that used to work and stopped working in a new release)
[X] Bug report
[ ] Feature request
[ ] Documentation issue or request
What is the current behavior?
use schematics to generate a new store ng g store AppState --root --module app.module.ts --collection @ngrx/schematics
in app.module.ts the environment file path is incorrect import { environment } from '../../environments/environment';
Expected behavior:
see the environment path file set to import { environment } from '../environments/environment';
The text was updated successfully, but these errors were encountered:
markgoho
changed the title
Store: Environments import path is broken when generating new store
Schematics: Environments import path is off by one level when generating new store
May 23, 2018
I'm submitting a...
What is the current behavior?
use schematics to generate a new store
ng g store AppState --root --module app.module.ts --collection @ngrx/schematics
in app.module.ts the environment file path is incorrect
import { environment } from '../../environments/environment';
Expected behavior:
see the environment path file set to
import { environment } from '../environments/environment';
The text was updated successfully, but these errors were encountered: