We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f06e4cd commit 862812aCopy full SHA for 862812a
.circleci/config.yml
@@ -796,8 +796,8 @@ jobs:
796
other.test_native_call_before_init
797
other.test_node_unhandled_rejection
798
core2.test_hello_world
799
- core2.test_esm_integration
800
- core0.test_esm_integration
+ core2.test_esm_integration*
+ core0.test_esm_integration*
801
core0.test_pthread_join_and_asyncify
802
core0.test_async_ccall_promise_jspi*
803
core0.test_cubescript_jspi"
src/modules.mjs
@@ -523,6 +523,7 @@ function exportRuntimeSymbols() {
523
const results = exports.filter((name) => name);
524
525
if (MODULARIZE == 'instance') {
526
+ if (results.length == 0) return '';
527
return '// Runtime exports\nexport { ' + results.join(', ') + ' };\n';
528
}
529
0 commit comments