From 57fa0d1873a2613b984eb693212c0eb090bbe9f6 Mon Sep 17 00:00:00 2001 From: Alamion Date: Thu, 25 Jun 2026 18:11:01 +0300 Subject: [PATCH] fixes: - node dependencies fix --- .github/workflows/release.yml | 4 ++-- .gitignore | 3 +++ manifest.json | 2 +- package.json | 4 ++-- src/commands/index.ts | 1 + src/modals/index.ts | 1 + yarn.lock | 15 +++++++++++---- 7 files changed, 21 insertions(+), 9 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index de65537..27eae92 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,8 +19,8 @@ jobs: - name: Build plugin run: | - npm install - npm run build + yarn install --frozen-lockfile + yarn run build - name: Create release env: diff --git a/.gitignore b/.gitignore index af0d98d..e6286cd 100644 --- a/.gitignore +++ b/.gitignore @@ -34,3 +34,6 @@ src/localization/compiled # test configuration with credentials tests/test-config.local.json + +# test configuration with credentials +tests/test-config.local.json diff --git a/manifest.json b/manifest.json index 2d2a9ce..b85c71d 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "jira-sync", "name": "Jira Issue Manager", - "version": "1.7.0", + "version": "1.7.1", "minAppVersion": "1.10.1", "description": "Get Jira issues, create and update them. Issue status and worklog management.", "author": "Alamion", diff --git a/package.json b/package.json index d195825..1bb3ba4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-jira-sync", - "version": "1.7.0", + "version": "1.7.1", "packageManager": "yarn@1.22.22", "description": "This is a sample plugin for Obsidian (https://obsidian.md)", "main": "main.js", @@ -30,7 +30,7 @@ "@codemirror/view": "^6.38.1", "@eslint/js": "^10.0.1", "@types/lodash": "^4.17.16", - "@types/node": "^16.11.6", + "@types/node": "^20.0.0", "@typescript-eslint/eslint-plugin": "^8.59.1", "@typescript-eslint/parser": "^8.59.1", "builtin-modules": "3.3.0", diff --git a/src/commands/index.ts b/src/commands/index.ts index e4a414c..3d2598f 100644 --- a/src/commands/index.ts +++ b/src/commands/index.ts @@ -7,3 +7,4 @@ export * from './getIssue'; export * from './updateIssue'; export * from './updateStatus'; export * from './rebuildCache'; +export * from './rebuildCache'; diff --git a/src/modals/index.ts b/src/modals/index.ts index b5ad212..253c64c 100644 --- a/src/modals/index.ts +++ b/src/modals/index.ts @@ -6,3 +6,4 @@ export * from './IssueWorkLogModal'; export * from './ProjectModal'; export * from './JQLSearchModal'; export * from './ConfirmModal'; +export * from './ConfirmModal'; diff --git a/yarn.lock b/yarn.lock index 4e828c7..0909c76 100644 --- a/yarn.lock +++ b/yarn.lock @@ -569,10 +569,12 @@ resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.17.24.tgz#4ae334fc62c0e915ca8ed8e35dcc6d4eeb29215f" integrity sha512-gIW7lQLZbue7lRSWEFql49QJJWThrTFFeIMJdp3eH4tKoxm1OvEPg02rm4wCCSHS0cL3/Fizimb35b7k8atwsQ== -"@types/node@^16.11.6": - version "16.18.126" - resolved "https://registry.yarnpkg.com/@types/node/-/node-16.18.126.tgz#27875faa2926c0f475b39a8bb1e546c0176f8d4b" - integrity sha512-OTcgaiwfGFBKacvfwuHzzn1KLxH/er8mluiy8/uM3sGXHaRe73RrSIj01jow9t4kJEW633Ov+cOexXeiApTyAw== +"@types/node@^20.0.0": + version "20.19.43" + resolved "https://registry.npmmirror.com/@types/node/-/node-20.19.43.tgz#fcecf580ba42a0db55cf404c372c97973c376c97" + integrity sha512-6oYBAi5ikg4Pl+kGsoYtawUMBT2zZMCvPNF7pVLnHZfd1zf38DRiWn/gT01RYCdUqkv7Fhr+C9ot4/tb+2sVvA== + dependencies: + undici-types "~6.21.0" "@types/tern@*": version "0.23.9" @@ -1728,6 +1730,11 @@ typescript@^6.0.3: resolved "https://registry.yarnpkg.com/typescript/-/typescript-6.0.3.tgz#90251dc007916e972786cb94d74d15b185577d21" integrity sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw== +undici-types@~6.21.0: + version "6.21.0" + resolved "https://registry.npmmirror.com/undici-types/-/undici-types-6.21.0.tgz#691d00af3909be93a7faa13be61b3a5b50ef12cb" + integrity sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ== + undici@^7.25.0: version "7.28.0" resolved "https://registry.npmmirror.com/undici/-/undici-7.28.0.tgz#97d64564198b285bc281f0e8e29597e3d11fe7ec"