Skip to content

Commit 1c77a54

Browse files
author
ANDREW M. TRICE
committed
Merge branch 'master' of github.com:IBM-Bluemix/vscode-log-output-colorizer
2 parents 3472d57 + 6b8dfa8 commit 1c77a54

File tree

4 files changed

+86
-57
lines changed

4 files changed

+86
-57
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,5 @@ jspm_packages
3737
.node_repl_history
3838

3939
*.vsix
40+
41+
out

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Installs](https://vsmarketplacebadge.apphb.com/installs/IBM.output-colorizer.svg)](https://marketplace.visualstudio.com/items?itemName=IBM.output-colorizer)
55
[![Ratings](https://vsmarketplacebadge.apphb.com/rating/IBM.output-colorizer.svg)](https://marketplace.visualstudio.com/items?itemName=IBM.output-colorizer)
66

7-
Language extension for VSCode/Bluemix Code that adds syntax colorization for both the output/debug/extensions panel and *.log files.
7+
Language extension for VSCode/Bluemix Code that adds syntax colorization for both the output/debug/extensions panel and `*.log` files.
88

99
Colorization should work with most themes because it uses common theme token style names. It also works with most instances of the output panel. Initially attempts to match common literals (strings, dates, numbers, guids) and warning|info|error|server|local messages.
1010

gulpfile.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
var gulp = require('gulp');
2+
var zip = require('gulp-vinyl-zip').zip;
3+
4+
gulp.task('build-zip', () => {
5+
return gulp.src([
6+
'src/**',
7+
'LICENSE',
8+
'package.json',
9+
'github-assets/**',
10+
'README.md'
11+
], { base: '.' })
12+
.pipe(zip(`vscode-log-output-colorizer.zip`))
13+
.pipe(gulp.dest('./out'));
14+
});

package.json

Lines changed: 69 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,73 @@
11
{
2-
"name": "output-colorizer",
3-
"displayName": "Output Colorizer",
4-
"description": "Syntax highlighting for log output",
5-
"version": "0.0.5",
6-
"publisher": "IBM",
7-
"engines": {
8-
"vscode": "^1.0.0"
9-
},
10-
"categories": [
11-
"Languages"
2+
"name": "output-colorizer",
3+
"displayName": "Output Colorizer",
4+
"description": "Syntax highlighting for log output",
5+
"version": "0.0.6",
6+
"publisher": "IBM",
7+
"engines": {
8+
"vscode": "^1.0.0"
9+
},
10+
"categories": [
11+
"Languages"
12+
],
13+
"repository": {
14+
"type": "git",
15+
"url": "https://github.com/IBM-Bluemix/vscode-log-output-colorizer.git"
16+
},
17+
"author": {
18+
"name": "Andrew Trice",
19+
"email": "[email protected]"
20+
},
21+
"contributors": [
22+
{
23+
"name": "Jeff Sloyer",
24+
"email": "[email protected]"
25+
}
26+
],
27+
"contributes": {
28+
"languages": [
29+
{
30+
"id": "log",
31+
"aliases": [
32+
"vscode-output-colorizer",
33+
"log"
34+
],
35+
"extensions": [
36+
".log"
37+
],
38+
"configuration": "./log.configuration.json",
39+
"mimetypes": [
40+
"text/x-code-output"
41+
]
42+
}
1243
],
13-
"repository": {
14-
"type": "git",
15-
"url": "https://github.com/IBM-Bluemix/vscode-log-output-colorizer.git"
16-
},
17-
"author": {
18-
"name": "Andrew Trice",
19-
"email": "[email protected]"
20-
},
21-
"contributors": [
22-
{
23-
"name": "Jeff Sloyer",
24-
"email": "[email protected]"
25-
}
26-
],
27-
"contributes": {
28-
"languages": [{
29-
"id": "log",
30-
"aliases": ["vscode-output-colorizer", "log"],
31-
"extensions": [".log"],
32-
"configuration": "./log.configuration.json",
33-
"mimetypes": ["text/x-code-output"]
34-
}],
35-
"grammars": [{
36-
"language": "log",
37-
"scopeName": "bmcode.log",
38-
"path": "./src/syntaxes/log.tmLanguage"
39-
}]
40-
},
41-
"devDependencies": {
42-
"vscode": "^0.11.0"
43-
},
44-
"galleryBanner": {
45-
"color": "#f2f2f2",
46-
"theme": "light"
47-
},
48-
"icon": "github-assets/icon.png",
49-
"bugs": {
50-
"url": "https://github.com/IBM-Bluemix/vscode-log-output-colorizer/issues"
51-
},
52-
"license": "MIT",
53-
"homepage": "https://github.com/IBM-Bluemix/vscode-log-output-colorizer/blob/master/README.md",
54-
"keywords": [
55-
"IBM",
56-
"log",
57-
"color",
58-
"output"
44+
"grammars": [
45+
{
46+
"language": "log",
47+
"scopeName": "bmcode.log",
48+
"path": "./src/syntaxes/log.tmLanguage"
49+
}
5950
]
51+
},
52+
"devDependencies": {
53+
"gulp": "^3.9.1",
54+
"gulp-vinyl-zip": "^1.2.2",
55+
"vscode": "^0.11.0"
56+
},
57+
"galleryBanner": {
58+
"color": "#f2f2f2",
59+
"theme": "light"
60+
},
61+
"icon": "github-assets/icon.png",
62+
"bugs": {
63+
"url": "https://github.com/IBM-Bluemix/vscode-log-output-colorizer/issues"
64+
},
65+
"license": "MIT",
66+
"homepage": "https://github.com/IBM-Bluemix/vscode-log-output-colorizer/blob/master/README.md",
67+
"keywords": [
68+
"IBM",
69+
"log",
70+
"color",
71+
"output"
72+
]
6073
}

0 commit comments

Comments
 (0)