Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
8 changes: 8 additions & 0 deletions .changeset/curly-pots-try.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
"react-native-youtube-bridge": major
---

feat(react-native): 🎉 Release react-native-youtube-bridge v1.0.0
- Released v1.0.0 after completing essential features and confirming stable operation.
- Migrated the entire project to a monorepo structure without any functional changes. (`@react-native-youtube-bridge/core`, `@react-native-youtube-bridge/react`, `@react-native-youtube-bridge/web`, `react-native-youtube-bridge`)
- New feature: Added the ability to build custom web players using `@react-native-youtube-bridge/web`. For detailed usage instructions, please refer to the [Web Player Guide](https://github.com/react-native-bridges/react-native-youtube-bridge/tree/main/packages/web).
6 changes: 6 additions & 0 deletions .changeset/petite-monkeys-grin.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@react-native-youtube-bridge/web": major
---

feat(web): 🎉 Initial Release @react-native-youtube-bridge/web v1.0.0
- This library is useful when you want to implement external WebView functionality through custom web pages for playing YouTube videos in React Native applications.
6 changes: 6 additions & 0 deletions .changeset/small-moose-beam.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@react-native-youtube-bridge/core": major
---

feat(core): 🎉 Initial Release @react-native-youtube-bridge/core v1.0.0
- `@react-native-youtube-bridge/core` is a shared core utility package used commonly across `react-native-youtube-bridge`.
6 changes: 6 additions & 0 deletions .changeset/sweet-keys-swim.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@react-native-youtube-bridge/react": major
---

feat(react): 🎉 Initial Release @react-native-youtube-bridge/react v1.0.0
- `@react-native-youtube-bridge/react` is a shared React utility package used commonly across `react-native-youtube-bridge`.
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ jobs:
- name: Install Dependencies
run: bun install --frozen-lockfile

- name: Build
run: bun run build

- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
Expand Down
8 changes: 2 additions & 6 deletions packages/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,10 @@
"name": "@react-native-youtube-bridge/web",
"version": "0.0.1",
"description": "Web implementation for react-native-youtube-bridge",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"main": "dist/web.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
"import": "./dist/web.mjs"
}
},
"files": ["dist", "package.json"],
Expand Down