Skip to content

Commit 7ddd37c

Browse files
committed
Add proper readme, images and localization to grunt, gulp and jake
1 parent 43fbb43 commit 7ddd37c

12 files changed

Lines changed: 57 additions & 12 deletions

File tree

extensions/grunt/README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Grunt - The JavaScript Task Runner
2+
3+
**Notice** This is a an extension that is bundled with Visual Studio Code.
4+
5+
This extension supports running [Grunt](https://gruntjs.com/) tasks defined in a `gruntfile.js` file as [VS Code tasks](https://code.visualstudio.com/docs/editor/tasks). Grunt tasks with the name 'build', 'compile', or 'watch' are treated as build tasks.
6+
7+
To run Grunt tasks use the `Tasks` menu.
8+
9+
## Settings
10+
- `grunt.autoDetect` enable detecting tasks from `Gruntfile.js` files, the default is `on`.

extensions/grunt/images/grunt.png

32.5 KB
Loading

extensions/grunt/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"description": "Extension to add Grunt capabilities to VSCode.",
55
"displayName": "Grunt support for VSCode",
66
"version": "0.0.1",
7+
"icon": "images/grunt.png",
78
"engines": {
89
"vscode": "*"
910
},
@@ -49,11 +50,11 @@
4950
"properties": {
5051
"task": {
5152
"type": "string",
52-
"description": "The Grunt task to customize"
53+
"description": "%grunt.taskDefinition.type.description%"
5354
},
5455
"file": {
5556
"type": "string",
56-
"description": "The Grunt file that provides the task. Can be omitted."
57+
"description": "%grunt.taskDefinition.file.description%"
5758
}
5859
}
5960
}

extensions/grunt/package.nls.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
{
2-
"config.grunt.autoDetect": "Controls whether auto detection of Grunt tasks is on or off. Default is on."
2+
"description": "Extension to add Grunt capabilities to VSCode.",
3+
"displayName": "Grunt support for VSCode",
4+
"config.grunt.autoDetect": "Controls whether auto detection of Grunt tasks is on or off. Default is on.",
5+
"grunt.taskDefinition.type.description": "The Grunt task to customize.",
6+
"grunt.taskDefinition.file.description": "The Grunt file that provides the task. Can be omitted."
37
}

extensions/gulp/README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Gulp - Automate and enhance your workflow
2+
3+
**Notice** This is a an extension that is bundled with Visual Studio Code.
4+
5+
This extension supports running [Gulp](https://gulpjs.com/) tasks defined in a `gulpfile.{js,ts}` file as [VS Code tasks](https://code.visualstudio.com/docs/editor/tasks). Gulp tasks with the name 'build', 'compile', or 'watch' are treated as build tasks.
6+
7+
To run Gulp tasks use the `Tasks` menu.
8+
9+
## Settings
10+
- `gulp.autoDetect` enable detecting tasks from `gulpfile.{js,ts}` files, the default is `on`.

extensions/gulp/images/gulp.png

7.36 KB
Loading

extensions/gulp/package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
{
22
"name": "gulp",
33
"publisher": "vscode",
4-
"description": "Extension to add Gulp capabilities to VSCode.",
5-
"displayName": "Gulp support for VSCode",
4+
"description": "%description%",
5+
"displayName": "%displayName%",
66
"version": "0.0.1",
7+
"icon": "images/gulp.png",
78
"engines": {
89
"vscode": "*"
910
},
@@ -49,11 +50,11 @@
4950
"properties": {
5051
"task": {
5152
"type": "string",
52-
"description": "The Gulp task to customize"
53+
"description": "%gulp.taskDefinition.type.description%"
5354
},
5455
"file": {
5556
"type": "string",
56-
"description": "The Gulp file that provides the task. Can be omitted."
57+
"description": "%gulp.taskDefinition.file.description%"
5758
}
5859
}
5960
}

extensions/gulp/package.nls.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
{
2-
"config.gulp.autoDetect": "Controls whether auto detection of Gulp tasks is on or off. Default is on."
2+
"description": "Extension to add Gulp capabilities to VSCode.",
3+
"displayName": "Gulp support for VSCode",
4+
"config.gulp.autoDetect": "Controls whether auto detection of Gulp tasks is on or off. Default is on.",
5+
"gulp.taskDefinition.type.description": "The Gulp task to customize.",
6+
"gulp.taskDefinition.file.description": "The Gulp file that provides the task. Can be omitted."
37
}

extensions/jake/README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Jake - JavaScript build tool
2+
3+
**Notice** This is a an extension that is bundled with Visual Studio Code.
4+
5+
This extension supports running [Jake](http://jakejs.com/) tasks defined in a `Jakefile.js` file as [VS Code tasks](https://code.visualstudio.com/docs/editor/tasks). Jake tasks with the name 'build', 'compile', or 'watch' are treated as build tasks.
6+
7+
To run Jake tasks use the `Tasks` menu.
8+
9+
## Settings
10+
- `jake.autoDetect` enable detecting tasks from `Jakefile.js` files, the default is `on`.
43.9 KB
Loading

0 commit comments

Comments
 (0)