Skip to content

Commit

Permalink
fix: add fs-extra dep (#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
kcwinner authored Sep 16, 2021
1 parent 3d7f23c commit 28373c1
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .projen/deps.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@
"name": "typescript",
"type": "build"
},
{
"name": "fs-extra",
"type": "bundled"
},
{
"name": "projen",
"type": "peer"
Expand Down
5 changes: 3 additions & 2 deletions .projenrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ const project = new JsiiProject({

entrypoint: 'lib/index.js',
projenDevDependency: true,
devDeps: ['@types/fs-extra@^8'], // This will break if it's on 9
deps: ['projen'],
peerDeps: [ 'projen' ],
peerDeps: ['projen'],
devDeps: ['@types/fs-extra@^8'], // This will break if it's on 9
bundledDeps: ['fs-extra'],

eslint: false,
mergify: false,
Expand Down
5 changes: 4 additions & 1 deletion package.json

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

10 changes: 10 additions & 0 deletions yarn.lock

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

0 comments on commit 28373c1

Please sign in to comment.