diff options
author | Louis Pilfold <louis@lpil.uk> | 2021-12-19 13:24:56 +0000 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2021-12-19 13:30:40 +0000 |
commit | 4bd740c90fd7c30fa253dd2f081981413bccb815 (patch) | |
tree | 7068a3e80d181b6f2e015c07961a14866759acf2 /bin | |
parent | 94d2c5780f87d3e2ef2c04f1f2bf232a00f29d98 (diff) | |
download | gleam_stdlib-4bd740c90fd7c30fa253dd2f081981413bccb815.tar.gz gleam_stdlib-4bd740c90fd7c30fa253dd2f081981413bccb815.zip |
Use old import syntax
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/run-tests.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/run-tests.js b/bin/run-tests.js index 3eaba7c..87d10cf 100755 --- a/bin/run-tests.js +++ b/bin/run-tests.js @@ -1,4 +1,4 @@ -import { opendir } from "fs/promises"; +const { opendir } = require("fs/promises"); const dir = "gen/javascript/gleam/"; |