Create a cordova project
npm install --save-dev gulp-cordova-create
const create = require('gulp-cordova-create');
gulp.task('build', () => {
return gulp.src('www')
.pipe(create());
});
This will generate a Cordova project in the .cordova
directory. It will copy the contents of the www
directory
to the root directory of the Cordova project.
Make sure you html files are located in a directory called www
.
You can pass in extra options to change the initial configuration of the project.
const create = require('gulp-cordova-create');
gulp.task('build', () => {
const options = {
dir: 'myproject',
id: 'com.myproject.hello',
name: 'MyProject'
};
return gulp.src('www')
.pipe(create(options));
});
This will execute the following command
$ cordova create myproject com.myproject.hello MyProject
And then it will copy the content of the www
directory to the www
directory of the cordova project.
Type: string
Default: .cordova
The name of the output directory.
Type: string
Default: io.cordova.hellocordova
The reverse domain-style identifier of the project.
Type: string
Default: HelloCordova
The application's display title.
See gulp-cordova
for the full list of available packages.
MIT © Sam Verschueren