emmet serverless

This commit is contained in:
Martin Aeschlimann
2020-07-09 17:23:06 +02:00
parent 33b51eb210
commit 9b1773e013
11 changed files with 162 additions and 96 deletions

View File

@@ -0,0 +1,11 @@
/*---------------------------------------------------------------------------------------------
* 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 { activateEmmetExtension } from '../emmetCommon';
export function activate(context: vscode.ExtensionContext) {
activateEmmetExtension(context);
}