Skip to content

Commit

Permalink
fix: Make sure the server bundle does not include regexp-worker (#685)
Browse files Browse the repository at this point in the history
* dev: do not check output from the build process
* dev: Ensure the regexp-worker is not bundled.
* dev: Update client packages
* dev: minor refactoring
* Use main.ts to start up the server.
* dev: use vscode-languageserver/node explicitly.
  • Loading branch information
Jason3S authored Jan 28, 2021
1 parent 3b05ab8 commit a09d7df
Show file tree
Hide file tree
Showing 21 changed files with 332 additions and 8,331 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ module.exports = {
},
ignorePatterns: [
'**/*.d.ts',
'**/node_modules/**'
'**/node_modules/**',
'packages/client/server/**',
],
rules: {
// Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs
Expand Down
6 changes: 6 additions & 0 deletions cSpell.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@
"packages/client/resources/**",
"packages/client/samples/**",
"packages/client/server/**",
"**/packages/client/settingsViewer/**",
"**/packages/client/resources/**",
"**/packages/client/samples/**",
"**/packages/client/server/**",
"**/server.js",
"**/server/**/*.js",
"testFixtures"
],
"ignoreWords": [],
Expand Down
Loading

0 comments on commit a09d7df

Please sign in to comment.