Skip to content
Merged
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
eb33cf2
fix(typesync | publish): tsup and package.json updates for publishing
cmwhited Jun 14, 2025
3d0940d
fix(typesync | publish): bump version in cli
cmwhited Jun 14, 2025
93f0ad8
fix(typesync): package client UI in dist and store data in .typesync.db
marcusrein Jun 23, 2025
e3ea4cc
fix(typesync): resolve merge conflicts and update lockfile
marcusrein Jun 24, 2025
0915726
Merge branch 'main' into chris.whited/fix-published-pkg
marcusrein Jun 24, 2025
4cd6942
fix(Dockerfile): reorder build steps for clarity and maintainability
marcusrein Jun 24, 2025
9899815
fix(tsup.config): add external dependency for Prisma client
marcusrein Jun 24, 2025
efcd12e
fix(package.json): update @graphprotocol/grc-20 dependency to ^0.21.3
marcusrein Jun 24, 2025
07a8359
fix(prisma): update PrismaClient import path and remove external depe…
marcusrein Jun 24, 2025
53c7803
fix(prisma): update provider to prisma-client-js in schema.prisma
marcusrein Jun 24, 2025
6b01afd
fix(typesync | publish): rebase. approve-builds
cmwhited Jun 27, 2025
4b14c79
Merge branch 'main' of github.com:graphprotocol/hypergraph into chris…
cmwhited Jun 27, 2025
6d592db
fix(typesync | publish): bump deps. fix tanstack router plugin codegen.
cmwhited Jun 27, 2025
2c37ad2
fix(typesync | publish): more build improvements
cmwhited Jun 27, 2025
94c5430
fix(typesync | publish): get client dist to run in published package
cmwhited Jun 27, 2025
9fa854a
fix(typesync | publish): update root space id const. remove migration…
cmwhited Jun 27, 2025
63569cc
fix(typesync | publish): publish latest
cmwhited Jun 27, 2025
93c5d17
revert non-typesync changes
nikgraf Jun 29, 2025
1888f32
restore lock file
nikgraf Jun 29, 2025
023cc6f
restore working pnpm lock file
nikgraf Jun 29, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,7 @@ typings/
*.tsbuildinfo
next-env.d.ts

.DS_Store
.DS_Store

# tanstack router output
.tanstack
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ FROM base AS build
# ENV DATABASE_URL="file:./dev.db"
RUN \
# TODO: This initalizes the database. But we should probably remove this later.
# pnpm --filter server prisma migrate reset --force && \
# Build the monorepo packages
pnpm build && \
pnpm --filter server prisma migrate reset --force && \
# Generate the prisma client
pnpm --filter server prisma generate && \
# Build the monorepo packages
pnpm build && \
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@cmwhited can you revert this change? The dockerfile works and only want to make changes where necessary

# Build the server.
pnpm --filter server build && \
# Create an isolated deployment for the server.
Expand Down
Loading
Loading