1
0
Fork 0
mirror of https://github.com/classchartsapi/classcharts-api-js.git synced 2026-05-14 11:58:13 +00:00

fix: update CI

This commit is contained in:
James Cook 2026-05-08 18:33:08 +01:00
parent f2ada0a494
commit 5ccf141f3f
No known key found for this signature in database
5 changed files with 76 additions and 120 deletions

View file

@ -55,8 +55,5 @@ await build({
async postBuild() {
await Deno.copyFile("LICENSE", "npm/LICENSE");
await Deno.copyFile("README.md", "npm/README.md");
using npmIgnoreFile = await Deno.open("npm/.npmignore", { append: true });
const data = new TextEncoder().encode("deps/" + "\n" + "*.map" + "\n");
npmIgnoreFile.write(data);
},
});