Skip to content

SamVerschueren/gulp-cordova-author

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Sets the author of the cordova project

Resources

License

Stars

Watchers

Forks

Packages

No packages published