Skip to content

Commit

Permalink
chore: downgrade required VS Code version
Browse files Browse the repository at this point in the history
  • Loading branch information
kravetsone committed Jun 23, 2024
1 parent b4eb3e4 commit 36e0c1a
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 68 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## [0.0.2]

- downgrade required version
- Add simple test
- Use `node:path` to handle basename/dirname

Expand Down
Binary file modified bun.lockb
Binary file not shown.
136 changes: 68 additions & 68 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,70 +1,70 @@
{
"name": "vscode-publint",
"type": "commonjs",
"displayName": "publint",
"publisher": "kravets",
"author": {
"name": "kravets"
},
"description": "publint for VS Code",
"version": "0.0.2",
"engines": {
"vscode": "^1.89.0"
},
"icon": "./icon.png",
"bugs": {
"url": "https://github.com/kravetsone/vscode-publint/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/kravetsone/vscode-publint.git"
},
"homepage": "https://github.com/kravetsone/vscode-publint/blob/main/README.md",
"categories": [
"Linters"
],
"activationEvents": [
"onLanguage:json"
],
"main": "./dist/extension.js",
"scripts": {
"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": "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": "npm run compile-tests && npm run compile && npm run lint",
"check-types": "tsc --noEmit",
"lint": "bunx @biomejs/biome check --apply ./src",
"test": "vscode-test",
"deploy": "vsce publish"
},
"devDependencies": {
"@biomejs/biome": "^1.8.2",
"@types/bun": "^1.1.5",
"@types/mocha": "^10.0.7",
"@types/node": "^18.19.39",
"@types/vscode": "^1.90.0",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@vscode/test-cli": "^0.0.9",
"@vscode/test-electron": "^2.4.0",
"@vscode/vsce": "^2.29.0",
"esbuild": "^0.21.5",
"eslint": "^8.57.0",
"npm-run-all": "^4.1.5",
"typescript": "^5.5.2"
},
"dependencies": {
"jsonc-parser": "^3.2.1",
"publint": "^0.2.8"
},
"license": "SEE LICENSE IN LICENSE",
"files": [
"dist"
]
"name": "vscode-publint",
"type": "commonjs",
"displayName": "publint",
"publisher": "kravets",
"author": {
"name": "kravets"
},
"description": "publint for VS Code",
"version": "0.0.2",
"engines": {
"vscode": "^1.10.0"
},
"icon": "./icon.png",
"bugs": {
"url": "https://github.com/kravetsone/vscode-publint/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/kravetsone/vscode-publint.git"
},
"homepage": "https://github.com/kravetsone/vscode-publint/blob/main/README.md",
"categories": [
"Linters"
],
"activationEvents": [
"onLanguage:json"
],
"main": "./dist/extension.js",
"scripts": {
"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": "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": "npm run compile-tests && npm run compile && npm run lint",
"check-types": "tsc --noEmit",
"lint": "bunx @biomejs/biome check --apply ./src",
"test": "vscode-test",
"deploy": "vsce publish"
},
"devDependencies": {
"@biomejs/biome": "^1.8.2",
"@types/bun": "^1.1.5",
"@types/mocha": "^10.0.7",
"@types/node": "^18.19.39",
"@types/vscode": "^1.10.0",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@vscode/test-cli": "^0.0.9",
"@vscode/test-electron": "^2.4.0",
"@vscode/vsce": "^2.29.0",
"esbuild": "^0.21.5",
"eslint": "^8.57.0",
"npm-run-all": "^4.1.5",
"typescript": "^5.5.2"
},
"dependencies": {
"jsonc-parser": "^3.2.1",
"publint": "^0.2.8"
},
"license": "SEE LICENSE IN LICENSE",
"files": [
"dist"
]
}

0 comments on commit 36e0c1a

Please sign in to comment.