forked from golang/vscode-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR allows the extension to be bundled. Fixes golang#53 Change-Id: I0b9ac399c485f04fd7ddae885c277093f9931e34 GitHub-Last-Rev: c77c458 GitHub-Pull-Request: golang#286 Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/241041 Reviewed-by: Hyang-Ah Hana Kim <[email protected]>
- Loading branch information
Showing
11 changed files
with
3,523 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
out | ||
node_modules | ||
.vscode-test | ||
out/ | ||
dist/ | ||
node_modules/ | ||
.vscode-test/ | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,19 @@ | ||
src/**/* | ||
test/ | ||
third_party/ | ||
typings/**/* | ||
.vscode/**/* | ||
typings/ | ||
.vscode/ | ||
tsconfig.json | ||
.gitignore | ||
node_modules/fs-extra | ||
**/*.map | ||
**/tslint.json | ||
build/**/* | ||
build/ | ||
docs/ | ||
*.md.nightly | ||
.github/**/* | ||
.prettierrc.json | ||
out/test/** | ||
.vscode-test/** | ||
SECURITY.md | ||
node_modules | ||
out/ | ||
src/ | ||
webpack.config.js |
Oops, something went wrong.