Skip to content

Commit

Permalink
chore: add dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kaizencc committed Dec 7, 2021
1 parent 3df67b9 commit e838b61
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 2 deletions.
8 changes: 8 additions & 0 deletions .projen/deps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions .projenrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,15 @@ const project = new typescript.TypeScriptProject({
'@jsii/spec',
'jsii-reflect',
'jsii-rosetta',
'jsii',
'fs-extra',
'yargs',
],
devDeps: [
'@types/jest',
'@types/yargs',
'jest',
'@types/fs-extra',
'typescript',
],
projenUpgradeSecret: 'PROJEN_GITHUB_TOKEN',
Expand Down
2 changes: 1 addition & 1 deletion lib/generate-missing-examples.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export async function generateMissingExamples(assemblyLocations: string[], optio
async function statFile(fileName: string) {
try {
return await fs.stat(fileName);
} catch (e) {
} catch (e: any) {
if (e.code === 'ENOENT') { return undefined; }
throw e;
}
Expand Down
2 changes: 2 additions & 0 deletions package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion yarn.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e838b61

Please sign in to comment.