File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 30
30
"description" : " Default options to pass to piplite.install" ,
31
31
"default" : {},
32
32
"properties" : {
33
- "indexUrls " : {
33
+ "index_urls " : {
34
34
"type" : " array" ,
35
35
"items" : {
36
36
"type" : " string" ,
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ const kernel: JupyterLiteServerPlugin<void> = {
61
61
const pipliteInstallDefaultOptions = config . pipliteInstallDefaultOptions || { } ;
62
62
63
63
// Parse any configured index URLs
64
- const indexUrls = pipliteInstallDefaultOptions . indexUrls || [ ] ;
64
+ const index_urls = pipliteInstallDefaultOptions . index_urls || [ ] ;
65
65
66
66
for ( const [ key , value ] of Object . entries ( loadPyodideOptions ) ) {
67
67
if ( key . endsWith ( 'URL' ) && typeof value === 'string' ) {
@@ -104,7 +104,7 @@ const kernel: JupyterLiteServerPlugin<void> = {
104
104
loadPyodideOptions,
105
105
contentsManager,
106
106
pipliteInstallDefaultOptions : {
107
- indexUrls ,
107
+ index_urls ,
108
108
...pipliteInstallDefaultOptions ,
109
109
} ,
110
110
} ) ;
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ export namespace IPyodideWorkerKernel {
58
58
/**
59
59
* Base URLs of extra indices to use
60
60
*/
61
- indexUrls ?: string [ ] ;
61
+ index_urls ?: string [ ] ;
62
62
63
63
/**
64
64
* Any additional piplite install options
You can’t perform that action at this time.
0 commit comments