Skip to content

Commit 705b8f0

Browse files
committed
fix: include allow including angular.json and package.json in context
This files offer valuable information to the LLM such as builder configuration, Angular version used etc..
1 parent 35ce6b7 commit 705b8f0

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

runner/orchestration/file-system.ts

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -174,14 +174,7 @@ export async function resolveContextFiles(
174174

175175
const paths = globSync(patterns, {
176176
cwd: directory,
177-
ignore: [
178-
'**/node_modules/**',
179-
'**/README.md',
180-
'**/package-lock.json',
181-
'**/package.json',
182-
'**/angular.json',
183-
'**/.vinxi/**',
184-
],
177+
ignore: ['**/node_modules/**', '**/README.md', '**/package-lock.json', '**/.vinxi/**'],
185178
});
186179

187180
return Promise.all(

0 commit comments

Comments
 (0)