From e6c2e653ab8ad7d115d29a407c99aaecb179adb1 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Tue, 5 Feb 2019 22:01:25 +0100 Subject: Import from api-notation.tmLanguage --- package.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 package.json (limited to 'package.json') diff --git a/package.json b/package.json new file mode 100644 index 0000000..1f0bc38 --- /dev/null +++ b/package.json @@ -0,0 +1,25 @@ +{ + "name": "api-notation", + "displayName": "API Notation", + "description": "Syntax Highlighting for API notation", + "version": "0.0.1", + "engines": { + "vscode": "^1.30.0" + }, + "categories": [ + "Programming Languages" + ], + "contributes": { + "languages": [{ + "id": "api-notation", + "aliases": ["API Notation", "api-notation"], + "extensions": [".api"], + "configuration": "./language-configuration.json" + }], + "grammars": [{ + "language": "api-notation", + "scopeName": "source.api-notation", + "path": "./syntaxes/api-notation.tmLanguage" + }] + } +} \ No newline at end of file -- cgit From 50266a18d9b653651a60dee9041b71fd35b0c1e4 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Tue, 5 Feb 2019 22:26:23 +0100 Subject: 0.1.0 --- package.json | 35 ++++++++++++++++++++++------------- 1 file changed, 22 insertions(+), 13 deletions(-) (limited to 'package.json') diff --git a/package.json b/package.json index 1f0bc38..6796641 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "api-notation", "displayName": "API Notation", "description": "Syntax Highlighting for API notation", - "version": "0.0.1", + "version": "0.1.0", "engines": { "vscode": "^1.30.0" }, @@ -10,16 +10,25 @@ "Programming Languages" ], "contributes": { - "languages": [{ - "id": "api-notation", - "aliases": ["API Notation", "api-notation"], - "extensions": [".api"], - "configuration": "./language-configuration.json" - }], - "grammars": [{ - "language": "api-notation", - "scopeName": "source.api-notation", - "path": "./syntaxes/api-notation.tmLanguage" - }] + "languages": [ + { + "id": "api-notation", + "aliases": [ + "API Notation", + "api-notation" + ], + "extensions": [ + ".api" + ], + "configuration": "./language-configuration.json" + } + ], + "grammars": [ + { + "language": "api-notation", + "scopeName": "source.api-notation", + "path": "./syntaxes/api-notation.tmLanguage" + } + ] } -} \ No newline at end of file +} -- cgit From bb6c1bf15efb3a3b534ce0a8db1f89669875cb00 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Tue, 5 Feb 2019 22:27:17 +0100 Subject: Add publisher to package.json --- package.json | 1 + 1 file changed, 1 insertion(+) (limited to 'package.json') diff --git a/package.json b/package.json index 6796641..72d231b 100644 --- a/package.json +++ b/package.json @@ -2,6 +2,7 @@ "name": "api-notation", "displayName": "API Notation", "description": "Syntax Highlighting for API notation", + "publisher": "rbdr", "version": "0.1.0", "engines": { "vscode": "^1.30.0" -- cgit From ede690e14ed8d3b93ac1f34aaeab839aadc36d5a Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Tue, 5 Feb 2019 22:27:33 +0100 Subject: 0.2.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'package.json') diff --git a/package.json b/package.json index 72d231b..4973fa1 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "API Notation", "description": "Syntax Highlighting for API notation", "publisher": "rbdr", - "version": "0.1.0", + "version": "0.2.0", "engines": { "vscode": "^1.30.0" }, -- cgit From a25a3a2ce3cda19f17989c4aa24fa6c88428647e Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Tue, 5 Feb 2019 22:28:52 +0100 Subject: Add repository --- package.json | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'package.json') diff --git a/package.json b/package.json index 4973fa1..53c6452 100644 --- a/package.json +++ b/package.json @@ -10,6 +10,10 @@ "categories": [ "Programming Languages" ], + "repository": { + "type": "git", + "url": "https://gitlab.com/rbdr/api-notation.vscode.git" + }, "contributes": { "languages": [ { -- cgit From a9d15729990d4c7a8face9f15dc9bb5dfcd96b4b Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Tue, 5 Feb 2019 22:29:10 +0100 Subject: 0.2.1 --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'package.json') diff --git a/package.json b/package.json index 53c6452..44e125e 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "API Notation", "description": "Syntax Highlighting for API notation", "publisher": "rbdr", - "version": "0.2.0", + "version": "0.2.1", "engines": { "vscode": "^1.30.0" }, @@ -11,8 +11,8 @@ "Programming Languages" ], "repository": { - "type": "git", - "url": "https://gitlab.com/rbdr/api-notation.vscode.git" + "type": "git", + "url": "https://gitlab.com/rbdr/api-notation.vscode.git" }, "contributes": { "languages": [ -- cgit