init commit

This commit is contained in:
iFlip721
2025-04-16 09:55:57 -04:00
commit a03209dc9e
935 changed files with 177492 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#!/bin/sh
node -v > /dev/null 2>&1
if test $? -ne 0
then
echo "node wasn't found in the PATH. Please make sure node is installed and available in the PATH. Exiting..."
exit 1
else
SCRIPT_PATH="$(cd "$(dirname "$0")" ; pwd -P)"
node "$SCRIPT_PATH/../../package/lib/cli/cli.js" "$@"
fi

View File

@@ -0,0 +1,11 @@
#!/bin/sh
node -v > /dev/null 2>&1
if test $? -ne 0
then
echo "node wasn't found in the PATH. Please make sure node is installed and available in the PATH. Exiting..."
exit 1
else
SCRIPT_PATH="$(cd "$(dirname "$0")" ; pwd -P)"
node "$SCRIPT_PATH/../../package/lib/cli/cli.js" "$@"
fi

View File

@@ -0,0 +1,11 @@
#!/bin/sh
node -v > /dev/null 2>&1
if test $? -ne 0
then
echo "node wasn't found in the PATH. Please make sure node is installed and available in the PATH. Exiting..."
exit 1
else
SCRIPT_PATH="$(cd "$(dirname "$0")" ; pwd -P)"
node "$SCRIPT_PATH/../../package/lib/cli/cli.js" "$@"
fi

View File

@@ -0,0 +1,11 @@
#!/bin/sh
node -v > /dev/null 2>&1
if test $? -ne 0
then
echo "node wasn't found in the PATH. Please make sure node is installed and available in the PATH. Exiting..."
exit 1
else
SCRIPT_PATH="$(cd "$(dirname "$0")" ; pwd -P)"
node "$SCRIPT_PATH/../../package/lib/cli/cli.js" "$@"
fi

View File

@@ -0,0 +1,10 @@
@echo off
setlocal
@REM Check if node is installed and use it, if not, exit with error.
node -v > NUL 2>&1
IF %ERRORLEVEL% NEQ 0 (
ECHO node.exe wasn't found in the PATH. Please make sure node is installed and available in the PATH. Exiting...
exit /b 1
) ELSE (
"node.exe" "%~dp0..\..\package\lib\cli\cli.js" %*
)