-
Notifications
You must be signed in to change notification settings - Fork 7
CLI: Default options
Francesco Novy edited this page Nov 20, 2018
·
1 revision
For all CLI commands, you can create configuration files in your app to specify default configuration options.
For each command, there is a corresponding file config/l10n-<command name>.js
- for example config/l10n-extract.js
would contain the default options for ember l10n:extract
.
These files should look like this:
// config/l10n-extract.js
module.exports = {
'bug-address': '[email protected]',
'copyright': 'Cropster',
'package': 'my-package-name',
'skip-patterns': ['special-folder']
};