imdone-cli 0.2.0 → 0.2.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/README.md +1 -1
- package/dist/index.cjs +7 -1
- package/dist/index.cjs.map +7 -0
- package/dist/index.min.cjs +1 -1
- package/dist/index.min.cjs.map +2 -2
- package/package.json +7 -1
- package/.env +0 -8
- package/.imdone/actions/board.js +0 -18
- package/.imdone/actions/card.js +0 -6
- package/.imdone/config.yml +0 -80
- package/.imdone/properties/board.js +0 -116
- package/.imdone/properties/card.js +0 -12
- package/.imdone/style.css +0 -0
- package/.imdone/tags.yml +0 -8
- package/.imdone/templates/user_story.md +0 -21
- package/.imdoneignore +0 -3
package/README.md
CHANGED
@@ -4,7 +4,7 @@ Imdone CLI is a command-line tool that integrates with Jira to manage your tasks
|
|
4
4
|
This tool is designed to serve as a bridge between your local development environment and Jira, making it easier and more efficient to manage tasks without switching contexts.
|
5
5
|
|
6
6
|
## How it works
|
7
|
-

|
7
|
+

|
8
8
|
|
9
9
|
## Installation
|
10
10
|
|
package/dist/index.cjs
CHANGED
@@ -102767,7 +102767,7 @@ async function imdoneInit(projectPath, { name: name2, jiraUrl, jiraProjectKey, j
|
|
102767
102767
|
// package.json
|
102768
102768
|
var package_default = {
|
102769
102769
|
name: "imdone-cli",
|
102770
|
-
version: "0.2.
|
102770
|
+
version: "0.2.1",
|
102771
102771
|
author: "Jesse Piascik",
|
102772
102772
|
description: "An imdone cli that automates your jira updates with markdown files.",
|
102773
102773
|
license: "Proprietary",
|
@@ -102780,6 +102780,12 @@ var package_default = {
|
|
102780
102780
|
imdone: "dist/index.min.cjs",
|
102781
102781
|
"imdone-debug": "dist/index.cjs"
|
102782
102782
|
},
|
102783
|
+
files: [
|
102784
|
+
"dist",
|
102785
|
+
"docs",
|
102786
|
+
"LICENSE",
|
102787
|
+
"README.md"
|
102788
|
+
],
|
102783
102789
|
scripts: {
|
102784
102790
|
prepublishOnly: "npm --prefix ../ install && npm --prefix ../ run build && npm i && npm test && npm run build",
|
102785
102791
|
link: "npm link ../../imdone-core-2 ../../imdone-api",
|