Skip to content

Commit

Permalink
Fix missing jsonc-parser dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
grgar committed Mar 29, 2024
1 parent 8f9fe4f commit b840187
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 7 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
# Changelog
### v1.1.1

- Fix missing jsonc-parser dependency


- Fix Makefile shell syntax

### v1.1.0

- Add code lens for editing files from settings
Expand Down Expand Up @@ -67,3 +74,4 @@


- Initial commit

11 changes: 6 additions & 5 deletions package-lock.json

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

6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"description": "Apply dotfiles from settings",
"icon": "images/icon-small.png",
"version": "1.1.0",
"version": "1.1.1",
"license": "MIT",
"engines": {
"vscode": "^1.74.0"
Expand Down Expand Up @@ -71,6 +71,9 @@
"lint": "eslint src --ext ts",
"test": "vscode-test"
},
"dependencies": {
"jsonc-parser": "^3.2.1"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
Expand All @@ -80,7 +83,6 @@
"@vscode/test-cli": "^0.0.6",
"@vscode/test-electron": "^2.3.9",
"eslint": "^8.56.0",
"jsonc-parser": "^3.2.1",
"typescript": "^5.3.3"
}
}

0 comments on commit b840187

Please sign in to comment.