-
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
fix(@schematics/angular): generate workspace tslint and .editorconfig… #13354
Conversation
… in minimal workspaces and applications When in minimal, tslint does get installed thus the tslint config should also be created, as this will break The minimal flags definition stats that the project will be created without any testing frameworks. Fixes #13054
"protractor": "~5.4.0",<% } %> | ||
"ts-node": "~7.0.0", | ||
"protractor": "~5.4.0", | ||
"ts-node": "~7.0.0",<% } %> |
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.
Note: ts-node is used with protoactor
When generating a minimal project test builder config is not required.
Actually, we might want to go in the other direction and not install tslint. I'll mark this for discussion as a more formal definition of minimal is needed. |
See also: #9160 (comment) |
Superseded by #13408 |
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. |
… in minimal workspaces and applications
When in minimal, tslint does get installed thus the tslint config should also be created, as this will break
The minimal flags definition stats that the project will be created without any testing frameworks.
Fixes #13054