Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
build: include umd builds in published packages
Add umd directory to the files array in package.json for all packages to include UMD builds in npm publications. Also update .gitignore to exclude
umd folders from version control.
  • Loading branch information
Juice10 committed Sep 19, 2025
commit 018447aa20d3688b604fbbfaef46f87f37dd948b
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ temp
# output of `yarn build`
build
dist
umd

# turbo cache
.turbo
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
}
},
"files": [
"umd",
"dist",
"package.json"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
}
},
"files": [
"umd",
"dist",
"package.json"
],
Expand Down
1 change: 1 addition & 0 deletions packages/plugins/rrweb-plugin-console-record/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
}
},
"files": [
"umd",
"dist",
"package.json"
],
Expand Down
1 change: 1 addition & 0 deletions packages/plugins/rrweb-plugin-console-replay/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
}
},
"files": [
"umd",
"dist",
"package.json"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
}
},
"files": [
"umd",
"dist",
"package.json"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
}
},
"files": [
"umd",
"dist",
"package.json"
],
Expand Down
1 change: 1 addition & 0 deletions packages/record/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
}
},
"files": [
"umd",
"dist",
"package.json"
],
Expand Down
1 change: 1 addition & 0 deletions packages/replay/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
"./dist/style.css": "./dist/style.css"
},
"files": [
"umd",
"dist",
"package.json"
],
Expand Down
1 change: 1 addition & 0 deletions packages/rrdom-nodejs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
}
},
"files": [
"umd",
"dist",
"package.json"
],
Expand Down
1 change: 1 addition & 0 deletions packages/rrdom/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
}
},
"files": [
"umd",
"dist",
"package.json"
],
Expand Down
1 change: 1 addition & 0 deletions packages/rrweb-player/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
"./dist/style.css": "./dist/style.css"
},
"files": [
"umd",
"dist",
"package.json"
],
Expand Down
1 change: 1 addition & 0 deletions packages/rrweb-snapshot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
}
},
"files": [
"umd",
"dist",
"package.json"
],
Expand Down
1 change: 1 addition & 0 deletions packages/rrweb/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
"./dist/style.css": "./dist/style.css"
},
"files": [
"umd",
"dist",
"package.json"
],
Expand Down
1 change: 1 addition & 0 deletions packages/types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
}
},
"files": [
"umd",
"dist",
"package.json"
],
Expand Down
1 change: 1 addition & 0 deletions packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
}
},
"files": [
"umd",
"dist",
"package.json"
],
Expand Down
Loading