Créer une nouvelle version spécifique du projet angulaire

//You cannot using CLI
//Better install a specific version of Angular in a folder:
$ npm install @angular/[email protected] //for anngular 5 for example
//And then
$ ng new angular_5_app

//or change angular/cli and angular versions in the package.json
MitchAloha