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
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ pluginRepositoryUrl = https://github.com/unit-mesh/auto-dev
pluginVersion = 2.4.6

# MPP Unified Version (mpp-core, mpp-ui, mpp-server)
mppVersion = 0.3.3
mppVersion = 0.3.4

# Supported IDEs: idea, pycharm
baseIDE=idea
Expand Down
2 changes: 1 addition & 1 deletion mpp-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@autodev/cli",
"version": "0.3.3",
"version": "0.3.4",
"description": "AutoDev CLI - Terminal UI for AI-powered development assistant",
"type": "module",
"bin": {
Expand Down
82 changes: 82 additions & 0 deletions mpp-ui/package.json.backup
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
{
"name": "@autodev/cli",
"version": "0.3.4",
"description": "AutoDev CLI - Terminal UI for AI-powered development assistant",
"type": "module",
"bin": {
"autodev": "./dist/jsMain/typescript/index.js"
},
"scripts": {
"build:kotlin": "cd .. && ./gradlew :mpp-core:assembleJsPackage",
"build:kotlin-deps": "cd ../mpp-core/build/packages/js && npm install --ignore-scripts",
"build:ts": "cd .. && ./gradlew :mpp-ui:compileKotlinJs && cd mpp-ui && tsc && chmod +x dist/jsMain/typescript/index.js",
"build": "npm run build:kotlin && npm run build:kotlin-deps && npm run build:ts",
"dev": "tsc --watch",
"start": "node dist/jsMain/typescript/index.js",
"code": "node dist/jsMain/typescript/index.js code",
"test": "vitest run",
"test:unit": "vitest run src/jsMain/typescript/**/*.test.ts",
"test:git": "npm run build:kotlin && node ../docs/test-scripts/test-git-nodejs.js",
"test:cli": "node test-cli-completion.js",
"test:all": "npm test && npm run test:completion && npm run test:cli",
"test:ci": "npm run build && npm run test:integration",
"test:framework": "node src/test/framework/validate-structure.cjs",
"test:integration-v2": "npm run build:ts && npm test src/test/integration-v2 -- --reporter=verbose",
"test:json-scenarios": "npm run build:ts && npm test src/test/integration-v2/json-scenarios.test.ts -- --reporter=verbose",
"analyze-test-results": "node scripts/analyze-test-results.cjs",
"generate:scenario:interactive": "node scripts/generate-test-scenario.js --interactive",
"validate:scenarios": "node scripts/validate-scenarios.js",
"clean": "rm -rf dist build",
"icon:convert": "bash scripts/convert-icon.sh && python3 scripts/convert-icon-windows.py",
"prepublish:local": "npm run build",
"publish:local": "node scripts/publish-local.js",
"prepublish:remote": "npm run build",
"publish:remote": "node scripts/publish-remote.js",
"postinstall": "node scripts/check-mpp-core.js || echo 'Warning: mpp-core not found, run npm run build:kotlin first'"
},
"packageManager": "pnpm@10.20.0",
"keywords": [
"ai",
"cli",
"terminal",
"coding-assistant",
"autodev",
"tui"
],
"author": "AutoDev Team",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@autodev/mpp-core": "file:../mpp-core/build/packages/js",
"@js-joda/core": "^5.6.5",
"@modelcontextprotocol/sdk": "^1.0.4",
"@unit-mesh/treesitter-artifacts": "^1.7.7",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"diff": "^7.0.0",
"dotenv": "^16.4.5",
"highlight.js": "^11.11.1",
"ink": "^5.0.1",
"ink-select-input": "^6.0.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"node-fetch": "^3.3.2",
"react": "^18.3.1",
"web-tree-sitter": "^0.22.2",
"yaml": "^2.6.1"
},
"devDependencies": {
"@types/diff": "^6.0.0",
"@types/node": "^20.11.24",
"@types/react": "^18.3.12",
"ink-testing-library": "^4.0.0",
"typescript": "^5.3.3",
"vitest": "^2.1.8"
},
"files": [
"dist/",
"README.md"
]
}
32 changes: 32 additions & 0 deletions mpp-vscode/.vscodeignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# VSCode extension ignore file
# Exclude source files and build artifacts not needed in the packaged extension

# Source files
src/
webview/src/
webview/node_modules/

# Build artifacts
*.map
tsconfig.json
.eslintrc.json

# Development files
.vscode/
node_modules/
.gitignore
.git/

# Test files
**/__tests__/**
**/*.test.*
**/*.spec.*

# Documentation
README.md
CHANGELOG.md

# Keep dist and wasm folders
!dist/
!wasm/

Loading
Loading