mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
fixes for deploy
This commit is contained in:
parent
05d0ee181f
commit
0ef60eaf7b
@ -4,13 +4,19 @@
|
||||
# bun
|
||||
if ! command -v bun &> /dev/null
|
||||
then
|
||||
if ! command -v unzip &> /dev/null
|
||||
then
|
||||
echo "'unzip' is missing, will be installed now!"
|
||||
sudo apt-get install -y unzip
|
||||
fi
|
||||
echo "'bun' is missing, will be installed now!"
|
||||
curl -fsSL https://bun.sh/install | bash
|
||||
curl -fsSL https://bun.sh/install | BUN_INSTALL=/usr/local bash
|
||||
export PATH="/root/.bun/bin:${PATH}"
|
||||
fi
|
||||
if ! command -v turbo &> /dev/null
|
||||
then
|
||||
echo "'turbo' is missing, will be installed now!"
|
||||
bun global add turbo
|
||||
bun install --global turbo
|
||||
fi
|
||||
|
||||
# helper functions
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
// "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
|
||||
// "sourceMap": true, /* Generates corresponding '.map' file. */
|
||||
// "outFile": "./", /* Concatenate and emit output to single file. */
|
||||
"outDir": "./build/src", /* Redirect output structure to the directory. */
|
||||
"outDir": "./build", /* Redirect output structure to the directory. */
|
||||
// "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
|
||||
// "composite": true, /* Enable project compilation */
|
||||
// "tsBuildInfoFile": "./", /* Specify file to store incremental compilation information */
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user