diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-11-25 18:29:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-25 18:29:48 -0500 |
commit | dcb4ffb93a380710c32cc212b937ea38db5ceacc (patch) | |
tree | 18bf860912a14b84287bb8dbafdc41c5e3cdc6ab /cli/build.rs | |
parent | 0cc90d9246ff2c392457632d5030eaca2ca1ca6f (diff) |
refactor: move dts files, diagnostics.rs, and tsc.rs to tsc folder (#16820)
Diffstat (limited to 'cli/build.rs')
-rw-r--r-- | cli/build.rs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/cli/build.rs b/cli/build.rs index c7d902941..a7076145a 100644 --- a/cli/build.rs +++ b/cli/build.rs @@ -122,7 +122,7 @@ mod ts { "esnext.intl", ]; - let path_dts = cwd.join("dts"); + let path_dts = cwd.join("tsc/dts"); // ensure we invalidate the build properly. for name in libs.iter() { println!( @@ -476,5 +476,8 @@ fn main() { fn deno_webgpu_get_declaration() -> PathBuf { let manifest_dir = Path::new(env!("CARGO_MANIFEST_DIR")); - manifest_dir.join("dts").join("lib.deno_webgpu.d.ts") + manifest_dir + .join("tsc") + .join("dts") + .join("lib.deno_webgpu.d.ts") } |