From 65b55a3211c3ab7b40b78d2718b74629b07d5cd9 Mon Sep 17 00:00:00 2001 From: James Cook Date: Wed, 30 Aug 2023 16:04:27 +0100 Subject: [PATCH] chore: copy readme file correctly --- scripts/build_npm.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build_npm.ts b/scripts/build_npm.ts index a0e9f98..0d02947 100644 --- a/scripts/build_npm.ts +++ b/scripts/build_npm.ts @@ -43,6 +43,6 @@ await build({ postBuild() { // steps to run after building and before running the tests Deno.copyFileSync("LICENSE", "npm/LICENSE"); - Deno.copyFileSync("readme.md", "npm/README.md"); + Deno.copyFileSync("README.md", "npm/README.md"); }, });