Skip to content

Commit

Permalink
fix: include type definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
wkillerud committed Aug 8, 2024
1 parent f3b384f commit 53d7ca4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ jobs:

- run: npm run lint

- run: npm run types

- run: npm test

- run: npx semantic-release
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,6 @@ jobs:

- run: npm run lint

- run: npm run types

- run: npm test
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ tmp/**/*
coverage
.vscode
.nyc_output/
.tap/
.tap/
types/
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@
"version": "1.3.53",
"description": "Core server package",
"main": "lib/main.js",
"types": "./types/main.d.ts",
"type": "module",
"files": [
"CHANGELOG.md",
"package.json",
"lib"
"lib",
"types"
],
"scripts": {
"clean": "rimraf node_modules .tap types",
Expand Down

0 comments on commit 53d7ca4

Please sign in to comment.