Skip to main content
Module

x/deno/tools/build_test.py

A modern runtime for JavaScript and TypeScript.
Go to Latest
File
#!/usr/bin/env python # Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. import sys from build import main as build from test import main as test build(sys.argv) test(sys.argv)