You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat!: rename package from @triyanox/react-video to video-kit
BREAKING CHANGE: Package has been renamed from @triyanox/react-video to video-kit
This is a major version bump (v1.0.0) that renames the package for better
discoverability and removes the scope prefix.
Changes:
- Renamed package from @triyanox/react-video to video-kit
- Updated repository URLs from triyanox/react-video to chaqchase/video-kit
- Updated homepage from react-video.achaq.dev to video-kit.chaqchase.com
- Updated all import statements and documentation
- Set up changeset for automated publishing
- Updated GitHub Actions workflow for release automation
Migration:
Users should:
1. Uninstall: npm uninstall @triyanox/react-video
2. Install: npm install video-kit
3. Update imports: Change '@triyanox/react-video' to 'video-kit'
The old package will be deprecated on npm with a migration notice.
The `@triyanox/react-video` component is a highly customizable and easy-to-use React component for playing video content in your react applications inspired by apple tv video player. It offers extensive control over video playback and is fully compatible with TailwindCSS, allowing for seamless styling integration.
8
+
The `video-kit` component is a highly customizable and easy-to-use React component for playing video content in your react applications inspired by apple tv video player. It offers extensive control over video playback and is fully compatible with TailwindCSS, allowing for seamless styling integration.
9
9
10
10
## Installation
11
11
12
12
To install the component, use the following command:
13
13
14
14
```bash
15
-
pnpm add @triyanox/react-video
15
+
npm install video-kit
16
+
# or
17
+
pnpm add video-kit
18
+
# or
19
+
yarn add video-kit
16
20
```
17
21
18
22
## Usage
@@ -22,7 +26,7 @@ pnpm add @triyanox/react-video
22
26
You can use the video component simply by importing `Video` from the package
23
27
24
28
```tsx
25
-
import { Video } from"@triyanox/react-video";
29
+
import { Video } from"video-kit";
26
30
27
31
exportdefaultfunction Page() {
28
32
return (
@@ -81,7 +85,7 @@ You can use the video component simply by importing `Video` from the package
81
85
82
86
```javascript
83
87
importReactfrom 'react';
84
-
import { Video } from'@triyanox/react-video';
88
+
import { Video } from'video-kit';
85
89
86
90
// Import custom icons (assuming these are available in your project)
Copy file name to clipboardExpand all lines: packages/core/README.md
+9-5Lines changed: 9 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,19 @@
1
-
# `@triyanox/react-video` a unified customizable video playback experience across all browsers for react
1
+
# `video-kit` a unified customizable video playback experience across all browsers for react
2
2
3
3
## Introduction
4
4
5
-
The `@triyanox/react-video` component is a highly customizable and easy-to-use React component for playing video content in your react applications inspired by apple tv video player. It offers extensive control over video playback and is fully compatible with TailwindCSS, allowing for seamless styling integration.
5
+
The `video-kit` component is a highly customizable and easy-to-use React component for playing video content in your react applications inspired by apple tv video player. It offers extensive control over video playback and is fully compatible with TailwindCSS, allowing for seamless styling integration.
6
6
7
7
## Installation
8
8
9
9
To install the component, use the following command:
10
10
11
11
```bash
12
-
pnpm add @triyanox/react-video
12
+
npm install video-kit
13
+
# or
14
+
pnpm add video-kit
15
+
# or
16
+
yarn add video-kit
13
17
```
14
18
15
19
## Usage
@@ -19,7 +23,7 @@ pnpm add @triyanox/react-video
19
23
You can use the video component simply by importing `Video` from the package
20
24
21
25
```tsx
22
-
import { Video } from"@triyanox/react-video";
26
+
import { Video } from"video-kit";
23
27
24
28
exportdefaultfunction Page() {
25
29
return (
@@ -78,7 +82,7 @@ You can use the video component simply by importing `Video` from the package
78
82
79
83
```javascript
80
84
importReactfrom 'react';
81
-
import { Video } from'@triyanox/react-video';
85
+
import { Video } from'video-kit';
82
86
83
87
// Import custom icons (assuming these are available in your project)
0 commit comments