Skip to content

Commit

Permalink
chore(cfnspec): update missing libraries to align with added eslint c…
Browse files Browse the repository at this point in the history
…onfig

Latest spec update #7664 broke because the expectations are currently on the wrong file.
Additionally we're missing the exclude from `.npmignore`
  • Loading branch information
shivlaks authored Apr 30, 2020
1 parent 942285a commit a58b8b3
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,8 @@ async function main() {
'*.tsbuildinfo',
'',
'tsconfig.json',
'',
'.eslintrc.js',
]);

await write('lib/index.ts', [
Expand Down Expand Up @@ -264,7 +266,7 @@ async function main() {
'```',
]);

await write('.eslintrc.json', [
await write('.eslintrc.js', [
"const baseConfig = require('../../../tools/cdk-build-tools/config/eslintrc');",
'module.exports = baseConfig;',
]);
Expand Down

0 comments on commit a58b8b3

Please sign in to comment.