build: rename bundle command to build command

This commit is contained in:
Alfi Maulana 2023-12-12 13:04:45 +07:00
parent 19dbdac998
commit d47a6c7327
No known key found for this signature in database
GPG Key ID: 2242A64C2A8DF5A4
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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"