Skip to content

Commit

Permalink
fix: publish (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
jpb06 authored Mar 17, 2024
1 parent 19a4a90 commit 06c69df
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
Binary file modified bun.lockb
Binary file not shown.
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitest/coverage-v8": "^1.4.0",
"copyfiles": "^2.4.1",
"del-cli": "^5.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
Expand All @@ -41,7 +42,10 @@
},
"scripts": {
"update-deps": "bunx npm-check-updates --root --format group -i",
"copy-package": "copyfiles package.json ./dist/",
"copy-readme": "copyfiles README.md ./dist/",
"build": "del-cli ./dist && tsc --project tsconfig.prod.json",
"postbuild": "bun run copy-package && bun run copy-readme",
"lint": "eslint ./src",
"type-check": "tsc --noEmit",
"test": "vitest",
Expand Down
2 changes: 1 addition & 1 deletion vite.config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
coverage: {
reporter: ['text', 'json', 'html', 'lcov'],
reporter: ['text', 'json', 'html', 'lcov', 'json-summary'],
all: true,
include: ['src/**/*.ts'],
exclude: [
Expand Down

0 comments on commit 06c69df

Please sign in to comment.