Merge branch 'master' into ctb/add-search-icon

This commit is contained in:
Alexandre BODIN 2019-12-23 10:01:37 +01:00 committed by GitHub
commit 1ce668f7b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -349,7 +349,7 @@ xhr.send(
::: tab "Many-to-Many" id="many-to-many"
One-to-Many relationships are usefull when an entry can be liked to multiple entries of an other Content Type. And an entry of the other Content Type can be linked to many entries.
Many-to-Many relationships are usefull when an entry can be liked to multiple entries of an other Content Type. And an entry of the other Content Type can be linked to many entries.
#### Example

View File

@ -172,7 +172,7 @@ MongoDB must already be running in the background.
::: tab yarn
```
yarn create strapi-app new my-project
yarn create strapi-app my-project
```
:::

View File

@ -164,7 +164,7 @@ async function askDatabaseInfos(scope) {
}
async function installDatabaseTestingDep({ scope, configuration }) {
let packageManager = scope.useYarn ? 'yarnpkg' : 'npm;';
let packageManager = scope.useYarn ? 'yarnpkg' : 'npm';
let cmd = scope.useYarn
? ['--cwd', scope.tmpPath, 'add']
: ['install', '--prefix', scope.tmpPath];