diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index a63573b..cd9ecc5 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -22,7 +22,7 @@ jobs: - run: pnpm install --frozen-lockfile - run: pnpm run check - run: pnpm run test - - run: pnpm run compile + - run: pnpm run build - run: npm publish env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/package.json b/package.json index 80b6107..96da6bb 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "zustand-injectors", "private": false, "description": "A sweet way of lazy load slices", - "version": "0.0.3", + "version": "0.0.4", "author": "Danilo Britto", "repository": { "type": "git", @@ -25,7 +25,7 @@ "dist" ], "scripts": { - "compile": "vite build", + "build": "vite build", "check": "biome check ./src", "test": "vitest run" },