Update build files and add node_modules (#54)

* update build files

* add node_modules
This commit is contained in:
Rakesh Kumar
2020-09-22 23:45:33 -07:00
committed by GitHub
parent 8ea3fa2ba0
commit 807bb60301
7928 changed files with 1710631 additions and 5 deletions

17
node_modules/.bin/jest.cmd generated vendored Normal file
View File

@@ -0,0 +1,17 @@
@ECHO off
SETLOCAL
CALL :find_dp0
IF EXIST "%dp0%\node.exe" (
SET "_prog=%dp0%\node.exe"
) ELSE (
SET "_prog=node"
SET PATHEXT=%PATHEXT:;.JS;=;%
)
"%_prog%" "%dp0%\..\jest\bin\jest.js" %*
ENDLOCAL
EXIT /b %errorlevel%
:find_dp0
SET dp0=%~dp0
EXIT /b