Skip to content

Commit 362e86e

Browse files
chore(release): version packages (#48)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent d2b1b03 commit 362e86e

File tree

11 files changed

+72
-20
lines changed

11 files changed

+72
-20
lines changed

.changeset/breezy-baths-make.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

example/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# example
2+
3+
## 1.0.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [d2b1b03]
8+

example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "example",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"main": "index.js",
55
"scripts": {
66
"start": "expo start --clear",

packages/core/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @react-native-youtube-bridge/core
22

3+
## 1.0.2
4+
5+
### Patch Changes
6+
7+
- d2b1b03: fix: migrate from bun to pnpm to resolve workspace dependency resolution issues
8+
- Bun changeset publish fails to resolve workspace dependencies
9+
- Migrated from bun to pnpm for stable monorepo workflow
10+
- Updated CI/CD configurations for pnpm compatibility
11+
312
## 1.0.1
413

514
### Patch Changes

packages/core/package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-native-youtube-bridge/core",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "Core package for react-native-youtube-bridge",
55
"main": "dist/index.js",
66
"module": "dist/index.mjs",
@@ -12,7 +12,10 @@
1212
"require": "./dist/index.js"
1313
}
1414
},
15-
"files": ["dist", "package.json"],
15+
"files": [
16+
"dist",
17+
"package.json"
18+
],
1619
"scripts": {
1720
"build": "tsdown",
1821
"typecheck": "tsc --noEmit"

packages/react-native-youtube-bridge/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# react-native-youtube-bridge
22

3+
## 1.0.2
4+
5+
### Patch Changes
6+
7+
- d2b1b03: fix: migrate from bun to pnpm to resolve workspace dependency resolution issues
8+
- Bun changeset publish fails to resolve workspace dependencies
9+
- Migrated from bun to pnpm for stable monorepo workflow
10+
- Updated CI/CD configurations for pnpm compatibility
11+
- Updated dependencies [d2b1b03]
12+
- @react-native-youtube-bridge/core@1.0.2
13+
- @react-native-youtube-bridge/react@1.0.2
14+
315
## 1.0.1
416

517
### Patch Changes

packages/react-native-youtube-bridge/package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-youtube-bridge",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "🎥 Easy-to-use YouTube player for React Native with cross-platform support",
55
"main": "./lib/module/index.js",
66
"types": "./lib/typescript/index.d.ts",
@@ -80,7 +80,9 @@
8080
},
8181
"jest": {
8282
"preset": "react-native",
83-
"modulePathIgnorePatterns": ["<rootDir>/lib/"]
83+
"modulePathIgnorePatterns": [
84+
"<rootDir>/lib/"
85+
]
8486
},
8587
"react-native-builder-bob": {
8688
"source": "src",

packages/react/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @react-native-youtube-bridge/react
22

3+
## 1.0.2
4+
5+
### Patch Changes
6+
7+
- d2b1b03: fix: migrate from bun to pnpm to resolve workspace dependency resolution issues
8+
- Bun changeset publish fails to resolve workspace dependencies
9+
- Migrated from bun to pnpm for stable monorepo workflow
10+
- Updated CI/CD configurations for pnpm compatibility
11+
- Updated dependencies [d2b1b03]
12+
- @react-native-youtube-bridge/core@1.0.2
13+
314
## 1.0.1
415

516
### Patch Changes

packages/react/package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-native-youtube-bridge/react",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "React implementation for react-native-youtube-bridge",
55
"main": "dist/index.js",
66
"module": "dist/index.mjs",
@@ -12,7 +12,10 @@
1212
"require": "./dist/index.js"
1313
}
1414
},
15-
"files": ["dist", "package.json"],
15+
"files": [
16+
"dist",
17+
"package.json"
18+
],
1619
"scripts": {
1720
"build": "tsdown",
1821
"typecheck": "tsc --noEmit"

packages/web/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @react-native-youtube-bridge/web
22

3+
## 1.0.2
4+
5+
### Patch Changes
6+
7+
- d2b1b03: fix: migrate from bun to pnpm to resolve workspace dependency resolution issues
8+
- Bun changeset publish fails to resolve workspace dependencies
9+
- Migrated from bun to pnpm for stable monorepo workflow
10+
- Updated CI/CD configurations for pnpm compatibility
11+
- Updated dependencies [d2b1b03]
12+
- @react-native-youtube-bridge/core@1.0.2
13+
- @react-native-youtube-bridge/react@1.0.2
14+
315
## 1.0.1
416

517
### Patch Changes

0 commit comments

Comments
 (0)