Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile.vrt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM mcr.microsoft.com/playwright:v1.60.0-jammy
FROM mcr.microsoft.com/playwright:v1.62.1-jammy

# Install git and build-essential for git-hosted dependencies
RUN apt-get update && apt-get install -y git build-essential && rm -rf /var/lib/apt/lists/*

# Enable corepack
RUN corepack enable && corepack prepare pnpm@10.33.0 --activate
RUN corepack enable && corepack prepare pnpm --activate

WORKDIR /app
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ services:
environment:
- NODE_ENV=test
- DOCKER=true
- COREPACK_ENABLE_DOWNLOAD_PROMPT=0
ipc: host
ports:
- "9323:9323"
Expand Down
33 changes: 13 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rich-markdown-diff",
"packageManager": "pnpm@10.33.0",
"packageManager": "pnpm@11.21.0",
"publisher": "phine-apps",
"displayName": "Rich Markdown Diff",
"description": "Professional visual Markdown diff with Math, Mermaid, and Git integration for better document reviews.",
Expand Down Expand Up @@ -349,32 +349,32 @@
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "1.60.0",
"@playwright/test": "1.62.1",
"@types/markdown-it": "^14.1.2",
"@types/mocha": "^10.0.10",
"@types/node": "^26.1.1",
"@types/node": "^26.1.2",
"@types/sanitize-html": "^2.16.1",
"@types/vscode": "1.80.0",
"@typescript-eslint/eslint-plugin": "^8.63.0",
"@typescript-eslint/parser": "^8.63.0",
"@typescript-eslint/eslint-plugin": "^8.66.0",
"@typescript-eslint/parser": "^8.66.0",
"@vscode/l10n-dev": "^0.0.35",
"@vscode/test-electron": "^3.1.0",
"@vscode/vsce": "^3.9.2",
"esbuild": "^0.28.1",
"eslint": "^10.7.0",
"eslint-plugin-jsdoc": "^63.0.13",
"eslint": "^10.8.0",
"eslint-plugin-jsdoc": "^63.3.3",
"glob": "^13.0.6",
"globals": "^17.7.0",
"mocha": "^11.7.6",
"ovsx": "^1.0.2",
"playwright": "1.60.0",
"globals": "^17.9.0",
"mocha": "^11.8.0",
"ovsx": "^1.1.0",
"playwright": "1.62.1",
"ts-node": "^10.9.2",
"typescript": "~6.0.3",
"typescript-eslint": "^8.63.0"
"typescript-eslint": "^8.66.0"
},
"dependencies": {
"@iktakahiro/markdown-it-katex": "^4.0.1",
"@marp-team/marp-core": "^4.3.1",
"@marp-team/marp-core": "^4.4.0",
"@vscode/l10n": "^0.0.18",
"gray-matter": "^4.0.3",
"highlight.js": "^11.11.1",
Expand All @@ -389,12 +389,5 @@
"markdown-it-sup": "^2.0.0",
"markdown-it-task-lists": "^2.1.1",
"sanitize-html": "^2.17.6"
},
"pnpm": {
"onlyBuiltDependencies": [
"@vscode/vsce-sign",
"esbuild",
"keytar"
]
}
}
Loading