replaceVariables()

in src/app/app.component.ts [275:283]


  replaceVariables(action: string) {
    let newAction = action;
    newAction = newAction.replace(
      '${packageManagerGlobalInstall}',
      this.packageManager === 'npm install' ? 'npm install -g' : 'yarn global add'
    );
    newAction = newAction.replace('${packageManagerInstall}', this.packageManager);
    return newAction;
  }