From f235a144c6a5bb68df9ce0b7dc7333fad29536ef Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Tue, 24 Apr 2018 18:44:54 +0200 Subject: [PATCH] prepare for publish --- fsprovider-sample/package.json | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/fsprovider-sample/package.json b/fsprovider-sample/package.json index 874dcb3d..b6db1df0 100644 --- a/fsprovider-sample/package.json +++ b/fsprovider-sample/package.json @@ -1,9 +1,13 @@ { "name": "vscode-memfs", "displayName": "MemFS - a file system provider sample", - "description": "Showcase for the file system provider API", + "description": "Showcase for the file system provider API, also useful for testing again document that are not on disk.", "version": "0.0.1", "publisher": "jrieken", + "repository": { + "url": "https://github.com/Microsoft/vscode-extension-samples.git", + "type": "git" + }, "engines": { "vscode": "^1.23.0" }, @@ -18,11 +22,13 @@ "commands": [ { "command": "memfs.init", - "title": "Initialize MemFS" + "title": "Create files", + "category": "MemFS" }, { "command": "memfs.reset", - "title": "Reset MemFS" + "title": "Delete all files", + "category": "MemFS" } ] },