This extension is very useful. Thank you for creating such a great extension!
I found when fetch angular.json for the default config, the node_modules was not excluded. And the program found angular.json from /node_modules/@angular. That is not the angular.json from my project. Since I use 'less' rather than 'scss' for style file.
I would suggest that add the exclude pattern so that everybody could fetch their own config.
Like this:
const files = await workspace.findFiles('{**/.angular-cli.json,**/angular.json}', 'node_modules/*', 1);
I tried to create a PR for you to review, but system told me I could not push a dev branch to remote. And that fix is quite simple. So, hope you can accept that. Thank you!
Hi @ivalexa,
This extension is very useful. Thank you for creating such a great extension!
I found when fetch angular.json for the default config, the node_modules was not excluded. And the program found angular.json from /node_modules/@angular. That is not the angular.json from my project. Since I use 'less' rather than 'scss' for style file.
I would suggest that add the exclude pattern so that everybody could fetch their own config.
Like this:
const files = await workspace.findFiles('{**/.angular-cli.json,**/angular.json}', 'node_modules/*', 1);
I tried to create a PR for you to review, but system told me I could not push a dev branch to remote. And that fix is quite simple. So, hope you can accept that. Thank you!
Thanks, Joey