eae5d8c807
These conflicts will be resolved in the following commits. We do it this way so that PR review is possible.
85 lines
2.1 KiB
JSON
85 lines
2.1 KiB
JSON
{
|
|
"name": "vscode-notebook-tests",
|
|
"description": "Notebook tests for VS Code",
|
|
"version": "0.0.1",
|
|
"publisher": "vscode",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"activationEvents": [
|
|
"*"
|
|
],
|
|
"main": "./out/notebookTestMain",
|
|
"enableProposedApi": true,
|
|
"engines": {
|
|
"vscode": "^1.25.0"
|
|
},
|
|
"scripts": {
|
|
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
|
|
"vscode:prepublish": "node ../../node_modules/gulp/bin/gulp.js --gulpfile ../../build/gulpfile.extensions.js compile-extension:vscode-notebook-tests ./tsconfig.json"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@types/node": "^12.19.9"
|
|
},
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "vscode-notebook-tests.createNewNotebook",
|
|
"title": "Create New Notebook"
|
|
},
|
|
{
|
|
"command": "vscode-notebook-tests.debugAction",
|
|
"title": "Debug Notebook Test Cell Action",
|
|
"icon": "$(debug)"
|
|
}
|
|
],
|
|
"notebookProvider": [
|
|
{
|
|
"viewType": "notebookCoreTest",
|
|
"displayName": "Notebook Core Test",
|
|
"selector": [
|
|
{
|
|
"filenamePattern": "*.vsctestnb",
|
|
"excludeFileNamePattern": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"viewType": "notebookSmokeTest",
|
|
"displayName": "Notebook Smoke Test",
|
|
"selector": [
|
|
{
|
|
"filenamePattern": "*.smoke-nb",
|
|
"excludeFileNamePattern": ""
|
|
}
|
|
]
|
|
}
|
|
],
|
|
"notebookOutputRenderer": [
|
|
{
|
|
"id": "notebookCoreTestRenderer",
|
|
"displayName": "Notebook Core Test Renderer",
|
|
"entrypoint": "./src/customRenderer.js",
|
|
"mimeTypes": [
|
|
"text/custom"
|
|
]
|
|
}
|
|
],
|
|
"menus": {
|
|
"notebook/cell/title": [
|
|
{
|
|
"command": "vscode-notebook-tests.debugAction",
|
|
"when": "notebookViewType == notebookSmokeTest",
|
|
"group": "inline@1"
|
|
}
|
|
]
|
|
},
|
|
"jsonValidation": [
|
|
{
|
|
"fileMatch": "vscode://vscode-notebook-cell-metadata/*",
|
|
"url": "vscode://schemas/notebook/cellmetadata"
|
|
}
|
|
]
|
|
}
|
|
}
|