Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Manage multi workspace folder and JS refacto #8

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.ts -crlf
*.json -crlf
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

out
node_modules
.vscode-test/
*.vsix
documentation
12 changes: 6 additions & 6 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Place your settings in this file to overwrite default and user settings.
{
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.detectIndentation": false
}
// Place your settings in this file to overwrite default and user settings.
{
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.detectIndentation": false
}
8 changes: 7 additions & 1 deletion .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
.vscode/**
.vscode-test/**
test/**
out/test/**
src/**
documentation/**
**/*.map
.gitignore
jsconfig.json
.eslintrc.json
jsconfig.json
tsconfig.json

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

### Version 0.0.8: IN PROGRESS

- made bazel executable path configurable (bazel.executablePath)
- allow to manage multi folder workspace
- allow to create cpp project from a subdirectory of a bazel project
- follow TypeScript guidelines https://github.com/Microsoft/TypeScript/wiki/Coding-guidelines


### Version 0.0.7: August 2, 2018

- made command buttons in status bar optional
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ npm install
Then you can run it in the developer mode.

**Thank you goes out to the following contributors for pushing the project forward:**
- [zaucy](https://github.com/zaucy)
- [zaucy](https://github.com/zaucy)
Loading