Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
Signed-off-by: George Thomas <[email protected]>
  • Loading branch information
georgefst committed Oct 30, 2023
1 parent ba3366f commit 459384e
Show file tree
Hide file tree
Showing 9 changed files with 144 additions and 61 deletions.
2 changes: 1 addition & 1 deletion argocd/base/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ spec:
# Note: use the *dev* version of the package here, so that
# PRs can deploy `primer-service` container images that have
# not yet been merged to `primer` `main`.
image: ghcr.io/hackworthltd/primer-service-dev:git-2bf2349473b60fc6a99e9a553dcd1b0fd9d54b5f
image: ghcr.io/hackworthltd/primer-service-dev:git-36076d44f085e2a1a69773a80b3e64cfb07da620
ports:
- containerPort: 8081
env:
Expand Down
134 changes: 76 additions & 58 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

# Note: don't override any of primer's Nix flake inputs, or else
# we won't hit its binary cache.
primer.url = github:hackworthltd/primer/2bf2349473b60fc6a99e9a553dcd1b0fd9d54b5f;
primer.url = github:hackworthltd/primer/36076d44f085e2a1a69773a80b3e64cfb07da620;

flake-parts.url = "github:hercules-ci/flake-parts";
};
Expand Down
5 changes: 5 additions & 0 deletions src/components/TreeReactFlow/Types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ export type PrimerNode<T = unknown> = {
| { type: "primer-typedef-name"; data: PrimerTypeDefNameNodeProps }
| { type: "primer-typedef-param"; data: PrimerTypeDefParamNodeProps }
| { type: "primer-typedef-cons"; data: PrimerTypeDefConsNodeProps }
| { type: "primer-gif"; data: PrimerNodeProps }
);

export const primerNodeWith = <T>(n: PrimerNode, x: T): PrimerNode<T> =>
Expand Down Expand Up @@ -206,6 +207,10 @@ export type PrimerTypeDefConsNodeProps = {
name: GlobalName;
};

export type PrimerGifNodeProps = {
contents: string;
};

/** Properties common to every type of node. */
export type PrimerCommonNodeProps = {
width: number;
Expand Down
Loading

0 comments on commit 459384e

Please sign in to comment.