imdone-cli 0.1.4 → 0.1.6
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/.env +6 -0
- package/README.md +3 -8
- package/dist/.env +6 -0
- package/dist/index.min.cjs +583 -0
- package/dist/{index.cjs.map → index.min.cjs.map} +4 -4
- package/package.json +8 -4
- package/dist/index.cjs +0 -102942
- package/src/adapters/__tests__/create-jwt.sh +0 -11
- package/src/adapters/__tests__/jwt-private.pem +0 -28
- package/src/adapters/__tests__/jwt-public.pem +0 -9
- package/src/adapters/__tests__/license.spec.js +0 -27
- package/src/adapters/env.js +0 -21
- package/src/adapters/git.js +0 -113
- package/src/adapters/imdone-config-template.js +0 -79
- package/src/adapters/imdone.js +0 -76
- package/src/adapters/license.js +0 -83
- package/src/bin.js +0 -164
- package/src/index.js +0 -3
- package/src/ui/prompt.js +0 -192
- package/src/usecases/__tests__/headless-pull-from-jira.spec.js +0 -60
- package/src/usecases/__tests__/test-project/.imdone/config.yml +0 -100
- package/src/usecases/headless-pull-from-jira.js +0 -58
- package/src/usecases/headless-push-to-jira.js +0 -42
- package/src/usecases/init.js +0 -27
package/.env
ADDED
package/README.md
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
# Imdone CLI
|
2
2
|
|
3
|
-
Imdone CLI is a command-line tool that
|
3
|
+
Imdone CLI is a command-line tool that integrates with Jira to manage your tasks and issues directly from markdown files and your terminal. It allows you to pull issues from Jira, update them, and push changes back to Jira seamlessly.
|
4
|
+
This tool is designed to enhance your productivity by providing a simple and efficient way to manage your tasks without leaving your editor or terminal.
|
4
5
|
|
5
6
|
## Installation
|
6
7
|
|
@@ -8,15 +9,9 @@ Imdone CLI is a command-line tool that enables seamless integration between Imdo
|
|
8
9
|
npm install -g imdone-cli
|
9
10
|
```
|
10
11
|
|
11
|
-
Or if you prefer to use it locally in a project:
|
12
|
-
|
13
|
-
```bash
|
14
|
-
npm install --save-dev imdone-cli
|
15
|
-
```
|
16
|
-
|
17
12
|
## Prerequisites
|
18
13
|
|
19
|
-
- Node.js
|
14
|
+
- Node.js v18 or higher
|
20
15
|
- A valid Imdone license
|
21
16
|
- Jira account with API access
|
22
17
|
|
package/dist/.env
ADDED