Skip to content
This repository has been archived by the owner on Dec 21, 2024. It is now read-only.

Commit

Permalink
fix(backend): failing ProjectOpts.path type check with cli (#455)
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanFlurry committed Sep 23, 2024
1 parent 056d232 commit 03e2dca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions packages/backend/deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"format": "deno fmt .",
"format:check": "deno fmt --check .",

"check": "deno check toolchain/**/*.ts runtime/**/*.ts",
"check": "deno check cli/**/*.ts toolchain/**/*.ts runtime/**/*.ts",

// Remove old vendored files in order to ensure a consistent cache
"cache": "rm -rf vendor node_modules && deno cache toolchain/**/*.ts runtime/**/*.ts",

"lint": "deno lint toolchain/**/*.ts runtime/**/*.ts",
"lint:fix": "deno lint toolchain/**/*.ts runtime/**/*.ts",
"lint": "deno lint cli/**/*.ts toolchain/**/*.ts runtime/**/*.ts",
"lint:fix": "deno lint cli/**/*.ts toolchain/**/*.ts runtime/**/*.ts",

"test:core": "deno test -A ."
},
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/toolchain/project/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export interface Project {

export interface LoadProjectOpts {
/** Path to the project root or project config. */
project?: string;
project: string | null;
}

/**
Expand Down

0 comments on commit 03e2dca

Please sign in to comment.