Updated README docs & package.json `engine` versions to bump up the
minimum required Node version from `10.10` to `10.16` (or `10.16.0+`)
Strapi no longer supports `10.10` since it updated `sharp` to `0.26.0`
( https://github.com/strapi/strapi/pull/7729 ) which requires Node 10.16.0+
(See https://github.com/lovell/sharp/blob/master/docs/changelog.md#v0260---25th-august-2020 )
` yarn create strapi-app my-project --quickstart` on 10.10 fails with error
```
error sharp@0.26.0: The engine "node" is incompatible with this module. Expected version ">=10.16.0". Got "10.10.0"
error Found incompatible module.
```
Signed-off-by: Peter Etelej <peter@etelej.com>
* Don't set connection field on create/edit operation on content-types & components
Signed-off-by: Convly <jean-sebastien.herbaux@epitech.eu>
* Make sure that every component has a valid connection attribute
Signed-off-by: Convly <jean-sebastien.herbaux@epitech.eu>
* Remove connection check on components load
Signed-off-by: Convly <jean-sebastien.herbaux@epitech.eu>
* Remove default connections from core & webhook stores but make sure it's defined in the application lifecycle
Signed-off-by: Convly <jean-sebastien.herbaux@epitech.eu>
* Fix component's associations that can be undefined instead of empty in populateBareAssociations
Signed-off-by: Convly <jean-sebastien.herbaux@epitech.eu>
* Remove "default" connection from plugins' models
Signed-off-by: Convly <jean-sebastien.herbaux@epitech.eu>
* Remove connection attribute from generated models (cli)
Signed-off-by: Convly <jean-sebastien.herbaux@epitech.eu>
* Mutate each component instead of reassign
Signed-off-by: Convly <jean-sebastien.herbaux@epitech.eu>
* Build core_store and webhook model based on the current config
Signed-off-by: Convly <jean-sebastien.herbaux@epitech.eu>
* Add connection to templates conditionally (based on args)
Signed-off-by: Convly <jean-sebastien.herbaux@epitech.eu>
* Set default value for description to undefined instead of empty string
Signed-off-by: Convly <jean-sebastien.herbaux@epitech.eu>
* Remove unnecessary complexity
Signed-off-by: Convly <jean-sebastien.herbaux@epitech.eu>
* Update getStarted models
Signed-off-by: Convly <jean-sebastien.herbaux@epitech.eu>
* Fix attributes parsing for generate:model
Signed-off-by: Convly <jean-sebastien.herbaux@epitech.eu>
* Removed tpl option from generate:model/api
Signed-off-by: Convly <jean-sebastien.herbaux@epitech.eu>
* Remove tpl option from cli
Signed-off-by: Convly <jean-sebastien.herbaux@epitech.eu>