1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

build: use shallow clone of third_party (#8295)

"third_party/" is a git submodule pointing to "deno_third_party" repository. 
The git history of that repo is quite heavy as it historically contained 
typescript, node_modules and python_packages directories, but now there 
are only 11 binaries in there. Setting this attribute should speed up fresh clones.
This commit is contained in:
Bartek Iwańczuk 2020-11-09 15:43:04 +01:00 committed by GitHub
parent aaf7166a9d
commit c650c5c720
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

1
.gitmodules vendored
View file

@ -1,6 +1,7 @@
[submodule "deno_third_party"] [submodule "deno_third_party"]
path = third_party path = third_party
url = https://github.com/denoland/deno_third_party.git url = https://github.com/denoland/deno_third_party.git
shallow = true
[submodule "std/wasi/testdata"] [submodule "std/wasi/testdata"]
path = std/wasi/testdata path = std/wasi/testdata
url = https://github.com/khronosproject/wasi-test-suite.git url = https://github.com/khronosproject/wasi-test-suite.git