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
Mathias Engelbrecht Pilegård
Pipit
Commits
9a41980a
Commit
9a41980a
authored
Jul 14, 2021
by
Mathias Engelbrecht Pilegård
Browse files
initial commit
parent
703afff6
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
.vscode/settings.json
0 → 100644
View file @
9a41980a
{
"git.ignoreLimitWarning"
:
true
}
\ No newline at end of file
README.md
→
client/
README.md
View file @
9a41980a
File moved
client/node_modules/.bin/acorn
0 → 100644
View file @
9a41980a
#!/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
"
$basedir
/node"
"
$basedir
/../acorn/bin/acorn"
"
$@
"
ret
=
$?
else
node
"
$basedir
/../acorn/bin/acorn"
"
$@
"
ret
=
$?
fi
exit
$ret
client/node_modules/.bin/acorn.cmd
0 → 100644
View file @
9a41980a
@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
%
\..\acorn\bin\acorn"
%
*
ENDLOCAL
EXIT
/b
%errorlevel%
:find
_dp0
SET
dp0
=
%~dp0
EXIT
/b
client/node_modules/.bin/acorn.ps1
0 → 100644
View file @
9a41980a
#!/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
"
)
{
&
"
$basedir
/node
$exe
"
"
$basedir
/../acorn/bin/acorn"
$args
$ret
=
$LASTEXITCODE
}
else
{
&
"node
$exe
"
"
$basedir
/../acorn/bin/acorn"
$args
$ret
=
$LASTEXITCODE
}
exit
$ret
client/node_modules/.bin/ansi-html
0 → 100644
View file @
9a41980a
#!/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
"
$basedir
/node"
"
$basedir
/../ansi-html/bin/ansi-html"
"
$@
"
ret
=
$?
else
node
"
$basedir
/../ansi-html/bin/ansi-html"
"
$@
"
ret
=
$?
fi
exit
$ret
client/node_modules/.bin/ansi-html.cmd
0 → 100644
View file @
9a41980a
@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
%
\..\ansi-html\bin\ansi-html"
%
*
ENDLOCAL
EXIT
/b
%errorlevel%
:find
_dp0
SET
dp0
=
%~dp0
EXIT
/b
client/node_modules/.bin/ansi-html.ps1
0 → 100644
View file @
9a41980a
#!/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
"
)
{
&
"
$basedir
/node
$exe
"
"
$basedir
/../ansi-html/bin/ansi-html"
$args
$ret
=
$LASTEXITCODE
}
else
{
&
"node
$exe
"
"
$basedir
/../ansi-html/bin/ansi-html"
$args
$ret
=
$LASTEXITCODE
}
exit
$ret
client/node_modules/.bin/atob
0 → 100644
View file @
9a41980a
#!/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
"
$basedir
/node"
"
$basedir
/../atob/bin/atob.js"
"
$@
"
ret
=
$?
else
node
"
$basedir
/../atob/bin/atob.js"
"
$@
"
ret
=
$?
fi
exit
$ret
client/node_modules/.bin/atob.cmd
0 → 100644
View file @
9a41980a
@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
%
\..\atob\bin\atob.js"
%
*
ENDLOCAL
EXIT
/b
%errorlevel%
:find
_dp0
SET
dp0
=
%~dp0
EXIT
/b
client/node_modules/.bin/atob.ps1
0 → 100644
View file @
9a41980a
#!/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
"
)
{
&
"
$basedir
/node
$exe
"
"
$basedir
/../atob/bin/atob.js"
$args
$ret
=
$LASTEXITCODE
}
else
{
&
"node
$exe
"
"
$basedir
/../atob/bin/atob.js"
$args
$ret
=
$LASTEXITCODE
}
exit
$ret
client/node_modules/.bin/autoprefixer
0 → 100644
View file @
9a41980a
#!/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
"
$basedir
/node"
"
$basedir
/../autoprefixer/bin/autoprefixer"
"
$@
"
ret
=
$?
else
node
"
$basedir
/../autoprefixer/bin/autoprefixer"
"
$@
"
ret
=
$?
fi
exit
$ret
client/node_modules/.bin/autoprefixer.cmd
0 → 100644
View file @
9a41980a
@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
%
\..\autoprefixer\bin\autoprefixer"
%
*
ENDLOCAL
EXIT
/b
%errorlevel%
:find
_dp0
SET
dp0
=
%~dp0
EXIT
/b
client/node_modules/.bin/autoprefixer.ps1
0 → 100644
View file @
9a41980a
#!/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
"
)
{
&
"
$basedir
/node
$exe
"
"
$basedir
/../autoprefixer/bin/autoprefixer"
$args
$ret
=
$LASTEXITCODE
}
else
{
&
"node
$exe
"
"
$basedir
/../autoprefixer/bin/autoprefixer"
$args
$ret
=
$LASTEXITCODE
}
exit
$ret
client/node_modules/.bin/babylon
0 → 100644
View file @
9a41980a
#!/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
"
$basedir
/node"
"
$basedir
/../babylon/bin/babylon.js"
"
$@
"
ret
=
$?
else
node
"
$basedir
/../babylon/bin/babylon.js"
"
$@
"
ret
=
$?
fi
exit
$ret
client/node_modules/.bin/babylon.cmd
0 → 100644
View file @
9a41980a
@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
%
\..\babylon\bin\babylon.js"
%
*
ENDLOCAL
EXIT
/b
%errorlevel%
:find
_dp0
SET
dp0
=
%~dp0
EXIT
/b
client/node_modules/.bin/babylon.ps1
0 → 100644
View file @
9a41980a
#!/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
"
)
{
&
"
$basedir
/node
$exe
"
"
$basedir
/../babylon/bin/babylon.js"
$args
$ret
=
$LASTEXITCODE
}
else
{
&
"node
$exe
"
"
$basedir
/../babylon/bin/babylon.js"
$args
$ret
=
$LASTEXITCODE
}
exit
$ret
client/node_modules/.bin/browserslist
0 → 100644
View file @
9a41980a
#!/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
"
$basedir
/node"
"
$basedir
/../browserslist/cli.js"
"
$@
"
ret
=
$?
else
node
"
$basedir
/../browserslist/cli.js"
"
$@
"
ret
=
$?
fi
exit
$ret
client/node_modules/.bin/browserslist.cmd
0 → 100644
View file @
9a41980a
@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
%
\..\browserslist\cli.js"
%
*
ENDLOCAL
EXIT
/b
%errorlevel%
:find
_dp0
SET
dp0
=
%~dp0
EXIT
/b
client/node_modules/.bin/browserslist.ps1
0 → 100644
View file @
9a41980a
#!/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
"
)
{
&
"
$basedir
/node
$exe
"
"
$basedir
/../browserslist/cli.js"
$args
$ret
=
$LASTEXITCODE
}
else
{
&
"node
$exe
"
"
$basedir
/../browserslist/cli.js"
$args
$ret
=
$LASTEXITCODE
}
exit
$ret
Prev
1
2
3
4
5
…
50
Next
Write
Preview
Supports
Markdown
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