diff options
Diffstat (limited to 'tools/benchmark.py')
-rwxr-xr-x | tools/benchmark.py | 2 |
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) |