diff --git a/test-deno/keylike.test.ts b/test-deno/keylike.test.ts index e0799754..9edaad56 100644 --- a/test-deno/keylike.test.ts +++ b/test-deno/keylike.test.ts @@ -5,7 +5,7 @@ import keyToJwk from '../dist/deno/jwk/from_key_like.ts'; import calculateThumbprint from '../dist/deno/jwk/thumbprint.ts'; async function test(jwk: JsonWebKey, alg: string) { - await calculateThumbprint(jwk) + await calculateThumbprint(jwk); const keyLike = await jwkToKey(jwk, alg); assertEquals(await keyToJwk(keyLike), jwk); } diff --git a/tools/postbump.js b/tools/postbump.js index c98aa9fe..389baa4d 100755 --- a/tools/postbump.js +++ b/tools/postbump.js @@ -27,7 +27,9 @@ x({ sync: true, }); execSync("npm run build:deno", opts); -execSync("cp docs/README.md dist/deno/README.md") -execSync(`sed -i '' -e 's/](/](https:\\/\\/github.com\\/panva\\/jose\\/blob\\/${tagName}\\/docs\\//g' dist/deno/README.md`) +execSync("cp docs/README.md dist/deno/README.md"); +execSync( + `sed -i '' -e 's/](/](https:\\/\\/github.com\\/panva\\/jose\\/blob\\/${tagName}\\/docs\\//g' dist/deno/README.md` +); execSync("git add docs/**/*.md", opts); execSync("git add dist/**/* -f", opts);