-
Notifications
You must be signed in to change notification settings - Fork 12k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(generate): add option to auto-export declarations #3876
Conversation
8f28998
to
862f200
Compare
@@ -21,7 +21,8 @@ module.exports = { | |||
{ name: 'view-encapsulation', type: String, aliases: ['ve'] }, | |||
{ name: 'change-detection', type: String, aliases: ['cd'] }, | |||
{ name: 'skip-import', type: Boolean, default: false }, | |||
{ name: 'module', type: String, aliases: ['m'] } | |||
{ name: 'module', type: String, aliases: ['m'] }, | |||
{ name: 'exports', type: Boolean, default: false } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
export
instead of exports
(drop the s
).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(here and everywhere)
@@ -21,7 +21,8 @@ module.exports = { | |||
{ name: 'view-encapsulation', type: String, aliases: ['ve'] }, | |||
{ name: 'change-detection', type: String, aliases: ['cd'] }, | |||
{ name: 'skip-import', type: Boolean, default: false }, | |||
{ name: 'module', type: String, aliases: ['m'] } | |||
{ name: 'module', type: String, aliases: ['m'] }, | |||
{ name: 'exports', type: Boolean, default: false } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(here and everywhere)
862f200
to
bf9be5e
Compare
LGTM. Thanks! |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Fixes #3778