Skip to content

Commit

Permalink
core: implement first release improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
enzoferey authored Jul 25, 2022
1 parent 749db1e commit 38df4a8
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
dist
node_modules
node_modules
coverage
15 changes: 13 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
{
"name": "@enzoferey/ethers-error-parser",
"version": "0.1.0",
"version": "0.1.1",
"license": "MIT",
"homepage": "https://github.com/enzoferey/ethers-error-parser",
"repository": {
"type": "git",
"url": "https://github.com/enzoferey/ethers-error-parser.git"
},
"keywords": [
"ethers-js",
"error",
"parsing"
],
"type": "module",
"files": [
"dist"
Expand All @@ -16,7 +27,7 @@
},
"scripts": {
"build": "tsc && vite build",
"prepublish": "yarn build",
"prepublishOnly": "yarn build",
"ts:check": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
Expand Down
5 changes: 3 additions & 2 deletions vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@ export default defineConfig({
},
plugins: [dts()],
test: {
mockReset: true,
coverage: {
src: ["lib"],
reporter: ["lcov"],
reporter: ["text", "lcov"],
all: true,
exclude: ["lib/index.ts", "lib/types.ts"],
exclude: ["lib/**/index.ts", "lib/types.ts", "*.d.ts"],
100: true,
},
},
Expand Down

0 comments on commit 38df4a8

Please sign in to comment.