@strapi/generators
Version:
Interactive API generator.
18 lines (15 loc) • 375 B
JavaScript
;
var getFilePath = ((destination)=>{
if (destination === 'api') {
return `api/{{ api }}`;
}
if (destination === 'plugin') {
return `plugins/{{ plugin }}/server`;
}
if (destination === 'root') {
return './';
}
return `api/{{ id }}`;
});
module.exports = getFilePath;
//# sourceMappingURL=get-file-path.js.map