File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -291,9 +291,14 @@ curl https://sqlite.org/2022/sqlite-doc-3400000.zip | bsdtar --extract --file -
291291```
292292
293293## Three.js
294+ Download the docs from https://github.com/mrdoob/three.js/tree/dev/files or run the following commands in your terminal:
295+ Make sure to set the version per the release tag (e.g. r160). Note that the r prefix is already included, only the version number is needed.
294296
295297``` sh
296- git clone --depth 1 --branch r${VERSION} https://github.com/mrdoob/three.js.git
297- mv three.js/docs/ docs/threejs~${VERSION} /
298- rm -rf three.js/
298+ curl https://codeload.github.com/mrdoob/three.js/tar.gz/refs/tags/r${VERSION} > threejs.tar.gz
299+ tar -xzf threejs.tar.gz
300+ mkdir -p docs/threejs~${VERSION}
301+ mv three.js-r${VERSION} /docs/* docs/threejs~${VERSION} /
302+ rm -rf three.js-r${VERSION} /
303+ rm threejs.tar.gz
299304```
You can’t perform that action at this time.
0 commit comments