jira-sprinter 2.1.0 → 2.1.1
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/main.js +2 -1
- package/package.json +1 -1
- package/src/cli.ts +1 -1
- package/src/main.ts +1 -0
package/dist/main.js
CHANGED
|
@@ -47989,7 +47989,7 @@ var issueStatusSchema = external_exports.union([
|
|
|
47989
47989
|
// src/cli.ts
|
|
47990
47990
|
function cli() {
|
|
47991
47991
|
const program2 = new Command();
|
|
47992
|
-
program2.name("jira-sprinter").description("\u{1F3C3} Small CLI tool to manage sprints in JIRA Board").version("2.1.
|
|
47992
|
+
program2.name("jira-sprinter").description("\u{1F3C3} Small CLI tool to manage sprints in JIRA Board").version("2.1.1");
|
|
47993
47993
|
program2.addCommand(
|
|
47994
47994
|
new Command("auto").description(
|
|
47995
47995
|
"Automatically manages split tasks (DEV and Preliminary Testing) based on ticket state and status"
|
|
@@ -48191,6 +48191,7 @@ var cli_default = runProgram;
|
|
|
48191
48191
|
|
|
48192
48192
|
// src/main.ts
|
|
48193
48193
|
import_dotenv.default.config({
|
|
48194
|
+
quiet: true,
|
|
48194
48195
|
path: [
|
|
48195
48196
|
`${import_path2.default.resolve(process.cwd(), ".env")}`,
|
|
48196
48197
|
`${import_path2.default.resolve(import_os2.default.homedir(), ".config", "jira-sprinter", ".env")}`,
|
package/package.json
CHANGED
package/src/cli.ts
CHANGED