From 4aad23356bf8524829115926d311160a5961b80c Mon Sep 17 00:00:00 2001 From: Pine Date: Mon, 29 Oct 2018 16:51:17 -0700 Subject: [PATCH] Updated Extension API process (markdown) --- Extension-API-process.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Extension-API-process.md b/Extension-API-process.md index c1f3914..c573635 100644 --- a/Extension-API-process.md +++ b/Extension-API-process.md @@ -8,7 +8,7 @@ About Proposed API We work with API proposals on which we iterate a few times before making stable API. Those proposals can be tested by extension authors. The proposed API is defined in [`vscode.proposed.d.ts`](https://github.com/Microsoft/vscode/blob/master/src/vs/vscode.proposed.d.ts). This is what you have to do to try out a proposed API: * You must use [Insiders](https://code.visualstudio.com/insiders/) because proposed APIs change frequently. -* You must have this line in the package.json file of your extension: `"enableProposedApi": true.` +* You must have this line in the package.json file of your extension: `"enableProposedApi": true`. * Copy the latest version of the [`vscode.proposed.d.ts`](https://github.com/Microsoft/vscode/blob/master/src/vs/vscode.proposed.d.ts)-file into your project. Note that you cannot publish an extension that uses a proposed API. We may likely make breaking changes in the next release and we never want to break existing extensions.