summaryrefslogtreecommitdiff
path: root/src/module_wrap.cc
diff options
context:
space:
mode:
authorMyles Borins <mylesborins@google.com>2019-10-14 13:28:42 -0400
committerGuy Bedford <guybedford@gmail.com>2019-10-16 22:01:19 -0400
commit1e5ed9a5db7494d2e415e7937ee0caa4f68e5505 (patch)
treea2118f05c9efb90f5311e1ebdf137e231f3ff0d2 /src/module_wrap.cc
parenta6b030d5ac2c4a2d34f6b9eb3f945d252a42843e (diff)
downloadandroid-node-v8-1e5ed9a5db7494d2e415e7937ee0caa4f68e5505.tar.gz
android-node-v8-1e5ed9a5db7494d2e415e7937ee0caa4f68e5505.tar.bz2
android-node-v8-1e5ed9a5db7494d2e415e7937ee0caa4f68e5505.zip
esm: modify resolution order for specifier flag
Currently `--es-module-specifier-resolution=node` has an alternative resolution order than the default in common.js, this causes inconsistencies. As discussed in @nodejs/modules we want to preserve resolution order between implementations. PR-URL: https://github.com/nodejs/node/pull/29974 Reviewed-By: Jan Krems <jan.krems@gmail.com> Reviewed-By: Guy Bedford <guybedford@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'src/module_wrap.cc')
-rw-r--r--src/module_wrap.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/module_wrap.cc b/src/module_wrap.cc
index 97e6b5453d..e7df8688cb 100644
--- a/src/module_wrap.cc
+++ b/src/module_wrap.cc
@@ -48,11 +48,10 @@ using v8::Undefined;
using v8::Value;
static const char* const EXTENSIONS[] = {
- ".mjs",
- ".cjs",
".js",
".json",
- ".node"
+ ".node",
+ ".mjs"
};
ModuleWrap::ModuleWrap(Environment* env,