jira-ai 0.3.14 → 0.3.15

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.
Files changed (2) hide show
  1. package/dist/cli.js +1 -1
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -23,7 +23,7 @@ import { CommandError } from './lib/errors.js';
23
23
  import { ui } from './lib/ui.js';
24
24
  import { validateOptions, CreateTaskSchema, AddCommentSchema, UpdateDescriptionSchema, RunJqlSchema, IssueKeySchema, ProjectKeySchema } from './lib/validation.js';
25
25
  // Load environment variables
26
- dotenv.config();
26
+ dotenv.config({ quiet: true });
27
27
  // Create CLI program
28
28
  const program = new Command();
29
29
  program
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jira-ai",
3
- "version": "0.3.14",
3
+ "version": "0.3.15",
4
4
  "description": "AI friendly Jira CLI to save context",
5
5
  "type": "module",
6
6
  "main": "dist/cli.js",