Compare commits

...

2 Commits

Author SHA1 Message Date
Derrick Hammer 2c3517d92a
*Update dist 2023-01-01 13:13:09 -05:00
Derrick Hammer 414509364b
*Missing return 2023-01-01 13:12:40 -05:00
2 changed files with 2 additions and 2 deletions

2
dist/index.js vendored
View File

@ -31,7 +31,7 @@ function loadNativeModuleTemp (module, data) {
process.pkg = undefined;
}
loady(module, loadPath);
return loady(module, loadPath);
}`;
function bundleNativeModulesPlugin() {
return {

View File

@ -28,7 +28,7 @@ function loadNativeModuleTemp (module, data) {
process.pkg = undefined;
}
loady(module, loadPath);
return loady(module, loadPath);
}`;
type Edit = [number, number];