From ebeda19c515d75429e1ca109f84722ec21591968 Mon Sep 17 00:00:00 2001 From: Alfi Maulana Date: Tue, 12 Dec 2023 13:10:31 +0700 Subject: [PATCH] build: rename `bundle` command to `build` command (#121) --- .github/workflows/build.yaml | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 86d7fca..7f28f1b 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -29,5 +29,5 @@ jobs: - name: Install Dependencies run: yarn install - - name: Bundle Package - run: yarn bundle && git diff --exit-code HEAD + - name: Build Package + run: yarn build && git diff --exit-code HEAD diff --git a/package.json b/package.json index 2eac15b..f7ceb31 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "private": true, "type": "module", "scripts": { - "bundle": "tsc && ncc build dist/main.mjs -o main", + "build": "tsc && ncc build dist/main.mjs -o main", "format": "prettier --write . !main !README.md", "lint": "eslint --ignore-path .gitignore .", "test": "tsc && jest"