docs(build): Add descriptions to grunt tasks that lack them.

Closes #608
This commit is contained in:
Shane Tomlinson 2014-03-03 12:33:03 +00:00
Родитель 09493f74d9
Коммит b945c32453
7 изменённых файлов: 7 добавлений и 7 удалений

Просмотреть файл

@ -16,7 +16,7 @@ module.exports = function (grunt) {
'use strict';
// po2json is configured in po2json.js
grunt.registerTask('l10n-create-json', function () {
grunt.registerTask('l10n-create-json', 'Create localized string bundles for the client.', function () {
if (! fs.existsSync(jsonOutputPath)) {
mkdirp.sync(jsonOutputPath);
}

Просмотреть файл

@ -15,7 +15,7 @@ const messagesOutputPath = path.join(__dirname, '..', 'locale', 'templates', 'LC
module.exports = function (grunt) {
'use strict';
grunt.registerTask('l10n-extract', function () {
grunt.registerTask('l10n-extract', 'Extract strings from templates for localization.', function () {
var done = this.async();
if (! fs.existsSync(messagesOutputPath)) {

Просмотреть файл

@ -18,7 +18,7 @@ const localePath = path.join(__dirname, '..', 'locale');
module.exports = function (grunt) {
'use strict';
grunt.registerTask('l10n-fetch-strings', function () {
grunt.registerTask('l10n-fetch-strings', 'Fetch localized strings from the localization repo.', function () {
var done = this.async();
if (! fs.existsSync(localePath)) {

Просмотреть файл

@ -9,7 +9,7 @@ const path = require('path');
module.exports = function (grunt) {
'use strict';
grunt.registerTask('l10n-merge', function () {
grunt.registerTask('l10n-merge', 'Merge extracted strings with .PO files.', function () {
var done = this.async();
grunt.util.spawn({
cmd: path.resolve(__dirname, '..', 'scripts', 'merge_po.sh'),

Просмотреть файл

@ -15,7 +15,7 @@ module.exports = function (grunt) {
dist: path.join(CONFIG_ROOT, 'production.json')
};
grunt.registerTask('selectconfig', function(target) {
grunt.registerTask('selectconfig', 'Select configuration files for the running environment.', function(target) {
if (! target) {
target = 'app';
}

Просмотреть файл

@ -5,7 +5,7 @@
module.exports = function (grunt) {
'use strict';
grunt.registerTask('server', function (target) {
grunt.registerTask('server', 'Start the server after performing necessary build.', function (target) {
if (target === 'dist') {
return grunt.task.run(['build', 'serverproc:dist']);
}

Просмотреть файл

@ -7,7 +7,7 @@ module.exports = function (grunt) {
var runServer = require('../scripts/run_locally');
grunt.registerTask('serverproc', function () {
grunt.registerTask('serverproc', 'Start the server. ** Use `grunt server:<target>` instead **.', function () {
runServer(this.async());
});
};