Loader: support .wasm imports (#3328)

* loader: support .wasm imports

* http_server: true

* Support named exports

* Clippy
This commit is contained in:
Kevin (Kun) "Kassimo" Qian 2019-11-14 05:31:39 -08:00 committed by Ry Dahl
parent fdf0ede2ac
commit 4189cc1ab5
20 changed files with 388 additions and 9 deletions

View file

@ -39,9 +39,10 @@ def eslint():
script = os.path.join(third_party_path, "node_modules", "eslint", "bin",
"eslint")
# Find all *directories* in the main repo that contain .ts/.js files.
source_files = git_ls_files(
root_path,
["*.js", "*.ts", ":!:std/prettier/vendor/*", ":!:std/**/testdata/*"])
source_files = git_ls_files(root_path, [
"*.js", "*.ts", ":!:std/prettier/vendor/*", ":!:std/**/testdata/*",
":!:cli/compilers/*"
])
source_dirs = set([os.path.dirname(f) for f in source_files])
# Within the source dirs, eslint does its own globbing, taking into account
# the exclusion rules listed in '.eslintignore'.