We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
createRequire("../../package.json).homepage
HOMEPAGE
1 parent 14e1a74 commit e100d3cCopy full SHA for e100d3c
lib/definitions/errors.js
@@ -1,8 +1,11 @@
1
import { inspect } from "node:util";
2
+import { createRequire } from "node:module";
3
+const require = createRequire(import.meta.url);
4
5
import { isString } from "lodash-es";
6
-const HOMEPAGE = "https://github.com/semantic-release/github";
7
+const pkg = require("../../package.json");
8
+const HOMEPAGE = pkg.homepage;
9
10
const stringify = (object) =>
11
isString(object)
0 commit comments