Skip to content

Commit

Permalink
Deploying to gh-pages from @ 40f8e82 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
nin-jin committed Oct 24, 2024
1 parent 28c5126 commit be68c10
Show file tree
Hide file tree
Showing 8 changed files with 575 additions and 563 deletions.
554 changes: 277 additions & 277 deletions node.d.ts

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion node.deps.json

Large diffs are not rendered by default.

8 changes: 6 additions & 2 deletions node.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion node.js.map

Large diffs are not rendered by default.

8 changes: 6 additions & 2 deletions node.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2006,7 +2006,11 @@ var $node = new Proxy({ require }, {
try {
$$.$mol_exec('.', 'npm', 'install', '--omit=dev', '@types/' + name);
}
catch { }
catch (e) {
if ($$.$mol_fail_catch(e)) {
$$.$mol_fail_log(e);
}
}
break;
}
else {
Expand All @@ -2017,7 +2021,7 @@ var $node = new Proxy({ require }, {
return target.require(name);
}
catch (error) {
if (error.code === 'ERR_REQUIRE_ESM') {
if ($.$mol_fail_catch(error) && error.code === 'ERR_REQUIRE_ESM') {
const module = cache.get(name);
if (module)
return module;
Expand Down
8 changes: 6 additions & 2 deletions node.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1997,7 +1997,11 @@ var $node = new Proxy({ require }, {
try {
$$.$mol_exec('.', 'npm', 'install', '--omit=dev', '@types/' + name);
}
catch { }
catch (e) {
if ($$.$mol_fail_catch(e)) {
$$.$mol_fail_log(e);
}
}
break;
}
else {
Expand All @@ -2008,7 +2012,7 @@ var $node = new Proxy({ require }, {
return target.require(name);
}
catch (error) {
if (error.code === 'ERR_REQUIRE_ESM') {
if ($.$mol_fail_catch(error) && error.code === 'ERR_REQUIRE_ESM') {
const module = cache.get(name);
if (module)
return module;
Expand Down
2 changes: 1 addition & 1 deletion node.test.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit be68c10

Please sign in to comment.