Skip to content

Commit

Permalink
Merge pull request #35 from ethereum-optimism/nick/fix-build
Browse files Browse the repository at this point in the history
Drop tsup
  • Loading branch information
nitaliano authored Dec 17, 2024
2 parents 2f0d148 + 9c06cf8 commit 8f58114
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 215 deletions.
8 changes: 4 additions & 4 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"node": ">=18.20"
},
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"build": "tsc && resolve-tspaths",
"build:watch": "tsc --watch",
"dev": "tsx src/cli.tsx",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
Expand All @@ -20,7 +20,8 @@
"migrations:generate": "drizzle-kit generate"
},
"files": [
"dist"
"dist",
"drizzle"
],
"dependencies": {
"@eth-optimism/viem": "^0.0.11",
Expand Down Expand Up @@ -63,7 +64,6 @@
"prettier": "^2.8.7",
"resolve-tspaths": "^0.8.22",
"ts-node": "^10.9.1",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.0.3",
"vite": "^5.4.11"
Expand Down
13 changes: 0 additions & 13 deletions packages/cli/tsup.config.ts

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { toast } from "sonner";

const Task = ({ task }: { task: TransactionTaskEntry }) => {
const queryClient = useQueryClient();
const { sendTransaction, isPending, error } = useSendTransaction({
const { sendTransaction, isPending } = useSendTransaction({
mutation: {
onSuccess: async (hash) => {
await completeTransactionTask(task.id, hash);
Expand Down
Loading

0 comments on commit 8f58114

Please sign in to comment.