Denoのビルド
2020/10/05更新
サブモジュールごとclone
code:bash
(Windows上ではcloneに先立ち、明示的に core.symlinks=trueを設定する必要があります。)
code:bash
git config --global core.symlinks=true
code:bash
PATH=$HOME/.cargo/bin:$PATHにパス通す
Python2系を使用
code:bash
$ pyenv install 2.7.x
pythonで動くpythonが2系である必要があります
ビルド
code:bash
$ cargo build
ビルドしたDenoを実行する
code:bash
$ ./target/debug/deno run tests/002_hello.ts
テストを実行する
code:bash
$ cargo test
Format & Lint
code:bash
$ ./tools/format.py
$ ./tools/lint.py