From a32fa5c080511246b13541facd0890127ff10b39 Mon Sep 17 00:00:00 2001 From: Danilo Britto Date: Sun, 14 Apr 2024 07:41:03 -0500 Subject: [PATCH] Minor fixes --- .github/workflows/cd.yml | 2 +- package.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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" },