Skip to content

Commit

Permalink
Merge pull request #12 from adamvoss/noSubmodules
Browse files Browse the repository at this point in the history
Eliminate use of submodules
  • Loading branch information
adamvoss authored Aug 28, 2017
2 parents 788fc62 + fdd3ccd commit 6fcb474
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 13 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
out
node_modules
npm-debug.log
package-lock.json
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 0.0.8
- Update **vscode-json-languageservice** to the current latest version (2.0.14) by updating **vscode-yaml-languageservice**.
- **vscode-yaml-languageservice** dependency is now managed by `npm`. This makes development easier.

## 0.0.7
- Add support for multiple documents in a single file.

Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ This extension would not have been possible without numerous open source project
Contributions are welcome! To install dependencies and begin work, run:

```sh
git submodule update --init --recursive
npm install
```

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "yaml",
"displayName": "YAML",
"description": "YAML for Visual Studio Code",
"version": "0.0.7",
"version": "0.0.8",
"publisher": "adamvoss",
"license": "MIT",
"repository": {
Expand All @@ -28,7 +28,7 @@
"main": "./client/out/yamlMain",
"scripts": {
"compile": "tsc -p server/ && tsc -p client/",
"prepublish": "npm run update-vscode && cd server && ./npminstall.sh",
"prepublish": "npm run update-vscode && cd server && npm install",
"update-vscode": "node ./node_modules/vscode/bin/install",
"vscode:prepublish": "npm run compile"
},
Expand Down
5 changes: 0 additions & 5 deletions server/npminstall.sh

This file was deleted.

2 changes: 1 addition & 1 deletion server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"request-light": "^0.2.1",
"vscode-languageserver": "^3.1.0-alpha.1",
"vscode-nls": "^2.0.2",
"vscode-yaml-languageservice": "file:./vscode-yaml-languageservice"
"vscode-yaml-languageservice": "^0.1.0"
},
"devDependencies": {
"@types/node": "^6.0.51"
Expand Down
1 change: 0 additions & 1 deletion server/vscode-yaml-languageservice
Submodule vscode-yaml-languageservice deleted from 90a132

0 comments on commit 6fcb474

Please sign in to comment.