gulp-cordova-description

1.0.1 • Public • Published

gulp-cordova-description

Build Status Coverage Status

Sets the description of the cordova project

Installation

npm install --save-dev gulp-cordova-description

Usage

const gulp = require('gulp');
const create = require('gulp-cordova-create');
const description = require('gulp-cordova-description');
 
gulp.task('build', () => {
    return gulp.src('dist')
        .pipe(create())
        .pipe(description('This is the description of my application.'));
});

This will set the description tag in the config.xml file.

API

description(desc)

desc

Required
Type: string

The description of the application.

Related

See gulp-cordova for the full list of available packages.

License

MIT © Sam Verschueren

Package Sidebar

Install

npm i gulp-cordova-description

Weekly Downloads

1

Version

1.0.1

License

MIT

Last publish

Collaborators

  • samverschueren