commit | 17dd4affe1fad6c31ca32347f56f6220be9af336 | [log] [tgz] |
---|---|---|
author | Erisu <ellis.bryan@gmail.com> | Tue May 19 14:49:25 2020 +0900 |
committer | Erisu <ellis.bryan@gmail.com> | Tue May 19 14:49:25 2020 +0900 |
tree | 8c0505c4261fc28d4e382403953bb410055f5d17 | |
parent | b6558e862fa4f670345bec9a4da8f2217d8b37c1 [diff] |
Updated RELEASENOTES.md & version for release 3.0.0 (create-3.0.0)
This module is used for creating Cordova style projects. It also incudes support for Cordova App Templates. It can fetch templates from npm and git.
const create = require('cordova-create'); await create(dest, opts);
dest
Required. Path to the destination where the project will be created. Must be an empty dir if it exists.
opts
Optional. Supports following properties.
{ // Attributes to be set in package.json & config.xml id: String, name: String, version: String, // The path/url/package-name to the template that should be used template: String, // An EventEmitter instance that will be used for logging purposes // (actually it only needs to implement a compatible `emit` method) events: EventEmitter }