summaryrefslogtreecommitdiff
path: root/tools/benchmark.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/benchmark.py')
-rwxr-xr-xtools/benchmark.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/benchmark.py b/tools/benchmark.py
index 031da263b..a921feaf8 100755
--- a/tools/benchmark.py
+++ b/tools/benchmark.py
@@ -213,7 +213,7 @@ def bundle_benchmark(deno_exe):
for name, url in bundles.items():
# bundle
path = name + ".bundle.js"
- run([deno_exe, "bundle", url, path])
+ run([deno_exe, "bundle", "--unstable", url, path])
# get size of bundle
assert os.path.exists(path)
sizes[name] = os.path.getsize(path)