Rename serializer extension and set up build scripts

This commit is contained in:
Rob Lourens
2021-07-20 14:59:35 -07:00
parent 58cc6980d6
commit 5793ae026a
22 changed files with 1109 additions and 5543 deletions

View File

@@ -0,0 +1,13 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import * as vscode from 'vscode';
import { registerNotebookSerializer } from './serializer';
export function activate(context: vscode.ExtensionContext) {
registerNotebookSerializer(context);
}
export function deactivate() { }