Skip to content

Commit

Permalink
Add proper readme, images and localization to grunt, gulp and jake
Browse files Browse the repository at this point in the history
  • Loading branch information
dbaeumer committed Feb 26, 2018
1 parent 43fbb43 commit 7ddd37c
Show file tree
Hide file tree
Showing 12 changed files with 57 additions and 12 deletions.
10 changes: 10 additions & 0 deletions extensions/grunt/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Grunt - The JavaScript Task Runner

**Notice** This is a an extension that is bundled with Visual Studio Code.

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.

To run Grunt tasks use the `Tasks` menu.

## Settings
- `grunt.autoDetect` enable detecting tasks from `Gruntfile.js` files, the default is `on`.
Binary file added extensions/grunt/images/grunt.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 3 additions & 2 deletions extensions/grunt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"description": "Extension to add Grunt capabilities to VSCode.",
"displayName": "Grunt support for VSCode",
"version": "0.0.1",
"icon": "images/grunt.png",
"engines": {
"vscode": "*"
},
Expand Down Expand Up @@ -49,11 +50,11 @@
"properties": {
"task": {
"type": "string",
"description": "The Grunt task to customize"
"description": "%grunt.taskDefinition.type.description%"
},
"file": {
"type": "string",
"description": "The Grunt file that provides the task. Can be omitted."
"description": "%grunt.taskDefinition.file.description%"
}
}
}
Expand Down
6 changes: 5 additions & 1 deletion extensions/grunt/package.nls.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
{
"config.grunt.autoDetect": "Controls whether auto detection of Grunt tasks is on or off. Default is on."
"description": "Extension to add Grunt capabilities to VSCode.",
"displayName": "Grunt support for VSCode",
"config.grunt.autoDetect": "Controls whether auto detection of Grunt tasks is on or off. Default is on.",
"grunt.taskDefinition.type.description": "The Grunt task to customize.",
"grunt.taskDefinition.file.description": "The Grunt file that provides the task. Can be omitted."
}
10 changes: 10 additions & 0 deletions extensions/gulp/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Gulp - Automate and enhance your workflow

**Notice** This is a an extension that is bundled with Visual Studio Code.

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.

To run Gulp tasks use the `Tasks` menu.

## Settings
- `gulp.autoDetect` enable detecting tasks from `gulpfile.{js,ts}` files, the default is `on`.
Binary file added extensions/gulp/images/gulp.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 5 additions & 4 deletions extensions/gulp/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
"name": "gulp",
"publisher": "vscode",
"description": "Extension to add Gulp capabilities to VSCode.",
"displayName": "Gulp support for VSCode",
"description": "%description%",
"displayName": "%displayName%",
"version": "0.0.1",
"icon": "images/gulp.png",
"engines": {
"vscode": "*"
},
Expand Down Expand Up @@ -49,11 +50,11 @@
"properties": {
"task": {
"type": "string",
"description": "The Gulp task to customize"
"description": "%gulp.taskDefinition.type.description%"
},
"file": {
"type": "string",
"description": "The Gulp file that provides the task. Can be omitted."
"description": "%gulp.taskDefinition.file.description%"
}
}
}
Expand Down
6 changes: 5 additions & 1 deletion extensions/gulp/package.nls.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
{
"config.gulp.autoDetect": "Controls whether auto detection of Gulp tasks is on or off. Default is on."
"description": "Extension to add Gulp capabilities to VSCode.",
"displayName": "Gulp support for VSCode",
"config.gulp.autoDetect": "Controls whether auto detection of Gulp tasks is on or off. Default is on.",
"gulp.taskDefinition.type.description": "The Gulp task to customize.",
"gulp.taskDefinition.file.description": "The Gulp file that provides the task. Can be omitted."
}
10 changes: 10 additions & 0 deletions extensions/jake/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Jake - JavaScript build tool

**Notice** This is a an extension that is bundled with Visual Studio Code.

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.

To run Jake tasks use the `Tasks` menu.

## Settings
- `jake.autoDetect` enable detecting tasks from `Jakefile.js` files, the default is `on`.
Binary file added extensions/jake/images/cowboy_hat.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 5 additions & 4 deletions extensions/jake/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"name": "jake",
"publisher": "vscode",
"description": "Extension to add Jake capabilities to VSCode.",
"displayName": "Jake support for VSCode",
"description": "%description%",
"displayName": "%displayName%",
"icon": "images/cowboy_hat.png",
"version": "0.0.1",
"engines": {
"vscode": "*"
Expand Down Expand Up @@ -49,11 +50,11 @@
"properties": {
"task": {
"type": "string",
"description": "The Jake task to customize"
"description": "%jake.taskDefinition.type.description%"
},
"file": {
"type": "string",
"description": "The Jake file that provides the task. Can be omitted."
"description": "%jake.taskDefinition.file.description%"
}
}
}
Expand Down
4 changes: 4 additions & 0 deletions extensions/jake/package.nls.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
{
"description": "Extension to add Jake capabilities to VSCode.",
"displayName": "Jake support for VSCode",
"jake.taskDefinition.type.description": "The Jake task to customize.",
"jake.taskDefinition.file.description": "The Jake file that provides the task. Can be omitted.",
"config.jake.autoDetect": "Controls whether auto detection of Jake tasks is on or off. Default is on."
}

0 comments on commit 7ddd37c

Please sign in to comment.