Implement versioning strategies in js 🧉

This commit is contained in:
Webber
2020-04-26 20:22:09 +02:00
committed by Webber Takken
parent 2e81e61af3
commit d75d7890d0
23 changed files with 361 additions and 93 deletions

View File

@@ -4,7 +4,7 @@ import Action from './action';
class Project {
static get relativePath() {
const { projectPath } = Input.getFromUser();
const projectPath = Input.getFromUser().then(result => result.projectPath);
return `${projectPath}`;
}