mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-08 09:08:48 +01:00
Add proper readme, images and localization to grunt, gulp and jake
This commit is contained in:
@@ -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 not shown.
|
After Width: | Height: | Size: 32 KiB |
@@ -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": "*"
|
||||
},
|
||||
@@ -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%"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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."
|
||||
}
|
||||
Reference in New Issue
Block a user