diff --git a/extensions/grunt/README.md b/extensions/grunt/README.md new file mode 100644 index 0000000000000..34132a02dbea6 --- /dev/null +++ b/extensions/grunt/README.md @@ -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`. diff --git a/extensions/grunt/images/grunt.png b/extensions/grunt/images/grunt.png new file mode 100644 index 0000000000000..312e8551e06ad Binary files /dev/null and b/extensions/grunt/images/grunt.png differ diff --git a/extensions/grunt/package.json b/extensions/grunt/package.json index 4966ea7271b2c..bb41c9c9bf7c1 100644 --- a/extensions/grunt/package.json +++ b/extensions/grunt/package.json @@ -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%" } } } diff --git a/extensions/grunt/package.nls.json b/extensions/grunt/package.nls.json index 95b1104be1318..31f3b369af5b3 100644 --- a/extensions/grunt/package.nls.json +++ b/extensions/grunt/package.nls.json @@ -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." } \ No newline at end of file diff --git a/extensions/gulp/README.md b/extensions/gulp/README.md new file mode 100644 index 0000000000000..c06203d7a8db0 --- /dev/null +++ b/extensions/gulp/README.md @@ -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`. diff --git a/extensions/gulp/images/gulp.png b/extensions/gulp/images/gulp.png new file mode 100644 index 0000000000000..894ee2306160a Binary files /dev/null and b/extensions/gulp/images/gulp.png differ diff --git a/extensions/gulp/package.json b/extensions/gulp/package.json index 8ab76f556d0a8..ad2073f2d0f67 100644 --- a/extensions/gulp/package.json +++ b/extensions/gulp/package.json @@ -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": "*" }, @@ -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%" } } } diff --git a/extensions/gulp/package.nls.json b/extensions/gulp/package.nls.json index 15df4d03b0326..fee639e5eeefb 100644 --- a/extensions/gulp/package.nls.json +++ b/extensions/gulp/package.nls.json @@ -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." } \ No newline at end of file diff --git a/extensions/jake/README.md b/extensions/jake/README.md new file mode 100644 index 0000000000000..cbaa043b0a228 --- /dev/null +++ b/extensions/jake/README.md @@ -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`. diff --git a/extensions/jake/images/cowboy_hat.png b/extensions/jake/images/cowboy_hat.png new file mode 100644 index 0000000000000..89c708be0bec1 Binary files /dev/null and b/extensions/jake/images/cowboy_hat.png differ diff --git a/extensions/jake/package.json b/extensions/jake/package.json index 7d2d4b4524e59..d9b994abd59c0 100644 --- a/extensions/jake/package.json +++ b/extensions/jake/package.json @@ -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": "*" @@ -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%" } } } diff --git a/extensions/jake/package.nls.json b/extensions/jake/package.nls.json index c6ca7464a7535..b8cdb170d33f7 100644 --- a/extensions/jake/package.nls.json +++ b/extensions/jake/package.nls.json @@ -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." } \ No newline at end of file