Skip to content

Commit

Permalink
chore: specify which files to include in published packages
Browse files Browse the repository at this point in the history
  • Loading branch information
joakimbeng committed Nov 15, 2023
1 parent 85decd7 commit 3e0ff07
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .changeset/cold-nails-film.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
'@emigrate/plugin-generate-js': patch
'@emigrate/plugin-tools': patch
'emigrate': patch
---

Specify files to include in published NPM package
3 changes: 3 additions & 0 deletions packages/emigrate/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
"bin": {
"emigrate": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc --pretty",
"build:watch": "tsc --pretty --watch"
Expand Down
3 changes: 3 additions & 0 deletions packages/plugin-generate-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc --pretty",
"build:watch": "tsc --pretty --watch"
Expand Down
3 changes: 3 additions & 0 deletions packages/plugin-tools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
"types": "./dist/types.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc --pretty",
"build:watch": "tsc --pretty --watch",
Expand Down

0 comments on commit 3e0ff07

Please sign in to comment.