15 lines
317 B
Makefile
15 lines
317 B
Makefile
NIX := "LD_LIBRARY_PATH='' nix"
|
|
|
|
prettier-gql:
|
|
#!/usr/bin/env bash
|
|
set -euxo pipefail
|
|
{{NIX}} develop --impure --command prettier ./src --write
|
|
|
|
gql-codegen:
|
|
#!/usr/bin/env bash
|
|
set -euxo pipefail
|
|
{{NIX}} develop --impure --command bash -c 'yarn install && yarn graphql-codegen'
|
|
|
|
|
|
gql: gql-codegen prettier-gql
|