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
Definitely planning to implement this next. I want to do it as part of moving the sub generators into their own generator, and use a yo-rc.json file to keep track of the configuration for the project. Generator angular fullstack would scaffold the config file with some defaults for the separate angular module generator.
Example configuration:
<generator name>: {
preprocessors: {
script: 'js', // support for 'coffee'
markup: 'html' // support for 'jade'
},
paths: {
app: 'app.js', // where to automatically add routes
components: 'app/components' // uses googles angular project guidelines
},
templates: { // possibly allow people to replace some of the default templates with their own
directive: 'my/custom/directive/',
directiveTest: 'my/custom/directiveTest/'
},
regex: {}, // possibly include some regex variables for configuring how routes are added
prompts: {}
}
https://docs.google.com/document/d/1XXMvReO8-Awi1EZXAXS4PzDzdNvV6pGcuaF4Q9821Es/pub
.. and what do you think? :) I use it in my projects and it is much better, than default.
The text was updated successfully, but these errors were encountered: