jira-daily-report 0.1.114 → 0.1.116
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/cli/index.js +87 -84
- package/dist/cli/index.js.map +3 -3
- package/dist/extension.js +42 -40
- package/dist/extension.js.map +1 -1
- package/package.json +18 -18
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "jira-daily-report",
|
|
3
3
|
"displayName": "jira-daily-report",
|
|
4
4
|
"description": "Generate Jira daily standup reports - VS Code extension and CLI tool",
|
|
5
|
-
"version": "0.1.
|
|
5
|
+
"version": "0.1.116",
|
|
6
6
|
"publisher": "thuanvo",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "Thuan Vo",
|
|
@@ -146,21 +146,6 @@
|
|
|
146
146
|
"README-vscode.md",
|
|
147
147
|
"LICENSE"
|
|
148
148
|
],
|
|
149
|
-
"scripts": {
|
|
150
|
-
"vscode:prepublish": "npm run package",
|
|
151
|
-
"prepublishOnly": "npm run package",
|
|
152
|
-
"compile": "npm run check-types && npm run lint && node esbuild.js",
|
|
153
|
-
"watch": "npm-run-all -p watch:*",
|
|
154
|
-
"watch:esbuild": "node esbuild.js --watch",
|
|
155
|
-
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
|
|
156
|
-
"package": "npm run check-types && npm run lint && node esbuild.js --production",
|
|
157
|
-
"compile-tests": "tsc -p . --outDir out",
|
|
158
|
-
"watch-tests": "tsc -p . -w --outDir out",
|
|
159
|
-
"pretest": "npm run compile-tests && npm run compile && npm run lint",
|
|
160
|
-
"check-types": "tsc --noEmit",
|
|
161
|
-
"lint": "eslint src",
|
|
162
|
-
"test": "vscode-test"
|
|
163
|
-
},
|
|
164
149
|
"devDependencies": {
|
|
165
150
|
"@types/mocha": "^10.0.10",
|
|
166
151
|
"@types/moment": "^2.13.0",
|
|
@@ -179,9 +164,24 @@
|
|
|
179
164
|
"axios": "^1.8.1",
|
|
180
165
|
"commander": "^12.1.0",
|
|
181
166
|
"moment": "^2.30.1",
|
|
182
|
-
"moment-timezone": "^0.5.48"
|
|
167
|
+
"moment-timezone": "^0.5.48",
|
|
168
|
+
"open": "^10.0.3"
|
|
183
169
|
},
|
|
184
170
|
"optionalDependencies": {
|
|
185
171
|
"clipboardy": "^4.0.0"
|
|
172
|
+
},
|
|
173
|
+
"scripts": {
|
|
174
|
+
"vscode:prepublish": "npm run package",
|
|
175
|
+
"compile": "npm run check-types && npm run lint && node esbuild.js",
|
|
176
|
+
"watch": "npm-run-all -p watch:*",
|
|
177
|
+
"watch:esbuild": "node esbuild.js --watch",
|
|
178
|
+
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
|
|
179
|
+
"package": "npm run check-types && npm run lint && node esbuild.js --production",
|
|
180
|
+
"compile-tests": "tsc -p . --outDir out",
|
|
181
|
+
"watch-tests": "tsc -p . -w --outDir out",
|
|
182
|
+
"pretest": "npm run compile-tests && npm run compile && npm run lint",
|
|
183
|
+
"check-types": "tsc --noEmit",
|
|
184
|
+
"lint": "eslint src",
|
|
185
|
+
"test": "vscode-test"
|
|
186
186
|
}
|
|
187
|
-
}
|
|
187
|
+
}
|