Skip to content

Commit

Permalink
export types correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenkilbourn committed Oct 27, 2022
1 parent 2b50f4b commit 094d02b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
{
"name": "@skilbourn/playwright-report-summary",
"version": "1.0.3",
"version": "1.0.4",
"description": "generate a customizable text summary of your playwright test results",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"types": "dist/src/types.d.ts",
"files": [
"/dist/src"
],
"scripts": {
"build": "tsc -p ./tsconfig.json",
"lint": "npx eslint . --ext .ts",
"prettier": "prettier --write --loglevel warn \"**/**/*.ts\"",
"prepublish": "npm run build",
"test": "npx playwright test",
"typecheck": "tsc",
"test:coverage": "nyc playwright test && nyc report --reporter=lcov --reporter=html"
Expand Down
5 changes: 4 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,8 @@
"outDir": "./dist",
"declaration": true,
"allowSyntheticDefaultImports": true
}
},
"include": [
"./src"
]
}

0 comments on commit 094d02b

Please sign in to comment.