diff --git a/.husky/pre-commit b/.husky/pre-commit index 7ad505c..f4dd44d 100644 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -1,4 +1,2 @@ -#!/usr/bin/env sh -. "$(dirname -- "$0")/_/husky.sh" npm --no-git-tag-version version patch && git add . diff --git a/.vscodeignore b/.vscodeignore index b5722ba..3570569 100644 --- a/.vscodeignore +++ b/.vscodeignore @@ -5,6 +5,7 @@ src/** esbuild.js .gitignore .yarnrc +!.out vsc-extension-quickstart.md **/tsconfig.json **/.eslintrc.json diff --git a/CHANGELOG.md b/CHANGELOG.md index 90d3d9d..7f4b6b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## [v0.2.33] +## [v0.3.1] ### New Feature diff --git a/package.json b/package.json index e9afd69..6d05e90 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "jenkins-log-reader", "displayName": "jenkins-log-reader", "description": "read jenkins log, analyse with local AI.", - "version": "0.2.33", + "version": "0.3.1", "engines": { "vscode": "^1.91.0" }, @@ -151,7 +151,7 @@ "esbuild-plugin-copy": "^2.0.1", "eslint": "^8.57.0", "glob": "^11.0.0", - "husky": "^9.0.11", + "husky": "^9.1.1", "normalize.css": "^8.0.1", "npm-run-all": "^4.1.5", "postcss": "^8.4.39", diff --git a/src/panels/JenkinsPanel.ts b/src/panels/JenkinsPanel.ts index b0f01d8..bdf3f0b 100644 --- a/src/panels/JenkinsPanel.ts +++ b/src/panels/JenkinsPanel.ts @@ -43,7 +43,7 @@ export class JenkinsPanel { if (JenkinsPanel.currentPanel) { JenkinsPanel.currentPanel._panel.reveal(ViewColumn.One); } else { - const panel = window.createWebviewPanel("webView", "Jenkins Log Analysis", ViewColumn.One, { + const panel = window.createWebviewPanel("webview", "Jenkins Log Analysis", ViewColumn.One, { enableScripts: true, localResourceRoots: [Uri.joinPath(extensionUri, "out")], }); @@ -66,7 +66,7 @@ export class JenkinsPanel { -