mirror of
https://github.com/denoland/deno.git
synced 2024-11-14 16:33:45 -05:00
912e4f7177
And improve bundle docs
8 lines
295 B
Python
Executable file
8 lines
295 B
Python
Executable file
#!/usr/bin/env python
|
|
# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
import os
|
|
from util import run, root_path, build_path
|
|
|
|
os.chdir(os.path.join(root_path, "website"))
|
|
deno_exe = os.path.join(build_path(), "deno")
|
|
run([deno_exe, "bundle", "app.ts", "app.bundle.js"])
|