Skip to content

Commit

Permalink
Fix output (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Skelton authored Jan 31, 2023
1 parent e728d81 commit 70ae342
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
5 changes: 5 additions & 0 deletions .changeset/cuddly-swans-tickle.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'lariat': patch
---

Fix missing `dist` directory in published package
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"require": "./dist/index.cjs"
},
"files": [
"lib"
"dist"
],
"scripts": {
"lint": "eslint .",
Expand Down
11 changes: 4 additions & 7 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
{
"compilerOptions": {
"module": "NodeNext",
"moduleResolution": "NodeNext",
"target": "ESNext",
"module": "nodenext",
"moduleResolution": "nodenext",
"target": "esnext",
"strict": true,
"skipLibCheck": true,
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"outDir": "lib"
"noEmit": true
}
}

0 comments on commit 70ae342

Please sign in to comment.