strapi-ts
Version:
An open source headless CMS solution to create and manage your own API. It provides a powerful dashboard and features to make your life easier. Databases supported: MongoDB, MySQL, MariaDB, PostgreSQL, SQLite
67 lines (53 loc) • 1.56 kB
JavaScript
;
/**
* Module dependencies
*/
// Node.js core.
const path = require('path');
// Master of ceremonies for generators.
const generate = require('strapi-generate');
// Logger.
const { logger } = require('strapi-utils');
// Local Strapi dependencies.
const packageJSON = require('../../package.json');
/**
* `$ strapi generate`
*
* Scaffolding for the application in our working directory.
*/
module.exports = function(id, cliArguments) {
// Build initial scope.
const scope = {
rootPath: process.cwd(),
strapiRoot: path.resolve(__dirname, '..'),
id: id,
args: cliArguments,
strapiPackageJSON: packageJSON,
};
scope.generatorType = process.argv[2].split(':')[1];
// Show usage if no generator type is defined.
if (!scope.generatorType) {
return logger.error('Write `$ strapi generate:something` instead.');
}
return generate(scope, {
// Log and exit the REPL in case there is an error
// while we were trying to generate the requested generator.
error(msg) {
logger.error(msg);
process.exit(1);
},
// Log and exit the REPL in case of success
// but first make sure we have all the info we need.
success() {
if (!scope.outputPath && scope.filename && scope.destDir) {
scope.outputPath = scope.destDir + scope.filename;
}
if (scope.generatorType !== 'new') {
logger.info(
`Generated a new ${scope.generatorType} \`${scope.name}\` at \`${scope.filePath}\`.`
);
}
process.exit(0);
},
});
};