summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTrivikram Kamat <16024985+trivikr@users.noreply.github.com>2020-09-22 22:19:30 -0700
committerGitHub <noreply@github.com>2020-09-23 15:19:30 +1000
commit8a6a3904574375e109ef98aaa07af11a9c994b89 (patch)
tree1f7418739cbd781584ef2587aa6d61b34f71231e
parent49807ac4ac225f7a07282f6410476f529f7ad821 (diff)
docs: ts upgrade instructions to exclude some .d.ts files (#7638)
-rw-r--r--cli/dts/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/dts/README.md b/cli/dts/README.md
index bfa022109..f37c903df 100644
--- a/cli/dts/README.md
+++ b/cli/dts/README.md
@@ -14,6 +14,6 @@ So that might look something like this:
git clone https://github.com/microsoft/TypeScript.git
cd typescript
git checkout v3.9.7
-cp lib/typescript.js ~/src/deno/cli/tsc/00_typescript.js
-cp lib/*.d.ts ~/src/deno/cli/dts/
+rsync lib/typescript.js ~/src/deno/cli/tsc/00_typescript.js
+rsync --exclude=protocol.d.ts --exclude=tsserverlibrary.d.ts --exclude=typescriptServices.d.ts lib/*.d.ts ~/src/deno/cli/dts/
```