Skip to content
This repository was archived by the owner on Oct 11, 2020. It is now read-only.

Commit 18eafd4

Browse files
Rusty KeyManasJayanth
andcommitted
Add extension bundling (#22)
* add webpack config * cleanup ignore files * tweak watch script * remove more unused stuff * restore bundling of vscode-* pacakges * fix launch task * build in prod mode * actually point at bundle * webpack output.libraryTarget set to commonjs * Linux case sensitivity fix Co-authored-by: Manas <prometheansacrifice@gmail.com>
1 parent 996264b commit 18eafd4

File tree

10 files changed

+2232
-178
lines changed

10 files changed

+2232
-178
lines changed

.gitignore

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
1+
.bsb.lock
12
.DS_Store
2-
out
3-
node_modules
4-
client/server
3+
.merlin
54
.vscode-test
65
*.vsix
76
*~
8-
_downloads
9-
.merlin
10-
lib/
11-
.bsb.lock
127
_esy/
138
esy.lock/
9+
dist/
10+
lib/
11+
node_modules/

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"--extensionDevelopmentPath=${workspaceFolder}"
2222
],
2323
"outFiles": [
24-
"${workspaceFolder}/src/**/*.bs.js"
24+
"${workspaceFolder}/dist/extension.js"
2525
]
2626
}
2727
]

.vscodeignore

Lines changed: 20 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,22 @@
1-
.vscode/**
2-
**/*.ts
1+
__tests__/
2+
_esy/
3+
.vscode/
4+
esy.lock/
5+
fixtures/
6+
lib/
7+
node_modules/
8+
!node_modules/vscode-jsonrpc/**
9+
!node_modules/vscode-languageclient/**
10+
!node_modules/vscode-languageserver-protocol/**
11+
!node_modules/vscode-languageserver-types/**
12+
src/
13+
test/
14+
315
**/*.map
416
.gitignore
5-
**/tsconfig.json
6-
**/tsconfig.base.json
7-
contributing.md
8-
.travis.yml
9-
client/node_modules/**
10-
!client/node_modules/vscode-jsonrpc/**
11-
!client/node_modules/vscode-languageclient/**
12-
!client/node_modules/vscode-languageserver-protocol/**
13-
!client/node_modules/vscode-languageserver-types/**
17+
.merlin
18+
azure-pipelines.yaml
19+
bsconfig.json
20+
esy.json
21+
Makefile
22+
webpack.config.js

.yarnclean

Lines changed: 0 additions & 45 deletions
This file was deleted.

Makefile

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)