@ondrejbelza/semantic-release-jira 1.1.0 → 1.3.0
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/README.md +2 -1
- package/dist/types.d.ts +1 -0
- package/dist/verify_condition.js +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/types.d.ts
CHANGED
package/dist/verify_condition.js
CHANGED
|
@@ -13,6 +13,7 @@ const jira_client_1 = require("./jira-client");
|
|
|
13
13
|
async function verifyConditions(pluginConfig, context) {
|
|
14
14
|
const { logger, env } = context;
|
|
15
15
|
logger.log("Checking conditions for my custom plugin...");
|
|
16
|
+
logger.log("jira host configure to:" + pluginConfig.jiraHost);
|
|
16
17
|
if ((pluginConfig.jiraHost = "")) {
|
|
17
18
|
throw new error_1.default("jira host configuration variable is missing.");
|
|
18
19
|
}
|
|
@@ -26,5 +27,5 @@ async function verifyConditions(pluginConfig, context) {
|
|
|
26
27
|
const p = await c.projects.getProject({
|
|
27
28
|
projectIdOrKey: pluginConfig.project,
|
|
28
29
|
});
|
|
29
|
-
|
|
30
|
+
logger.log("project was found and will be used:" + p.id);
|
|
30
31
|
}
|
package/package.json
CHANGED