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 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.0");
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jira-sprinter",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "Small CLI tool to manage sprints in JIRA Board",
5
5
  "main": "src/main.ts",
6
6
  "type": "commonjs",
package/src/cli.ts CHANGED
@@ -24,7 +24,7 @@ export function cli(): Command {
24
24
  program
25
25
  .name('jira-sprinter')
26
26
  .description('🏃 Small CLI tool to manage sprints in JIRA Board')
27
- .version('2.1.0');
27
+ .version('2.1.1');
28
28
 
29
29
  program.addCommand(
30
30
  new Command('auto')
package/src/main.ts CHANGED
@@ -8,6 +8,7 @@ import '@total-typescript/ts-reset';
8
8
  import runProgram from './cli';
9
9
 
10
10
  dotenv.config({
11
+ quiet: true,
11
12
  path: [
12
13
  `${path.resolve(process.cwd(), '.env')}`,
13
14
  `${path.resolve(os.homedir(), '.config', 'jira-sprinter', '.env')}`,