gulp-cordova-author

1.0.0 • Public • Published

gulp-cordova-author Build Status

Sets the author of the cordova project

Installation

npm install --save-dev gulp-cordova-author

Usage

var gulp = require('gulp'),
    create = require('gulp-cordova-create'),
    author = require('gulp-cordova-author');
 
gulp.task('build', function() {
    return gulp.src('dist')
        .pipe(create())
        .pipe(author('Sam Verschueren', 'sam.verschueren@gmail.com'));
});

This will set the author properties in the config.xml file.

API

author(name [, email [, website]])

name

Required
Type: string

The name of the author.

email

Type: string

The email address of the author.

website

Type: string

The website of the author.

Related

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

Contributors

License

MIT © Sam Verschueren

Dependents (1)

Package Sidebar

Install

npm i gulp-cordova-author

Weekly Downloads

8

Version

1.0.0

License

MIT

Last publish

Collaborators

  • samverschueren