From 8f524635166ac7f90b96bed3534fd288fce6b0b8 Mon Sep 17 00:00:00 2001 From: Mrugesh Mohapatra Date: Fri, 11 Sep 2026 13:57:00 +0530 Subject: [PATCH] fix(build): copy lua contents, not the directory --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0a10522..30abf1d 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "packageManager": "pnpm@10.34.5", "scripts": { "dev": "BUILD_VERSION=dev-$(git rev-parse --short HEAD 2>/dev/null || echo unknown) nodemon", - "build": "tsc -p . && cp -r src/lib/lua dist/lib/lua", + "build": "tsc -p . && mkdir -p dist/lib/lua && cp -r src/lib/lua/. dist/lib/lua/", "start": "node dist/index.js", "lint": "oxlint .", "format": "prettier --write .",