Add initial JavaScript/TypeScript support
Add JS/TS support to `versa install`. Run `npm install`, `yarn` or `pnpm install` based on which files are present in the project.
This commit is contained in:
parent
72dea5070b
commit
c5248bb061
3 changed files with 53 additions and 1 deletions
11
src/Enum/ProjectLanguage.php
Normal file
11
src/Enum/ProjectLanguage.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Enum;
|
||||
|
||||
enum ProjectLanguage: string
|
||||
{
|
||||
case JavaScript = 'javascript';
|
||||
case PHP = 'php';
|
||||
}
|
Reference in a new issue