jira-daily-report 0.1.118 → 0.1.122
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 +100 -99
- package/dist/cli/index.js.map +3 -3
- package/dist/extension.js +28 -28
- package/dist/extension.js.map +3 -3
- package/package.json +16 -17
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.122",
|
|
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/blessed": "^0.1.19",
|
|
166
151
|
"@types/mocha": "^10.0.10",
|
|
@@ -187,5 +172,19 @@
|
|
|
187
172
|
},
|
|
188
173
|
"optionalDependencies": {
|
|
189
174
|
"clipboardy": "^4.0.0"
|
|
175
|
+
},
|
|
176
|
+
"scripts": {
|
|
177
|
+
"vscode:prepublish": "npm run package",
|
|
178
|
+
"compile": "npm run check-types && npm run lint && node esbuild.js",
|
|
179
|
+
"watch": "npm-run-all -p watch:*",
|
|
180
|
+
"watch:esbuild": "node esbuild.js --watch",
|
|
181
|
+
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
|
|
182
|
+
"package": "npm run check-types && npm run lint && node esbuild.js --production",
|
|
183
|
+
"compile-tests": "tsc -p . --outDir out",
|
|
184
|
+
"watch-tests": "tsc -p . -w --outDir out",
|
|
185
|
+
"pretest": "npm run compile-tests && npm run compile && npm run lint",
|
|
186
|
+
"check-types": "tsc --noEmit",
|
|
187
|
+
"lint": "eslint src",
|
|
188
|
+
"test": "vscode-test"
|
|
190
189
|
}
|
|
191
|
-
}
|
|
190
|
+
}
|