Skip to content

Commit

Permalink
fix: Remove webpack build
Browse files Browse the repository at this point in the history
  • Loading branch information
JesseTheRobot committed Oct 8, 2024
1 parent 118acec commit 73a44af
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
"./src/**/*"
],
"scripts": {
"build": "rm -rf ./build && concurrently \"tsc -p tsconfig.json && resolve-tspaths -p tsconfig.json && sh ./fix-pkg.sh node/esm module && yarn tsc-esm-fix --tsconfig tsconfig.json \" \"tsc -p cjs.tsconfig.json && resolve-tspaths -p cjs.tsconfig.json && sh ./fix-pkg.sh node/cjs commonjs \" \"tsc -p web.tsconfig.json && resolve-tspaths -p web.tsconfig.json && sh ./fix-pkg.sh web/esm module && yarn tsc-esm-fix --tsconfig web.tsconfig.json \" \"tsc -p web-cjs.tsconfig.json && resolve-tspaths -p web-cjs.tsconfig.json && sh ./fix-pkg.sh web/cjs commonjs\" && webpack",
"build": "rm -rf ./build && concurrently \"tsc -p tsconfig.json && resolve-tspaths -p tsconfig.json && sh ./fix-pkg.sh node/esm module && yarn tsc-esm-fix --tsconfig tsconfig.json \" \"tsc -p cjs.tsconfig.json && resolve-tspaths -p cjs.tsconfig.json && sh ./fix-pkg.sh node/cjs commonjs \" \"tsc -p web.tsconfig.json && resolve-tspaths -p web.tsconfig.json && sh ./fix-pkg.sh web/esm module && yarn tsc-esm-fix --tsconfig web.tsconfig.json \" \"tsc -p web-cjs.tsconfig.json && resolve-tspaths -p web-cjs.tsconfig.json && sh ./fix-pkg.sh web/cjs commonjs\"",
"lint": "eslint ./src -c ./.eslintrc.json --ext .ts,.tsx",
"lint:fix": "eslint ./src -c ./.eslintrc.json --ext .ts,.tsx --fix",
"test": "jest --coverage",
Expand Down Expand Up @@ -153,4 +153,4 @@
"multistream": "^4.1.0",
"tmp-promise": "^3.0.2"
}
}
}
3 changes: 2 additions & 1 deletion src/signing/chains/injectedSolanaSigner.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import type { Signer } from "../index";
import base64url from "base64url";
import { SIG_CONFIG } from "../../constants";
// @ts-expect-error types
// eslint-disable-next-line @typescript-eslint/prefer-ts-expect-error
// @ts-ignore
import type { MessageSignerWalletAdapter } from "@solana/wallet-adapter-base";
import { verify } from "@noble/ed25519";

Expand Down

0 comments on commit 73a44af

Please sign in to comment.