Skip to content

Commit

Permalink
🔧 chore: Reorder build scripts in package.json for consistency
Browse files Browse the repository at this point in the history
chore: reorder build scripts in package.json for consistency
```

Reorders the execution of the `build:types` and `build:libs` scripts in the `package.json` to maintain a consistent build process. This change does not affect the build output but ensures that the library files are built before the type declarations.
  • Loading branch information
Gincioks committed May 4, 2024
1 parent a724e46 commit 0c26aae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"module": "dist/esm/sdk.js",
"types": "types/index.d.ts",
"scripts": {
"build": "npm run build:types && npm run build:libs",
"build": "npm run build:libs && npm run build:types",
"build:libs": "rollup -c",
"build:types": "tsc --declaration --emitDeclarationOnly --outDir types",
"ci": "bun run lint:circular && bun run type-check",
Expand Down

0 comments on commit 0c26aae

Please sign in to comment.