This repository was archived by the owner on Apr 13, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +0
-26
lines changed Expand file tree Collapse file tree 5 files changed +0
-26
lines changed Original file line number Diff line number Diff line change @@ -21,12 +21,10 @@ coverage
21
21
22
22
# Dashboard bundle config
23
23
nodecg-io-core /dashboard /dist
24
- ! nodecg-io-core /dashboard /webpack.config.js
25
24
! nodecg-io-core /dashboard /esbuild.config.js
26
25
27
26
# Debug service bundle config
28
27
services /nodecg-io-debug /dashboard /dist
29
- ! services /nodecg-io-debug /webpack.config.js
30
28
! services /nodecg-io-debug /esbuild.config.js
31
29
32
30
# Editor configuration
Original file line number Diff line number Diff line change @@ -13,9 +13,6 @@ const prod = process.env.NODE_ENV === "production";
13
13
14
14
const entryPoints = [
15
15
"monaco-editor/esm/vs/language/json/json.worker.js" ,
16
- "monaco-editor/esm/vs/language/css/css.worker.js" ,
17
- "monaco-editor/esm/vs/language/html/html.worker.js" ,
18
- "monaco-editor/esm/vs/language/typescript/ts.worker.js" ,
19
16
"monaco-editor/esm/vs/editor/editor.worker.js" ,
20
17
"main.ts" ,
21
18
] ;
Original file line number Diff line number Diff line change @@ -48,15 +48,6 @@ interface MonacoEnvironment extends Window {
48
48
if ( label === "json" ) {
49
49
return "./dist/json.worker.bundle.js" ;
50
50
}
51
- if ( label === "css" || label === "scss" || label === "less" ) {
52
- return "./dist/css.worker.bundle.js" ;
53
- }
54
- if ( label === "html" || label === "handlebars" || label === "razor" ) {
55
- return "./dist/html.worker.bundle.js" ;
56
- }
57
- if ( label === "typescript" || label === "javascript" ) {
58
- return "./dist/ts.worker.bundle.js" ;
59
- }
60
51
return "./dist/editor.worker.bundle.js" ;
61
52
} ,
62
53
} ;
Original file line number Diff line number Diff line change @@ -85,15 +85,6 @@ interface MonacoEnvironment extends Window {
85
85
if ( label === "json" ) {
86
86
return "./dist/json.worker.bundle.js" ;
87
87
}
88
- if ( label === "css" || label === "scss" || label === "less" ) {
89
- return "./dist/css.worker.bundle.js" ;
90
- }
91
- if ( label === "html" || label === "handlebars" || label === "razor" ) {
92
- return "./dist/html.worker.bundle.js" ;
93
- }
94
- if ( label === "typescript" || label === "javascript" ) {
95
- return "./dist/ts.worker.bundle.js" ;
96
- }
97
88
return "./dist/editor.worker.bundle.js" ;
98
89
} ,
99
90
} ;
Original file line number Diff line number Diff line change @@ -13,9 +13,6 @@ const prod = process.env.NODE_ENV === "production";
13
13
14
14
const entryPoints = [
15
15
"monaco-editor/esm/vs/language/json/json.worker.js" ,
16
- "monaco-editor/esm/vs/language/css/css.worker.js" ,
17
- "monaco-editor/esm/vs/language/html/html.worker.js" ,
18
- "monaco-editor/esm/vs/language/typescript/ts.worker.js" ,
19
16
"monaco-editor/esm/vs/editor/editor.worker.js" ,
20
17
"dashboard/debug-helper.ts" ,
21
18
] ;
You can’t perform that action at this time.
0 commit comments