Skip to content

Commit

Permalink
webpack: bundle the extension
Browse files Browse the repository at this point in the history
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
OneOfOne authored and hyangah committed Jul 8, 2020
1 parent 1e0e061 commit 4d671d3
Show file tree
Hide file tree
Showing 11 changed files with 3,523 additions and 85 deletions.
7 changes: 4 additions & 3 deletions .gitignore
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
3 changes: 1 addition & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"version": "0.2.0",
"configurations": [

{
"name": "Launch Extension",
"type": "extensionHost",
Expand Down Expand Up @@ -114,4 +113,4 @@
]
}
]
}
}
13 changes: 7 additions & 6 deletions .vscodeignore
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
Loading

0 comments on commit 4d671d3

Please sign in to comment.