@semantic-release/github 9.0.0-beta.1 → 9.0.0-beta.2
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/lib/add-channel.js +1 -1
- package/lib/fail.js +1 -1
- package/lib/publish.js +1 -1
- package/lib/success.js +1 -1
- package/lib/verify.js +1 -1
- package/package.json +1 -1
package/lib/add-channel.js
CHANGED
|
@@ -4,7 +4,7 @@ import { RELEASE_NAME } from "./definitions/constants.js";
|
|
|
4
4
|
import parseGithubUrl from "./parse-github-url.js";
|
|
5
5
|
import resolveConfig from "./resolve-config.js";
|
|
6
6
|
import isPrerelease from "./is-prerelease.js";
|
|
7
|
-
import { toOctokitOptions
|
|
7
|
+
import { toOctokitOptions } from "./octokit.js";
|
|
8
8
|
|
|
9
9
|
const debug = debugFactory("semantic-release:github");
|
|
10
10
|
|
package/lib/fail.js
CHANGED
|
@@ -4,7 +4,7 @@ import debugFactory from "debug";
|
|
|
4
4
|
import parseGithubUrl from "./parse-github-url.js";
|
|
5
5
|
import { ISSUE_ID } from "./definitions/constants.js";
|
|
6
6
|
import resolveConfig from "./resolve-config.js";
|
|
7
|
-
import { toOctokitOptions
|
|
7
|
+
import { toOctokitOptions } from "./octokit.js";
|
|
8
8
|
import findSRIssues from "./find-sr-issues.js";
|
|
9
9
|
import getFailComment from "./get-fail-comment.js";
|
|
10
10
|
|
package/lib/publish.js
CHANGED
|
@@ -9,7 +9,7 @@ import { RELEASE_NAME } from "./definitions/constants.js";
|
|
|
9
9
|
import parseGithubUrl from "./parse-github-url.js";
|
|
10
10
|
import globAssets from "./glob-assets.js";
|
|
11
11
|
import resolveConfig from "./resolve-config.js";
|
|
12
|
-
import { toOctokitOptions
|
|
12
|
+
import { toOctokitOptions } from "./octokit.js";
|
|
13
13
|
import isPrerelease from "./is-prerelease.js";
|
|
14
14
|
|
|
15
15
|
const debug = debugFactory("semantic-release:github");
|
package/lib/success.js
CHANGED
|
@@ -6,7 +6,7 @@ import debugFactory from "debug";
|
|
|
6
6
|
|
|
7
7
|
import parseGithubUrl from "./parse-github-url.js";
|
|
8
8
|
import resolveConfig from "./resolve-config.js";
|
|
9
|
-
import { toOctokitOptions
|
|
9
|
+
import { toOctokitOptions } from "./octokit.js";
|
|
10
10
|
import getSearchQueries from "./get-search-queries.js";
|
|
11
11
|
import getSuccessComment from "./get-success-comment.js";
|
|
12
12
|
import findSRIssues from "./find-sr-issues.js";
|
package/lib/verify.js
CHANGED
|
@@ -11,7 +11,7 @@ import AggregateError from "aggregate-error";
|
|
|
11
11
|
|
|
12
12
|
import parseGithubUrl from "./parse-github-url.js";
|
|
13
13
|
import resolveConfig from "./resolve-config.js";
|
|
14
|
-
import { toOctokitOptions
|
|
14
|
+
import { toOctokitOptions } from "./octokit.js";
|
|
15
15
|
import getError from "./get-error.js";
|
|
16
16
|
|
|
17
17
|
const isNonEmptyString = (value) => isString(value) && value.trim();
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@semantic-release/github",
|
|
3
3
|
"description": "semantic-release plugin to publish a GitHub release and comment on released Pull Requests/Issues",
|
|
4
|
-
"version": "9.0.0-beta.
|
|
4
|
+
"version": "9.0.0-beta.2",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "Pierre Vanduynslager (https://twitter.com/@pvdlg_)",
|
|
7
7
|
"ava": {
|