From 7e2f84fa28600ce1f7345d403d413170e883eb28 Mon Sep 17 00:00:00 2001 From: 0xerorn <92925112+0xerorn@users.noreply.github.com> Date: Tue, 30 Jul 2024 19:55:47 +0300 Subject: [PATCH] Update and rename webpack.yml to bun-build.yml --- .github/workflows/{webpack.yml => bun-build.yml} | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) rename .github/workflows/{webpack.yml => bun-build.yml} (69%) diff --git a/.github/workflows/webpack.yml b/.github/workflows/bun-build.yml similarity index 69% rename from .github/workflows/webpack.yml rename to .github/workflows/bun-build.yml index e28af07..e42c7e7 100644 --- a/.github/workflows/webpack.yml +++ b/.github/workflows/bun-build.yml @@ -1,4 +1,4 @@ -name: BunJS with Webpack +name: BunJS with Bun Build permissions: contents: write @@ -20,7 +20,6 @@ jobs: - name: Build run: | - bun install -g webpack-cli - webpack --config webpack.config.js + bun build --bundle ./src/Main.ts --outdir=out/ --outfile=out/plugin.js --watch --target browser --entry-naming EaglerForge-[hash].js - name: Write changes to repository uses: stefanzweifel/git-auto-commit-action@v4