Skip to content

Commit 4169a57

Browse files
authored
chore: upgrade deps (#7)
1 parent 34f73a2 commit 4169a57

File tree

6 files changed

+858
-843
lines changed

6 files changed

+858
-843
lines changed

.github/workflows/upgrade-main.yml

+8-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.projenrc.ts

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { FunctionlessProject } from "@functionless/projen";
22
import { Husky } from "@mountainpass/cool-bits-for-projen";
33
import { TurborepoProject } from "projen-turborepo";
4+
import { GithubCredentials } from "projen/lib/github";
45

56
const turbo = new TurborepoProject({
67
defaultReleaseBranch: "main",
@@ -25,6 +26,11 @@ const turbo = new TurborepoProject({
2526
lintProjenRc: true,
2627
prettier: true,
2728
},
29+
depsUpgradeOptions: {
30+
workflowOptions: {
31+
projenCredentials: GithubCredentials.fromApp(),
32+
},
33+
},
2834
gitignore: [".swc"],
2935
// deps: [], /* Runtime dependencies of this module. */
3036
// description: undefined, /* The description is just a string that helps people understand the purpose of the package. */

package.json

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/sagaFunction/package.json

+4
Original file line numberDiff line numberDiff line change
@@ -95,5 +95,9 @@
9595
]
9696
}
9797
},
98+
"resolutions": {
99+
"@types/responselike": "1.0.0",
100+
"got": "12.3.1"
101+
},
98102
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
99103
}

packages/sample1/package.json

+4
Original file line numberDiff line numberDiff line change
@@ -95,5 +95,9 @@
9595
]
9696
}
9797
},
98+
"resolutions": {
99+
"@types/responselike": "1.0.0",
100+
"got": "12.3.1"
101+
},
98102
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
99103
}

0 commit comments

Comments
 (0)