Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
zfben committed Feb 1, 2025
1 parent 7ade88e commit 71fc976
Show file tree
Hide file tree
Showing 4 changed files with 264 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
dist
coverage
258 changes: 258 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
"funding": "https://github.com/sponsors/faasjs",
"scripts": {
"build": "tsup-node src/index.ts --config tsup.config.ts",
"test": "vitest --run"
"test": "vitest --run",
"ci": "vitest run --silent --coverage"
},
"files": ["dist"],
"devDependencies": {
Expand All @@ -35,7 +36,8 @@
"faasjs": "*",
"@faasjs/lint": "*",
"vitest": "*",
"@types/node": "*"
"@types/node": "*",
"@vitest/coverage-v8": "*"
},
"peerDependencies": {
"postgres": "*"
Expand Down
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
export * from './client'
export * from './types'

0 comments on commit 71fc976

Please sign in to comment.