gulp-cordova-author
v1.0.0
Published
Sets the author of the cordova project.
Downloads
25
Maintainers
Readme
gulp-cordova-author
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', '[email protected]'));
});
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.
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
- Sam Verschueren [[email protected]]
License
MIT © Sam Verschueren