Skip to content

Commit

Permalink
really not sure why these lint errors are suddenly appearing on this …
Browse files Browse the repository at this point in the history
…PR..
  • Loading branch information
dimitropoulos committed Oct 22, 2024
1 parent 9816349 commit d3b769e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/turbo-gen/src/utils/plop.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export function getPlop({
// add in all the workspace configs
workspaceConfigs.forEach((c) => {
try {
plop?.load(c.config, {
plop.load(c.config, {
destBasePath: c.root,
force: false,
});
Expand Down
3 changes: 1 addition & 2 deletions packages/turbo-utils/src/createProject.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,7 @@ export async function createProject({
try {
if (!isDefaultExample && repoInfo) {
loader.start();
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion -- this is type guarded above (wtf TS)
await retry(() => downloadAndExtractRepo(root, repoInfo!), {
await retry(() => downloadAndExtractRepo(root, repoInfo), {
retries: 3,
});
} else {
Expand Down

0 comments on commit d3b769e

Please sign in to comment.