Skip to content

Commit

Permalink
fix(build): rename build script to sdk:build
Browse files Browse the repository at this point in the history
Updated README.md and package.json to reflect the new script name for building SDK.
  • Loading branch information
gentlementlegen committed Nov 7, 2024
1 parent 80513ad commit fa15f9d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ To set up the project locally, `bun` is the preferred package manager.

2. Build the SDK
```
bun build
bun sdk:build
```
3. Link it locally to another plugin
```
Expand All @@ -39,7 +39,7 @@ To set up the project locally, `bun` is the preferred package manager.
The project provides several npm scripts for various tasks:
- `bun run build`: Compiles the TypeScript code.
- `bun run sdk:build`: Compiles the TypeScript code.
- `bun run test`: Runs the tests.
- `bun run lint`: Runs the linter.
- `bun run format`: Formats the code using Prettier.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"dist"
],
"scripts": {
"build": "tsup",
"sdk:build": "tsup",
"format": "run-s format:lint format:prettier format:cspell",
"format:lint": "eslint --fix .",
"format:prettier": "prettier --write .",
Expand Down

0 comments on commit fa15f9d

Please sign in to comment.