Skip to content

Commit

Permalink
chore(cfnspec): add junit.xml to ignore files (#10566)
Browse files Browse the repository at this point in the history
When generating a new module, add `junit.xml` to `.npmignore` and `.gitignore`, this is required by `aws-lint` rule. 

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
NetaNir authored Sep 29, 2020
1 parent fb39803 commit 37723e9
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ async function main() {
'nyc.config.js',
'!.eslintrc.js',
'!jest.config.js',
'junit.xml',
]);

await write('.npmignore', [
Expand All @@ -237,6 +238,7 @@ async function main() {
'',
'.eslintrc.js',
'jest.config.js',
'junit.xml',
]);

await write('lib/index.ts', [
Expand Down

0 comments on commit 37723e9

Please sign in to comment.