Skip to content

Commit

Permalink
chore: specify which files should be published
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathantneal committed Aug 9, 2021
1 parent cc19083 commit ad4b0f8
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
8 changes: 5 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,11 @@
"./global": "./dist/index.global.js"
},
"files": [
"dist",
"types",
"utils"
"dist/*.cjs",
"dist/*.js",
"dist/*.map",
"dist/*.mjs",
"types/*.d.ts"
],
"sideEffects": false,
"license": "MIT",
Expand Down
8 changes: 5 additions & 3 deletions packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,11 @@
"./global": "./dist/index.global.js"
},
"files": [
"dist",
"types",
"utils"
"dist/*.cjs",
"dist/*.js",
"dist/*.map",
"dist/*.mjs",
"types/*.d.ts"
],
"sideEffects": false,
"license": "MIT",
Expand Down
7 changes: 5 additions & 2 deletions packages/stringify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,11 @@
"./global": "./dist/index.global.js"
},
"files": [
"dist",
"types"
"dist/*.cjs",
"dist/*.js",
"dist/*.map",
"dist/*.mjs",
"types/*.d.ts"
],
"sideEffects": false,
"license": "MIT",
Expand Down

0 comments on commit ad4b0f8

Please sign in to comment.