jira-daily-report 0.1.122 → 0.1.123

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/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.122",
5
+ "version": "0.1.123",
6
6
  "publisher": "thuanvo",
7
7
  "author": {
8
8
  "name": "Thuan Vo",
@@ -146,6 +146,21 @@
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
+ },
149
164
  "devDependencies": {
150
165
  "@types/blessed": "^0.1.19",
151
166
  "@types/mocha": "^10.0.10",
@@ -172,19 +187,5 @@
172
187
  },
173
188
  "optionalDependencies": {
174
189
  "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"
189
190
  }
190
- }
191
+ }