mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
Update based on code reviews
This commit is contained in:
@ -260,6 +260,13 @@ const samples = [
|
||||
apis: [],
|
||||
contributions: ["notebookRenderer"]
|
||||
},
|
||||
{
|
||||
description: 'jupyter-server-provider-sample',
|
||||
path: 'jupyter-server-provider-sample',
|
||||
guide: null,
|
||||
apis: [],
|
||||
contributions: []
|
||||
},
|
||||
{ description: 'configuration-sample', excludeFromReadme: true, path: 'configuration-sample', guide: null, apis: [], contributions: [] },
|
||||
{ description: 'contentprovider-sample', excludeFromReadme: true, path: 'contentprovider-sample', guide: null, apis: [], contributions: [] },
|
||||
{ description: 'nodefs-provider-sample', excludeFromReadme: true, path: 'nodefs-provider-sample', guide: null, apis: [], contributions: [] },
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
# jupyter-servedr-provider-sample
|
||||
# Jupyter Server Provider Sample
|
||||
|
||||
This is a very simple extension sample demonstrating the use of the Jupyter Extension API allowing other extensions to contribute [Jupyter](https://jupyter.org/) Servers via the Kernel Picker for Jupyter notebooks:
|
||||
|
||||
|
||||
8
jupyter-server-provider-sample/package-lock.json
generated
8
jupyter-server-provider-sample/package-lock.json
generated
@ -12,7 +12,7 @@
|
||||
"@types/vscode": "^1.82.0",
|
||||
"@typescript-eslint/eslint-plugin": "^6.7.0",
|
||||
"@typescript-eslint/parser": "^6.7.0",
|
||||
"@vscode/jupyter-extension": "^0.2.1",
|
||||
"@vscode/jupyter-extension": "^1.0.0",
|
||||
"eslint": "^7.27.0",
|
||||
"typescript": "^5.2.2"
|
||||
},
|
||||
@ -454,9 +454,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@vscode/jupyter-extension": {
|
||||
"version": "0.2.1",
|
||||
"resolved": "https://registry.npmjs.org/@vscode/jupyter-extension/-/jupyter-extension-0.2.1.tgz",
|
||||
"integrity": "sha512-zc/lEvlHZUKDo3x3f4RfbdJPvejEyWX32UAYGjDCr9jgWwBY7yGLErABfm2npbd7+u+s75yu8dZ42hhMuq0xtw==",
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/@vscode/jupyter-extension/-/jupyter-extension-1.0.0.tgz",
|
||||
"integrity": "sha512-ZLZ2KMn30aKhBa0lJcxfpyvzTCg3sT23qb7D3BHHidHugI0hT2KlSOzDMROkXygxyoATol7eClGpTG/bjFttCw==",
|
||||
"dev": true
|
||||
},
|
||||
"node_modules/acorn": {
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "jupyter-server-provider-sample",
|
||||
"displayName": "notebook-serializer-sample",
|
||||
"displayName": "Jupyter Server Provider Sample",
|
||||
"description": "Jupyter Notebook Kernel Picker with custom servers using the Jupyter API sample",
|
||||
"publisher": "vscode-samples",
|
||||
"version": "0.0.1",
|
||||
@ -29,7 +29,7 @@
|
||||
"@types/vscode": "^1.82.0",
|
||||
"@typescript-eslint/eslint-plugin": "^6.7.0",
|
||||
"@typescript-eslint/parser": "^6.7.0",
|
||||
"@vscode/jupyter-extension": "^0.2.1",
|
||||
"@vscode/jupyter-extension": "^1.0.0",
|
||||
"eslint": "^7.27.0",
|
||||
"typescript": "^5.2.2"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user