headlamp 0.1.2 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -5073,7 +5073,11 @@ import * as LibReport from "istanbul-lib-report";
5073
5073
  import * as Reports from "istanbul-reports";
5074
5074
  var jestBin = "./node_modules/.bin/jest";
5075
5075
  var babelNodeBin = "./node_modules/.bin/babel-node";
5076
- var requireCjs = createRequire2(import.meta.url);
5076
+ var moduleSpecifierForRequire = (
5077
+ // @ts-ignore
5078
+ typeof __filename !== "undefined" ? __filename : import.meta.url
5079
+ );
5080
+ var requireCjs = createRequire2(moduleSpecifierForRequire);
5077
5081
  var registerSignalHandlersOnce = () => {
5078
5082
  let handled = false;
5079
5083
  const on = (sig) => {