Fixed build
All checks were successful
Build / Build NPM Project (push) Successful in 32s
Build / Tag Version (push) Successful in 7s
Build / Publish (push) Successful in 17s

This commit is contained in:
Zakary Timson 2024-02-28 23:57:20 -05:00
parent 63a5c5f6b7
commit 061e27d92a
2 changed files with 4 additions and 2 deletions

View File

@ -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

View File

@ -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",