Skip to content

Commit

Permalink
Fix some dependencies that were incorrectly listed as devDependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
allevato committed Nov 28, 2018
1 parent e50bd09 commit 48fe330
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 42 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Change Log

## Version 0.0.2 (November 28, 2018)
* Fix an issue where runtime dependencies were listed as development dependencies.

## Version 0.0.1 (November 28, 2018)
* Initial release.
52 changes: 16 additions & 36 deletions package-lock.json

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

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-bazel",
"displayName": "vscode-bazel",
"description": "Bazel BUILD integration",
"version": "0.0.1",
"version": "0.0.2",
"publisher": "BazelBuild",
"license": "Apache-2.0",
"repository": {
Expand Down Expand Up @@ -173,14 +173,14 @@
},
"devDependencies": {
"@types/node": "^6.0.40",
"@types/xml2js": "^0.4.3",
"protobufjs": "^6.8.0",
"typescript": "^3.0.0",
"vscode": "^1.0.0",
"xml2js": "^0.4.19"
"vscode": "^1.0.0"
},
"dependencies": {
"@types/xml2js": "^0.4.3",
"vscode-debugadapter": "^1.27.0",
"vscode-debugprotocol": "^1.27.0"
"vscode-debugprotocol": "^1.27.0",
"protobufjs": "^6.8.0",
"xml2js": "^0.4.19"
}
}

0 comments on commit 48fe330

Please sign in to comment.