Skip to content

Commit

Permalink
fix(cfnspec): .npmignore generated by cfnspec does not pass pkglint (#…
Browse files Browse the repository at this point in the history
…15409)

A recent change to pkglint (#15064) to always include .lit.ts files in
.npmignore was not also applied to the .npmignore generator in cfnspec
which is created whenever a new CFN module is added. This will lead to
a failed build whenever the CFN spec is next updated and forces a new
module to be created.


----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
BenChaimberg authored Jul 3, 2021
1 parent 86a44f9 commit c432d48
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,7 @@ async function main() {
'**/cdk.out',
'junit.xml',
'test/',
'!*.lit.ts',
]);

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

0 comments on commit c432d48

Please sign in to comment.