Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Muhammad Raza
MIT_project
Commits
e9e3f278
Commit
e9e3f278
authored
Jan 10, 2022
by
Muhammad Saroosh Asif
Browse files
.
parent
cc12458d
Changes
1000
Hide whitespace changes
Inline
Side-by-side
Too many changes to show.
To preserve performance only
20 of 1000+
files are displayed.
Plain diff
Email patch
backend-api/node_modules/.bin/acorn
deleted
100644 → 0
View file @
cc12458d
#!/bin/sh
basedir
=
$(
dirname
"
$(
echo
"
$0
"
|
sed
-e
's,\\,/,g'
)
"
)
case
`
uname
`
in
*
CYGWIN
*
|
*
MINGW
*
|
*
MSYS
*
)
basedir
=
`
cygpath
-w
"
$basedir
"
`
;;
esac
if
[
-x
"
$basedir
/node"
]
;
then
exec
"
$basedir
/node"
"
$basedir
/../acorn/bin/acorn"
"
$@
"
else
exec
node
"
$basedir
/../acorn/bin/acorn"
"
$@
"
fi
backend-api/node_modules/.bin/acorn.cmd
deleted
100644 → 0
View file @
cc12458d
@ECHO
off
GOTO
start
:find
_dp0
SET
dp0
=
%~dp0
EXIT
/b
:start
SETLOCAL
CALL
:find
_dp0
IF
EXIST
"
%dp0
%
\node.exe"
(
SET
"_prog=
%dp0
%
\node.exe"
)
ELSE
(
SET
"_prog=node"
SET
PATHEXT
=
%PATHEXT
:
;
.JS
;=;
%
)
endLocal
&
goto
#_undefined_#
2
>
NUL
||
title
%COMSPEC%
&
"
%_prog%
"
"
%dp0
%
\..\acorn\bin\acorn"
%
*
backend-api/node_modules/.bin/acorn.ps1
deleted
100644 → 0
View file @
cc12458d
#!/usr/bin/env pwsh
$basedir
=
Split-Path
$MyInvocation
.
MyCommand
.
Definition
-Parent
$exe
=
""
if
(
$PSVersionTable
.
PSVersion
-lt
"6.0"
-or
$IsWindows
)
{
# Fix case when both the Windows and Linux builds of Node
# are installed in the same directory
$exe
=
".exe"
}
$ret
=
0
if
(
Test-Path
"
$basedir
/node
$exe
"
)
{
# Support pipeline input
if
(
$MyInvocation
.
ExpectingInput
)
{
$input
|
&
"
$basedir
/node
$exe
"
"
$basedir
/../acorn/bin/acorn"
$args
}
else
{
&
"
$basedir
/node
$exe
"
"
$basedir
/../acorn/bin/acorn"
$args
}
$ret
=
$LASTEXITCODE
}
else
{
# Support pipeline input
if
(
$MyInvocation
.
ExpectingInput
)
{
$input
|
&
"node
$exe
"
"
$basedir
/../acorn/bin/acorn"
$args
}
else
{
&
"node
$exe
"
"
$basedir
/../acorn/bin/acorn"
$args
}
$ret
=
$LASTEXITCODE
}
exit
$ret
backend-api/node_modules/.bin/is-ci
deleted
100644 → 0
View file @
cc12458d
#!/bin/sh
basedir
=
$(
dirname
"
$(
echo
"
$0
"
|
sed
-e
's,\\,/,g'
)
"
)
case
`
uname
`
in
*
CYGWIN
*
|
*
MINGW
*
|
*
MSYS
*
)
basedir
=
`
cygpath
-w
"
$basedir
"
`
;;
esac
if
[
-x
"
$basedir
/node"
]
;
then
exec
"
$basedir
/node"
"
$basedir
/../is-ci/bin.js"
"
$@
"
else
exec
node
"
$basedir
/../is-ci/bin.js"
"
$@
"
fi
backend-api/node_modules/.bin/is-ci.cmd
deleted
100644 → 0
View file @
cc12458d
@ECHO
off
GOTO
start
:find
_dp0
SET
dp0
=
%~dp0
EXIT
/b
:start
SETLOCAL
CALL
:find
_dp0
IF
EXIST
"
%dp0
%
\node.exe"
(
SET
"_prog=
%dp0
%
\node.exe"
)
ELSE
(
SET
"_prog=node"
SET
PATHEXT
=
%PATHEXT
:
;
.JS
;=;
%
)
endLocal
&
goto
#_undefined_#
2
>
NUL
||
title
%COMSPEC%
&
"
%_prog%
"
"
%dp0
%
\..\is-ci\bin.js"
%
*
backend-api/node_modules/.bin/is-ci.ps1
deleted
100644 → 0
View file @
cc12458d
#!/usr/bin/env pwsh
$basedir
=
Split-Path
$MyInvocation
.
MyCommand
.
Definition
-Parent
$exe
=
""
if
(
$PSVersionTable
.
PSVersion
-lt
"6.0"
-or
$IsWindows
)
{
# Fix case when both the Windows and Linux builds of Node
# are installed in the same directory
$exe
=
".exe"
}
$ret
=
0
if
(
Test-Path
"
$basedir
/node
$exe
"
)
{
# Support pipeline input
if
(
$MyInvocation
.
ExpectingInput
)
{
$input
|
&
"
$basedir
/node
$exe
"
"
$basedir
/../is-ci/bin.js"
$args
}
else
{
&
"
$basedir
/node
$exe
"
"
$basedir
/../is-ci/bin.js"
$args
}
$ret
=
$LASTEXITCODE
}
else
{
# Support pipeline input
if
(
$MyInvocation
.
ExpectingInput
)
{
$input
|
&
"node
$exe
"
"
$basedir
/../is-ci/bin.js"
$args
}
else
{
&
"node
$exe
"
"
$basedir
/../is-ci/bin.js"
$args
}
$ret
=
$LASTEXITCODE
}
exit
$ret
backend-api/node_modules/.bin/mime
deleted
100644 → 0
View file @
cc12458d
#!/bin/sh
basedir
=
$(
dirname
"
$(
echo
"
$0
"
|
sed
-e
's,\\,/,g'
)
"
)
case
`
uname
`
in
*
CYGWIN
*
|
*
MINGW
*
|
*
MSYS
*
)
basedir
=
`
cygpath
-w
"
$basedir
"
`
;;
esac
if
[
-x
"
$basedir
/node"
]
;
then
exec
"
$basedir
/node"
"
$basedir
/../mime/cli.js"
"
$@
"
else
exec
node
"
$basedir
/../mime/cli.js"
"
$@
"
fi
backend-api/node_modules/.bin/mime.cmd
deleted
100644 → 0
View file @
cc12458d
@ECHO
off
GOTO
start
:find
_dp0
SET
dp0
=
%~dp0
EXIT
/b
:start
SETLOCAL
CALL
:find
_dp0
IF
EXIST
"
%dp0
%
\node.exe"
(
SET
"_prog=
%dp0
%
\node.exe"
)
ELSE
(
SET
"_prog=node"
SET
PATHEXT
=
%PATHEXT
:
;
.JS
;=;
%
)
endLocal
&
goto
#_undefined_#
2
>
NUL
||
title
%COMSPEC%
&
"
%_prog%
"
"
%dp0
%
\..\mime\cli.js"
%
*
backend-api/node_modules/.bin/mime.ps1
deleted
100644 → 0
View file @
cc12458d
#!/usr/bin/env pwsh
$basedir
=
Split-Path
$MyInvocation
.
MyCommand
.
Definition
-Parent
$exe
=
""
if
(
$PSVersionTable
.
PSVersion
-lt
"6.0"
-or
$IsWindows
)
{
# Fix case when both the Windows and Linux builds of Node
# are installed in the same directory
$exe
=
".exe"
}
$ret
=
0
if
(
Test-Path
"
$basedir
/node
$exe
"
)
{
# Support pipeline input
if
(
$MyInvocation
.
ExpectingInput
)
{
$input
|
&
"
$basedir
/node
$exe
"
"
$basedir
/../mime/cli.js"
$args
}
else
{
&
"
$basedir
/node
$exe
"
"
$basedir
/../mime/cli.js"
$args
}
$ret
=
$LASTEXITCODE
}
else
{
# Support pipeline input
if
(
$MyInvocation
.
ExpectingInput
)
{
$input
|
&
"node
$exe
"
"
$basedir
/../mime/cli.js"
$args
}
else
{
&
"node
$exe
"
"
$basedir
/../mime/cli.js"
$args
}
$ret
=
$LASTEXITCODE
}
exit
$ret
backend-api/node_modules/.bin/nodemon
deleted
100644 → 0
View file @
cc12458d
#!/bin/sh
basedir
=
$(
dirname
"
$(
echo
"
$0
"
|
sed
-e
's,\\,/,g'
)
"
)
case
`
uname
`
in
*
CYGWIN
*
|
*
MINGW
*
|
*
MSYS
*
)
basedir
=
`
cygpath
-w
"
$basedir
"
`
;;
esac
if
[
-x
"
$basedir
/node"
]
;
then
exec
"
$basedir
/node"
"
$basedir
/../nodemon/bin/nodemon.js"
"
$@
"
else
exec
node
"
$basedir
/../nodemon/bin/nodemon.js"
"
$@
"
fi
backend-api/node_modules/.bin/nodemon.cmd
deleted
100644 → 0
View file @
cc12458d
@ECHO
off
GOTO
start
:find
_dp0
SET
dp0
=
%~dp0
EXIT
/b
:start
SETLOCAL
CALL
:find
_dp0
IF
EXIST
"
%dp0
%
\node.exe"
(
SET
"_prog=
%dp0
%
\node.exe"
)
ELSE
(
SET
"_prog=node"
SET
PATHEXT
=
%PATHEXT
:
;
.JS
;=;
%
)
endLocal
&
goto
#_undefined_#
2
>
NUL
||
title
%COMSPEC%
&
"
%_prog%
"
"
%dp0
%
\..\nodemon\bin\nodemon.js"
%
*
backend-api/node_modules/.bin/nodemon.ps1
deleted
100644 → 0
View file @
cc12458d
#!/usr/bin/env pwsh
$basedir
=
Split-Path
$MyInvocation
.
MyCommand
.
Definition
-Parent
$exe
=
""
if
(
$PSVersionTable
.
PSVersion
-lt
"6.0"
-or
$IsWindows
)
{
# Fix case when both the Windows and Linux builds of Node
# are installed in the same directory
$exe
=
".exe"
}
$ret
=
0
if
(
Test-Path
"
$basedir
/node
$exe
"
)
{
# Support pipeline input
if
(
$MyInvocation
.
ExpectingInput
)
{
$input
|
&
"
$basedir
/node
$exe
"
"
$basedir
/../nodemon/bin/nodemon.js"
$args
}
else
{
&
"
$basedir
/node
$exe
"
"
$basedir
/../nodemon/bin/nodemon.js"
$args
}
$ret
=
$LASTEXITCODE
}
else
{
# Support pipeline input
if
(
$MyInvocation
.
ExpectingInput
)
{
$input
|
&
"node
$exe
"
"
$basedir
/../nodemon/bin/nodemon.js"
$args
}
else
{
&
"node
$exe
"
"
$basedir
/../nodemon/bin/nodemon.js"
$args
}
$ret
=
$LASTEXITCODE
}
exit
$ret
backend-api/node_modules/.bin/nodetouch
deleted
100644 → 0
View file @
cc12458d
#!/bin/sh
basedir
=
$(
dirname
"
$(
echo
"
$0
"
|
sed
-e
's,\\,/,g'
)
"
)
case
`
uname
`
in
*
CYGWIN
*
|
*
MINGW
*
|
*
MSYS
*
)
basedir
=
`
cygpath
-w
"
$basedir
"
`
;;
esac
if
[
-x
"
$basedir
/node"
]
;
then
exec
"
$basedir
/node"
"
$basedir
/../touch/bin/nodetouch.js"
"
$@
"
else
exec
node
"
$basedir
/../touch/bin/nodetouch.js"
"
$@
"
fi
backend-api/node_modules/.bin/nodetouch.cmd
deleted
100644 → 0
View file @
cc12458d
@ECHO
off
GOTO
start
:find
_dp0
SET
dp0
=
%~dp0
EXIT
/b
:start
SETLOCAL
CALL
:find
_dp0
IF
EXIST
"
%dp0
%
\node.exe"
(
SET
"_prog=
%dp0
%
\node.exe"
)
ELSE
(
SET
"_prog=node"
SET
PATHEXT
=
%PATHEXT
:
;
.JS
;=;
%
)
endLocal
&
goto
#_undefined_#
2
>
NUL
||
title
%COMSPEC%
&
"
%_prog%
"
"
%dp0
%
\..\touch\bin\nodetouch.js"
%
*
backend-api/node_modules/.bin/nodetouch.ps1
deleted
100644 → 0
View file @
cc12458d
#!/usr/bin/env pwsh
$basedir
=
Split-Path
$MyInvocation
.
MyCommand
.
Definition
-Parent
$exe
=
""
if
(
$PSVersionTable
.
PSVersion
-lt
"6.0"
-or
$IsWindows
)
{
# Fix case when both the Windows and Linux builds of Node
# are installed in the same directory
$exe
=
".exe"
}
$ret
=
0
if
(
Test-Path
"
$basedir
/node
$exe
"
)
{
# Support pipeline input
if
(
$MyInvocation
.
ExpectingInput
)
{
$input
|
&
"
$basedir
/node
$exe
"
"
$basedir
/../touch/bin/nodetouch.js"
$args
}
else
{
&
"
$basedir
/node
$exe
"
"
$basedir
/../touch/bin/nodetouch.js"
$args
}
$ret
=
$LASTEXITCODE
}
else
{
# Support pipeline input
if
(
$MyInvocation
.
ExpectingInput
)
{
$input
|
&
"node
$exe
"
"
$basedir
/../touch/bin/nodetouch.js"
$args
}
else
{
&
"node
$exe
"
"
$basedir
/../touch/bin/nodetouch.js"
$args
}
$ret
=
$LASTEXITCODE
}
exit
$ret
backend-api/node_modules/.bin/nopt
deleted
100644 → 0
View file @
cc12458d
#!/bin/sh
basedir
=
$(
dirname
"
$(
echo
"
$0
"
|
sed
-e
's,\\,/,g'
)
"
)
case
`
uname
`
in
*
CYGWIN
*
|
*
MINGW
*
|
*
MSYS
*
)
basedir
=
`
cygpath
-w
"
$basedir
"
`
;;
esac
if
[
-x
"
$basedir
/node"
]
;
then
exec
"
$basedir
/node"
"
$basedir
/../nopt/bin/nopt.js"
"
$@
"
else
exec
node
"
$basedir
/../nopt/bin/nopt.js"
"
$@
"
fi
backend-api/node_modules/.bin/nopt.cmd
deleted
100644 → 0
View file @
cc12458d
@ECHO
off
GOTO
start
:find
_dp0
SET
dp0
=
%~dp0
EXIT
/b
:start
SETLOCAL
CALL
:find
_dp0
IF
EXIST
"
%dp0
%
\node.exe"
(
SET
"_prog=
%dp0
%
\node.exe"
)
ELSE
(
SET
"_prog=node"
SET
PATHEXT
=
%PATHEXT
:
;
.JS
;=;
%
)
endLocal
&
goto
#_undefined_#
2
>
NUL
||
title
%COMSPEC%
&
"
%_prog%
"
"
%dp0
%
\..\nopt\bin\nopt.js"
%
*
backend-api/node_modules/.bin/nopt.ps1
deleted
100644 → 0
View file @
cc12458d
#!/usr/bin/env pwsh
$basedir
=
Split-Path
$MyInvocation
.
MyCommand
.
Definition
-Parent
$exe
=
""
if
(
$PSVersionTable
.
PSVersion
-lt
"6.0"
-or
$IsWindows
)
{
# Fix case when both the Windows and Linux builds of Node
# are installed in the same directory
$exe
=
".exe"
}
$ret
=
0
if
(
Test-Path
"
$basedir
/node
$exe
"
)
{
# Support pipeline input
if
(
$MyInvocation
.
ExpectingInput
)
{
$input
|
&
"
$basedir
/node
$exe
"
"
$basedir
/../nopt/bin/nopt.js"
$args
}
else
{
&
"
$basedir
/node
$exe
"
"
$basedir
/../nopt/bin/nopt.js"
$args
}
$ret
=
$LASTEXITCODE
}
else
{
# Support pipeline input
if
(
$MyInvocation
.
ExpectingInput
)
{
$input
|
&
"node
$exe
"
"
$basedir
/../nopt/bin/nopt.js"
$args
}
else
{
&
"node
$exe
"
"
$basedir
/../nopt/bin/nopt.js"
$args
}
$ret
=
$LASTEXITCODE
}
exit
$ret
backend-api/node_modules/.bin/rc
deleted
100644 → 0
View file @
cc12458d
#!/bin/sh
basedir
=
$(
dirname
"
$(
echo
"
$0
"
|
sed
-e
's,\\,/,g'
)
"
)
case
`
uname
`
in
*
CYGWIN
*
|
*
MINGW
*
|
*
MSYS
*
)
basedir
=
`
cygpath
-w
"
$basedir
"
`
;;
esac
if
[
-x
"
$basedir
/node"
]
;
then
exec
"
$basedir
/node"
"
$basedir
/../rc/cli.js"
"
$@
"
else
exec
node
"
$basedir
/../rc/cli.js"
"
$@
"
fi
backend-api/node_modules/.bin/rc.cmd
deleted
100644 → 0
View file @
cc12458d
@ECHO
off
GOTO
start
:find
_dp0
SET
dp0
=
%~dp0
EXIT
/b
:start
SETLOCAL
CALL
:find
_dp0
IF
EXIST
"
%dp0
%
\node.exe"
(
SET
"_prog=
%dp0
%
\node.exe"
)
ELSE
(
SET
"_prog=node"
SET
PATHEXT
=
%PATHEXT
:
;
.JS
;=;
%
)
endLocal
&
goto
#_undefined_#
2
>
NUL
||
title
%COMSPEC%
&
"
%_prog%
"
"
%dp0
%
\..\rc\cli.js"
%
*
Prev
1
2
3
4
5
…
50
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment