69 lines
2.1 KiB
Bash
69 lines
2.1 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
BASEDIR=$(dirname "$0")
|
|
# shellcheck disable=SC1090
|
|
source "${BASEDIR}/resolve_commands.sh"
|
|
cd "$BASEDIR/../" || { echo "Failed to enter parent directory!"; exit 1; }
|
|
|
|
function generate_link() {
|
|
if [[ ! -L $2 ]] || [[ "${BASH_ARGV[0]}" == "force" ]]; then
|
|
if [[ -e $2 ]] || [[ -L $2 ]]; then
|
|
rm $2
|
|
fi
|
|
ln -rs $1 $2
|
|
fi
|
|
}
|
|
|
|
function replace_tribble() {
|
|
#${1} => file name
|
|
echo "$(cat ${1} | sed -E 's/\/\/\/[ ]+<reference [a-zA-Z.-=_ ]+\/>.*/\n/')" > ${1}
|
|
}
|
|
|
|
|
|
#Building the generator
|
|
./tools/build_dtsgen.sh; _exit_code=$?
|
|
if [[ $_exit_code -ne 0 ]]; then
|
|
echo "Failed to build typescript declaration generator ($_exit_code)"
|
|
exit 1
|
|
fi
|
|
|
|
#Shared
|
|
./shared/generate_declarations.sh; _exit_code=$?
|
|
[[ $_exit_code -ne 0 ]] && {
|
|
echo "Failed to generate shared ($_exit_code)"
|
|
}
|
|
|
|
exit 0
|
|
#Easy going: Each "module" has it's exports and imports
|
|
#So lets first build the exports and ignore any errors
|
|
#Note: For the client we have to use the given file
|
|
|
|
#Web
|
|
npm run dtsgen -- --config web/tsconfig/dtsconfig.json -v
|
|
replace_tribble web/declarations/exports.d.ts
|
|
echo "Generated web declarations"
|
|
|
|
#Client
|
|
npm run dtsgen -- --config client/tsconfig/dtsconfig.json -v
|
|
replace_tribble client/declarations/exports.d.ts
|
|
echo "Generated client declarations"
|
|
|
|
#replace_tribble shared/declarations/exports.d.ts
|
|
echo "Generated shared declarations"
|
|
|
|
#Now build the merged declaration for the shared project
|
|
#Link the declaration files (All interface declarations should be equal!)
|
|
if [[ ! -d shared/declarations ]]; then
|
|
mkdir shared/declarations
|
|
if [[ $? -ne 0 ]]; then
|
|
echo "Failed to create directory shared/declarations"
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
#Last but not least the client imports
|
|
generate_link shared/declarations/exports_app.d.ts web/declarations/imports_shared.d.ts
|
|
generate_link shared/declarations/exports_loader_app.d.ts web/declarations/imports_shared_loader.d.ts
|
|
|
|
generate_link shared/declarations/exports_app.d.ts client/declarations/imports_shared.d.ts
|
|
generate_link shared/declarations/exports_loader_app.d.ts client/declarations/imports_shared_loader.d.ts |