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:
Oliver Davies 2024-02-21 23:32:59 +00:00
parent 72dea5070b
commit c5248bb061
3 changed files with 53 additions and 1 deletions

View file

@ -0,0 +1,11 @@
<?php
declare(strict_types=1);
namespace App\Enum;
enum ProjectLanguage: string
{
case JavaScript = 'javascript';
case PHP = 'php';
}