Skip to content

Commit

Permalink
Fix folders being ignored while packing
Browse files Browse the repository at this point in the history
  • Loading branch information
t2t2 committed Dec 11, 2023
1 parent 58b9627 commit 9f03ae6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions packages/session-recorder/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@
"require": "./dist/cjs/index.js"
},
"files": [
"dist/cjs/*.js",
"dist/cjs/*.js.map",
"dist/cjs/*.d.ts",
"dist/esm/*.js",
"dist/esm/*.js.map",
"dist/esm/*.d.ts"
"dist/cjs/**/*.js",
"dist/cjs/**/*.js.map",
"dist/cjs/**/*.d.ts",
"dist/esm/**/*.js",
"dist/esm/**/*.js.map",
"dist/esm/**/*.d.ts"
],
"dependencies": {
"@babel/runtime": "~7.22.6",
Expand Down
12 changes: 6 additions & 6 deletions packages/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@
"require": "./dist/cjs/index.js"
},
"files": [
"dist/cjs/*.js",
"dist/cjs/*.js.map",
"dist/cjs/*.d.ts",
"dist/esm/*.js",
"dist/esm/*.js.map",
"dist/esm/*.d.ts"
"dist/cjs/**/*.js",
"dist/cjs/**/*.js.map",
"dist/cjs/**/*.d.ts",
"dist/esm/**/*.js",
"dist/esm/**/*.js.map",
"dist/esm/**/*.d.ts"
],
"dependencies": {
"@babel/runtime": "^7.22.6",
Expand Down

0 comments on commit 9f03ae6

Please sign in to comment.