From cd81d6769508cbd940cad3a03e491ca128f4213c Mon Sep 17 00:00:00 2001 From: Juergen Kunz Date: Tue, 30 Dec 2025 16:22:46 +0000 Subject: [PATCH] fix(build): bump @webcontainer/api and enable skipLibCheck to avoid type-check conflicts --- changelog.md | 7 +++++++ package.json | 2 +- pnpm-lock.yaml | 9 +++++++-- ts_web/00_commitinfo_data.ts | 2 +- tsconfig.json | 3 ++- 5 files changed, 18 insertions(+), 5 deletions(-) diff --git a/changelog.md b/changelog.md index de0bbeb..b01bc49 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,12 @@ # Changelog +## 2025-12-30 - 3.14.1 - fix(build) +bump @webcontainer/api and enable skipLibCheck to avoid type-check conflicts + +- Updated @webcontainer/api from 1.2.0 to 1.6.1 +- Added "skipLibCheck": true to tsconfig.json compilerOptions to suppress external library type errors +- No breaking changes expected; this is a build/dev fix + ## 2025-12-30 - 3.14.0 - feat(editor) add modal prompts for file/folder creation, improve Monaco editor reactivity and add TypeScript IntelliSense support diff --git a/package.json b/package.json index a960e3a..1ebdace 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,7 @@ "@tiptap/extension-underline": "^2.23.0", "@tiptap/starter-kit": "^2.23.0", "@tsclass/tsclass": "^9.3.0", - "@webcontainer/api": "1.2.0", + "@webcontainer/api": "1.6.1", "apexcharts": "^5.3.6", "highlight.js": "11.11.1", "ibantools": "^4.5.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 5431f85..997327b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -57,8 +57,8 @@ importers: specifier: ^9.3.0 version: 9.3.0 '@webcontainer/api': - specifier: 1.2.0 - version: 1.2.0 + specifier: 1.6.1 + version: 1.6.1 apexcharts: specifier: ^5.3.6 version: 5.3.6 @@ -1760,6 +1760,9 @@ packages: '@webcontainer/api@1.2.0': resolution: {integrity: sha512-tzoKBd4lLdhHy5GHFpUkl+ndoSba8JqmB7x0ZQFnWfjbcbQOvKQfxA8MEMUYhgqjWHnbrWdAfnBEHz5f5lYG5A==} + '@webcontainer/api@1.6.1': + resolution: {integrity: sha512-2RS2KiIw32BY1Icf6M1DvqSmcon9XICZCDgS29QJb2NmF12ZY2V5Ia+949hMKB3Wno+P/Y8W+sPP59PZeXSELg==} + '@yr/monotone-cubic-spline@1.0.3': resolution: {integrity: sha512-FQXkOta0XBSUPHndIKON2Y9JeQz5ZeMqLYZVVK93FliNBFm7LNMIZmY6FrMEB9XPcDbE2bekMbZD6kzDkxwYjA==} @@ -6800,6 +6803,8 @@ snapshots: '@webcontainer/api@1.2.0': {} + '@webcontainer/api@1.6.1': {} + '@yr/monotone-cubic-spline@1.0.3': {} accepts@1.3.8: diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index bf53f96..9a0e48c 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@design.estate/dees-catalog', - version: '3.14.0', + version: '3.14.1', description: 'A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.' } diff --git a/tsconfig.json b/tsconfig.json index 70d3f34..760684a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,7 +4,8 @@ "module": "NodeNext", "moduleResolution": "NodeNext", "esModuleInterop": true, - "verbatimModuleSyntax": true + "verbatimModuleSyntax": true, + "skipLibCheck": true }, "exclude": [ "dist_*/**/*.d.ts"