Skip to content

Commit

Permalink
hotfix: regression missing types
Browse files Browse the repository at this point in the history
  • Loading branch information
prevwong committed Jul 27, 2024
1 parent 07dc0db commit cd13881
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
7 changes: 7 additions & 0 deletions .changeset/good-readers-look.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
'@craftjs/layers': patch
'@craftjs/utils': patch
'@craftjs/core': patch
---

Fix regression - include typings in npm package
3 changes: 2 additions & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
"module": "./dist/esm/index.js",
"types": "./lib/index.d.ts",
"files": [
"dist"
"dist",
"lib"
],
"repository": {
"type": "git",
Expand Down
3 changes: 2 additions & 1 deletion packages/layers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"license": "MIT",
"types": "./lib/index.d.ts",
"files": [
"dist"
"dist",
"lib"
],
"scripts": {
"start": "cross-env NODE_ENV=development ../../scripts/build.sh",
Expand Down
3 changes: 2 additions & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"module": "./dist/esm/index.js",
"types": "./lib/index.d.ts",
"files": [
"dist"
"dist",
"lib"
],
"scripts": {
"start": "cross-env NODE_ENV=development ../../scripts/build.sh",
Expand Down

0 comments on commit cd13881

Please sign in to comment.