Skip to content

Commit

Permalink
fix: set minimum supported version to 1.60.0 to widely support all us…
Browse files Browse the repository at this point in the history
…ers across vscode and cursor

Fixes #2
  • Loading branch information
HarshKothari88 committed Jan 8, 2025
1 parent 976d8c8 commit 11a0082
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
"reset-layouts",
"parameter-matcher"
],
"version": "1.0.0",
"version": "1.0.1",
"engines": {
"vscode": "^1.96.0"
"vscode": "^1.60.0"
},
"categories": [
"Programming Languages",
Expand Down Expand Up @@ -156,15 +156,15 @@
}
},
"scripts": {
"vscode:prepublish": "pnpm run package",
"compile": "pnpm run check-types && pnpm run lint && node esbuild.js",
"vscode:prepublish": "npm run package",
"compile": "npm run check-types && npm run lint && node esbuild.js",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "pnpm run check-types && pnpm run lint && node esbuild.js --production",
"package": "npm run check-types && npm run lint && node esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "pnpm run compile-tests && pnpm run compile && pnpm run lint && pnpm run create-test-fixtures",
"pretest": "npm run compile-tests && npm run compile && npm run lint && npm run create-test-fixtures",
"check-types": "tsc --noEmit",
"lint": "eslint src",
"test": "node ./out/test/runTest.js",
Expand All @@ -174,7 +174,7 @@
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/vscode": "^1.96.0",
"@types/vscode": "^1.60.0",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"@vscode/test-cli": "^0.0.10",
Expand All @@ -191,4 +191,4 @@
"glob": "^11.0.0",
"path": "^0.12.7"
}
}
}

0 comments on commit 11a0082

Please sign in to comment.