commit | 90e6b80724c011019d73ae0c034c6ab3adb1845b | [log] [tgz] |
---|---|---|
author | エリス <erisu@users.noreply.github.com> | Mon Sep 01 11:50:56 2025 +0900 |
committer | GitHub <noreply@github.com> | Mon Sep 01 11:50:56 2025 +0900 |
tree | ce089375423db206690e0e5feaba3e543a6498d4 | |
parent | bceb12dedbeac9e7b19d78a6d800ad92093792d7 [diff] |
chore: replace nyc with c8 (#102)
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 }