generating a blog using scully should use the defined app prefix from angular.json file instead of always app.
Running this:
ng g @scullyio/init:blog
... will currently always lead to this blog.component.ts file content:
...
@Component({
selector: 'app-blog',
...
})
...
If a prefix is set in angular.json (path: projects => <project name> => prefix) it should be used by scully for setting it:
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
...
"projects": {
"my-project": {
...
"prefix": "foo",
}
}
}
...
@Component({
selector: 'app-blog',
...
})
...
thanks for the issue!
WIP in schematics/project-prefix
fixed and merged :) thanks for report