Skip to content

Commit

Permalink
fix: generate typings when compile (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
levibostian committed Oct 2, 2023
1 parent 15e8094 commit 3e80783
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
"version": "1.0.0",
"description": "node module (and CLI) that checks if a specific version of a package has been deployed yet.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": "dist/cli.js",
"scripts": {
"test": "npx jest",
"compile": "npx tsc --outDir dist"
"compile": "npx tsc --outDir dist --declaration"
},
"author": "Levi Bostian <levi@curiosityio.com>",
"license": "MIT",
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"extends": "@tsconfig/node18/tsconfig.json",
"exclude": ["**/*.spec.ts"]
}

0 comments on commit 3e80783

Please sign in to comment.