From 061e27d92ae70e47b9b05035ccf0cac7c4b39761 Mon Sep 17 00:00:00 2001 From: ztimson Date: Wed, 28 Feb 2024 23:57:20 -0500 Subject: [PATCH] Fixed build --- .github/workflows/build.yaml | 3 +++ package.json | 3 +-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index e973b6a..7c00db6 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -25,6 +25,9 @@ jobs: - name: Install Dependencies run: npm i + - name: Build Project + run: npm run build + - name: Test run: npm run test:coverage diff --git a/package.json b/package.json index 5acd21a..b8b508a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ztimson/js-utilities", - "version": "0.3.1", + "version": "0.3.2", "description": "JavaScript Utility library", "author": "Zak Timson", "license": "MIT", @@ -13,7 +13,6 @@ "module": "./dist/js-utilities.mjs", "types": "./dist/src/index.d.ts", "scripts": { - "postinstall": "npm run build", "build": "npx vite build", "test": "npx jest", "test:coverage": "npx jest --coverage",