mirror of
https://github.com/goauthentik/authentik.git
synced 2026-08-30 18:51:39 -07:00
* fix relObjId type Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix slot comments Signed-off-by: Jens Langhammer <jens@goauthentik.io> * sigh Signed-off-by: Jens Langhammer <jens@goauthentik.io> * use prettier on generated ts code Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io>
19 lines
430 B
Makefile
Generated
19 lines
430 B
Makefile
Generated
.SHELLFLAGS += -x -e
|
|
PWD = $(shell pwd)
|
|
UID = $(shell id -u)
|
|
GID = $(shell id -g)
|
|
|
|
build:
|
|
rm -rf src
|
|
docker compose run --rm --user "${UID}:${GID}" gen \
|
|
generate \
|
|
-i /schema.yml \
|
|
-g typescript-fetch \
|
|
-o local \
|
|
-c /local/config.yaml \
|
|
--additional-properties=npmVersion=0.0.0 \
|
|
--git-repo-id authentik \
|
|
--git-user-id goauthentik
|
|
rm -rf "${PWD}/.openapi-generator"
|
|
npx prettier --cache --write -u "${PWD}"
|