mirror of
https://github.com/strapi/strapi.git
synced 2025-11-01 18:33:55 +00:00
Update wordings
This commit is contained in:
parent
e7a2b12146
commit
a61845b3c0
@ -15,7 +15,7 @@ module.exports = async scope => {
|
||||
const configuration = {
|
||||
client,
|
||||
connection: merge({}, defaultConfigs[client] || {}, scope.database),
|
||||
dependencies: clientDependencies({ scope, client: client }),
|
||||
dependencies: clientDependencies({ scope, client }),
|
||||
};
|
||||
return createProject(scope, configuration);
|
||||
};
|
||||
|
||||
@ -40,7 +40,7 @@ async function askDbInfosAndTest(scope) {
|
||||
const configuration = {
|
||||
client,
|
||||
connection,
|
||||
dependencies: clientDependencies({ scope, client: client }),
|
||||
dependencies: clientDependencies({ scope, client }),
|
||||
};
|
||||
|
||||
await testDatabaseConnection({
|
||||
|
||||
@ -112,6 +112,9 @@ module.exports = async function createProject(
|
||||
console.log(` ${cmd} build`);
|
||||
console.log(' Builds Strapi admin panel.');
|
||||
console.log();
|
||||
console.log(` ${cmd} strapi`);
|
||||
console.log(` Display all available commands.`);
|
||||
console.log();
|
||||
console.log('You can start by doing:');
|
||||
console.log();
|
||||
console.log(` ${chalk.cyan('cd')} ${rootPath}`);
|
||||
|
||||
@ -17,7 +17,7 @@ module.exports = async function createQuickStartProject(scope) {
|
||||
const configuration = {
|
||||
client,
|
||||
connection: defaultConfigs[client],
|
||||
dependencies: clientDependencies({ scope, client: client }),
|
||||
dependencies: clientDependencies({ scope, client }),
|
||||
};
|
||||
|
||||
await createProject(scope, configuration);
|
||||
|
||||
@ -22,7 +22,9 @@ module.exports = function parseDatabaseArguments({ scope, args }) {
|
||||
args.dbclient !== 'sqlite'
|
||||
) {
|
||||
return stopProcess(
|
||||
`⛔️ Some database arguments are missing. Required arguments list: ${dbArguments}`
|
||||
`⛔️ Some of the database arguments are missing. Required arguments: ${dbArguments.join(
|
||||
', '
|
||||
)}.`
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user