Skip to content

Commit

Permalink
Merge pull request #28 from ahmedazizabbassi/develop
Browse files Browse the repository at this point in the history
Improve the development instructions in docs
  • Loading branch information
braiekhazem authored May 21, 2024
2 parents 7230c3c + 4b207c1 commit 2027517
Show file tree
Hide file tree
Showing 175 changed files with 52 additions and 49 deletions.
Empty file modified .github/workflows/deploy.yml
100644 → 100755
Empty file.
Empty file modified .gitignore
100644 → 100755
Empty file.
Empty file modified Dockerfile
100644 → 100755
Empty file.
Empty file modified LICENSE
100644 → 100755
Empty file.
Empty file modified Makefile
100644 → 100755
Empty file.
97 changes: 50 additions & 47 deletions README.md
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -66,63 +66,63 @@ export default MyVideoPlayer;
| shift + N | Previous video |
| shift + D | Download |
| shift + S | Screenshot |
| | Rewind |
| | Forward |
| | Volume up |
| | Volume down |
|| Rewind |
|| Forward |
|| Volume up |
|| Volume down |
| M | Toggle mute |
| F | Toggle fullscreen |

## 🛠️ Props

### 🏷️ HTML Video Tag Native Attributes

| Props | Type | Default | Note |
| ----------- | ------------------------------ | ----------- | ---- |
| src | string \| string[] | '' | |
| preload | 'auto' \| 'metadata' \| 'none' | 'auto' | |
| autoPlay | boolean | false |
| loop | boolean | false | |
| muted | boolean | false | |
| volume | number | 1.0 |
| crossOrigin | string | 'anonymous' | |
| Props | Type | Default | Note |
| ----------- | ----------------------------- | ----------- | ---- |
| src | string\| string[] | '' | |
| preload | 'auto'\| 'metadata' \| 'none' | 'auto' | |
| autoPlay | boolean | false | |
| loop | boolean | false | |
| muted | boolean | false | |
| volume | number | 1.0 | |
| crossOrigin | string | 'anonymous' | |

##### More attributes details : [Vidify props attributes](https://github.com/braiekhazem/Vidify/blob/main/src/components/VideoPlayer/%40types.ts#L19)

### 🛠️ Vidify Props

| Prop | Type | Description |
| --------------- | --------------------------------------------------- | --------------------------------------------------------------------------------- |
| src | string \| string[] | The source(s) of the video file(s). |
| defaultSrcIndex | number | The index of the default source to play. |
| startTime | number | The time (in seconds) to start playing the video from. |
| children | React.ReactNode | Child elements to be rendered within the video player component. |
| className | string | Additional CSS class(es) to apply to the video player component. |
| id | string | The unique identifier of the video player component. |
| primaryColor | string | The primary color used for styling the video player interface. |
| annotation | ReactNode | Additional content (such as text or icons) to be displayed on the video player. |
| annotationStyle | CSSProperties | CSS styles to apply to the annotation content. |
| width | string | The width of the video player. |
| height | string | The height of the video player. |
| durationType | "remainingTime" \| "default" | The type of duration display for the video player. |
| placeholder | string | The URL of an image to display as a placeholder before the video loads. |
| title | string | The title of the video player. |
| style | CSSProperties | Custom CSS styles to apply to the video player. |
| controller | contextmenu \| boolean \| contextmenuRender | Configurations for the control bar of the video player. |
| volume | number | The volume level of the video player (0 to 1). |
| paused | boolean | Whether the video is paused or not. |
| poster | string | The URL of an image to display as the video poster. |
| thumbnail | string | The URL of an image to display as the video thumbnail. |
| autoPlay | boolean | Whether the video should automatically start playing when loaded. |
| playbackRate | number | The playback rate of the video (e.g., 1 for normal speed, 2 for double speed). |
| playsInline | boolean | Whether the video should play inline (e.g., in the same layout as other content). |
| preload | string | Specifies how the video should be loaded when the page loads. |
| crossOrigin | "anonymous" \| "use-credentials" \| "" \| undefined | The CORS setting for the video resource. |
| loop | boolean | Whether the video should loop playback. |
| muted | boolean | Whether the video should be muted. |
| containerRef | React.Ref<any> | Reference to the container element of the video player. |
| block | boolean | Whether the video player should be displayed full width or not. |
| rounded | boolean |
| Prop | Type | Description |
| --------------- | -------------------------------------------------- | --------------------------------------------------------------------------------- |
| src | string\| string[] | The source(s) of the video file(s). |
| defaultSrcIndex | number | The index of the default source to play. |
| startTime | number | The time (in seconds) to start playing the video from. |
| children | React.ReactNode | Child elements to be rendered within the video player component. |
| className | string | Additional CSS class(es) to apply to the video player component. |
| id | string | The unique identifier of the video player component. |
| primaryColor | string | The primary color used for styling the video player interface. |
| annotation | ReactNode | Additional content (such as text or icons) to be displayed on the video player. |
| annotationStyle | CSSProperties | CSS styles to apply to the annotation content. |
| width | string | The width of the video player. |
| height | string | The height of the video player. |
| durationType | "remainingTime"\| "default" | The type of duration display for the video player. |
| placeholder | string | The URL of an image to display as a placeholder before the video loads. |
| title | string | The title of the video player. |
| style | CSSProperties | Custom CSS styles to apply to the video player. |
| controller | contextmenu\| boolean \| contextmenuRender | Configurations for the control bar of the video player. |
| volume | number | The volume level of the video player (0 to 1). |
| paused | boolean | Whether the video is paused or not. |
| poster | string | The URL of an image to display as the video poster. |
| thumbnail | string | The URL of an image to display as the video thumbnail. |
| autoPlay | boolean | Whether the video should automatically start playing when loaded. |
| playbackRate | number | The playback rate of the video (e.g., 1 for normal speed, 2 for double speed). |
| playsInline | boolean | Whether the video should play inline (e.g., in the same layout as other content). |
| preload | string | Specifies how the video should be loaded when the page loads. |
| crossOrigin | "anonymous"\| "use-credentials" \| "" \| undefined | The CORS setting for the video resource. |
| loop | boolean | Whether the video should loop playback. |
| muted | boolean | Whether the video should be muted. |
| containerRef | React.Ref`<any>` | Reference to the container element of the video player. |
| block | boolean | Whether the video player should be displayed full width or not. |
| rounded | boolean | |

### 🎉 Event Props

Expand Down Expand Up @@ -278,13 +278,16 @@ Your support is greatly appreciated! ☕️❤️
```bash
$ git clone https://github.com/braiekhazem/Vidify.git
$ cd vidify
$ npm install
$ npm install # dependencies for package
$ cd demo
$ npm install # dependencies for demo site
$ cd ..
$ npm run dev # for running the development server
# OR
$ npm run demo # for running the demo
```
Open your browser and visit http://localhost:3000 .
Open your browser and visit [http://localhost:3000]().
## 🤝 How to Contribute
Expand Down
Empty file modified assets/logo.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified demo/app/App.tsx
100644 → 100755
Empty file.
Empty file modified demo/app/_App.scss
100644 → 100755
Empty file.
Empty file modified demo/app/_index.scss
100644 → 100755
Empty file.
Empty file modified demo/assets/by-me-coffee.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified demo/assets/code.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified demo/assets/github.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified demo/assets/linkedin.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified demo/assets/loader.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified demo/assets/navigate.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified demo/assets/star.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified demo/components/DemoBox/@types.ts
100644 → 100755
Empty file.
Empty file modified demo/components/DemoBox/DemoBox.tsx
100644 → 100755
Empty file.
Empty file modified demo/components/DemoBox/_DemoBox.scss
100644 → 100755
Empty file.
Empty file modified demo/components/DemoBox/_index.scss
100644 → 100755
Empty file.
Empty file modified demo/components/DemoBox/index.ts
100644 → 100755
Empty file.
Empty file modified demo/components/Header/@types.ts
100644 → 100755
Empty file.
Empty file modified demo/components/Header/Header.tsx
100644 → 100755
Empty file.
Empty file modified demo/components/Header/_Header.scss
100644 → 100755
Empty file.
Empty file modified demo/components/Header/_index.scss
100644 → 100755
Empty file.
Empty file modified demo/components/Header/index.ts
100644 → 100755
Empty file.
Empty file modified demo/components/_index.scss
100644 → 100755
Empty file.
Empty file modified demo/demo.tsx
100644 → 100755
Empty file.
Empty file modified demo/index.html
100644 → 100755
Empty file.
Empty file modified demo/package.json
100644 → 100755
Empty file.
Empty file modified demo/tsconfig.json
100644 → 100755
Empty file.
Empty file modified demo/tsconfig.node.json
100644 → 100755
Empty file.
Empty file modified demo/utils/generateCode.ts
100644 → 100755
Empty file.
Empty file modified demo/vite-env.d.ts
100644 → 100755
Empty file.
Empty file modified demo/vite.config.ts
100644 → 100755
Empty file.
Empty file modified docker-compose.yml
100644 → 100755
Empty file.
Empty file modified index.html
100644 → 100755
Empty file.
Empty file modified nginx.conf
100644 → 100755
Empty file.
4 changes: 2 additions & 2 deletions package-lock.json
100644 → 100755

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Empty file modified package.json
100644 → 100755
Empty file.
Empty file modified public/2f91197ad4ce4a078f723019694803ae.jpeg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/locales/ar/sidebar.json
100644 → 100755
Empty file.
Empty file modified public/locales/ar/translation.json
100644 → 100755
Empty file.
Empty file modified public/locales/en/sidebar.json
100644 → 100755
Empty file.
Empty file modified public/locales/en/translation.json
100644 → 100755
Empty file.
Empty file modified public/locales/fr/sidebar.json
100644 → 100755
Empty file.
Empty file modified public/locales/fr/translation.json
100644 → 100755
Empty file.
Empty file modified public/vite.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified scripts/create-component.sh
100644 → 100755
Empty file.
Empty file modified src/components/ArrowNavigation/@types.ts
100644 → 100755
Empty file.
Empty file modified src/components/ArrowNavigation/ArrowNavigation.tsx
100644 → 100755
Empty file.
Empty file modified src/components/ArrowNavigation/_ArrowNavigation.scss
100644 → 100755
Empty file.
Empty file modified src/components/ArrowNavigation/_index.scss
100644 → 100755
Empty file.
Empty file modified src/components/ArrowNavigation/index.ts
100644 → 100755
Empty file.
Empty file modified src/components/ControlIcon/@types.ts
100644 → 100755
Empty file.
Empty file modified src/components/ControlIcon/ControlIcon.tsx
100644 → 100755
Empty file.
Empty file modified src/components/ControlIcon/_ControlIcon.scss
100644 → 100755
Empty file.
Empty file modified src/components/ControlIcon/_index.scss
100644 → 100755
Empty file.
Empty file modified src/components/ControlIcon/index.ts
100644 → 100755
Empty file.
Empty file modified src/components/ControlsBar/@types.ts
100644 → 100755
Empty file.
Empty file modified src/components/ControlsBar/ControlsBar.tsx
100644 → 100755
Empty file.
Empty file modified src/components/ControlsBar/_ControlsBar.scss
100644 → 100755
Empty file.
Empty file modified src/components/ControlsBar/_index.scss
100644 → 100755
Empty file.
Empty file modified src/components/ControlsBar/index.ts
100644 → 100755
Empty file.
Empty file modified src/components/Download/@types.ts
100644 → 100755
Empty file.
Empty file modified src/components/Download/Download.tsx
100644 → 100755
Empty file.
Empty file modified src/components/Download/_Download.scss
100644 → 100755
Empty file.
Empty file modified src/components/Download/_index.scss
100644 → 100755
Empty file.
Empty file modified src/components/Download/index.ts
100644 → 100755
Empty file.
Empty file modified src/components/FullScreen/@types.ts
100644 → 100755
Empty file.
Empty file modified src/components/FullScreen/FullScreen.tsx
100644 → 100755
Empty file.
Empty file modified src/components/FullScreen/_FullScreen.scss
100644 → 100755
Empty file.
Empty file modified src/components/FullScreen/_index.scss
100644 → 100755
Empty file.
Empty file modified src/components/FullScreen/index.ts
100644 → 100755
Empty file.
Empty file modified src/components/MiniPlayer/@types.ts
100644 → 100755
Empty file.
Empty file modified src/components/MiniPlayer/MiniPlayer.tsx
100644 → 100755
Empty file.
Empty file modified src/components/MiniPlayer/_MiniPlayer.scss
100644 → 100755
Empty file.
Empty file modified src/components/MiniPlayer/_index.scss
100644 → 100755
Empty file.
Empty file modified src/components/MiniPlayer/index.ts
100644 → 100755
Empty file.
Empty file modified src/components/PlayButton/@types.ts
100644 → 100755
Empty file.
Empty file modified src/components/PlayButton/PlayButton.tsx
100644 → 100755
Empty file.
Empty file modified src/components/PlayButton/_PlayButton.scss
100644 → 100755
Empty file.
Empty file modified src/components/PlayButton/_index.scss
100644 → 100755
Empty file.
Empty file modified src/components/PlayButton/index.ts
100644 → 100755
Empty file.
Empty file modified src/components/ProgressBar/@types.ts
100644 → 100755
Empty file.
Empty file modified src/components/ProgressBar/ProgressBar.tsx
100644 → 100755
Empty file.
Empty file modified src/components/ProgressBar/_ProgressBar.scss
100644 → 100755
Empty file.
Empty file modified src/components/ProgressBar/_index.scss
100644 → 100755
Empty file.
Empty file modified src/components/ProgressBar/index.ts
100644 → 100755
Empty file.
Empty file modified src/components/Screenshot/@types.ts
100644 → 100755
Empty file.
Empty file modified src/components/Screenshot/Screenshot.tsx
100644 → 100755
Empty file.
Empty file modified src/components/Screenshot/_Screenshot.scss
100644 → 100755
Empty file.
Empty file modified src/components/Screenshot/_index.scss
100644 → 100755
Empty file.
Empty file modified src/components/Screenshot/index.ts
100644 → 100755
Empty file.
Empty file modified src/components/SecondsForward/@types.ts
100644 → 100755
Empty file.
Empty file modified src/components/SecondsForward/SecondsForward.tsx
100644 → 100755
Empty file.
Empty file modified src/components/SecondsForward/_SecondsForward.scss
100644 → 100755
Empty file.
Empty file modified src/components/SecondsForward/_index.scss
100644 → 100755
Empty file.
Empty file modified src/components/SecondsForward/index.ts
100644 → 100755
Empty file.
Empty file modified src/components/Settings/@types.ts
100644 → 100755
Empty file.
Empty file modified src/components/Settings/Settings.tsx
100644 → 100755
Empty file.
Empty file modified src/components/Settings/_Settings.scss
100644 → 100755
Empty file.
Empty file modified src/components/Settings/_index.scss
100644 → 100755
Empty file.
Empty file modified src/components/Settings/index.ts
100644 → 100755
Empty file.
Empty file modified src/components/SoundIcon/@types.ts
100644 → 100755
Empty file.
Empty file modified src/components/SoundIcon/SoundIcon.tsx
100644 → 100755
Empty file.
Empty file modified src/components/SoundIcon/_SoundIcon.scss
100644 → 100755
Empty file.
Empty file modified src/components/SoundIcon/_index.scss
100644 → 100755
Empty file.
Empty file modified src/components/SoundIcon/index.ts
100644 → 100755
Empty file.
Empty file modified src/components/Speed/@types.ts
100644 → 100755
Empty file.
Empty file modified src/components/Speed/Speed.tsx
100644 → 100755
Empty file.
Empty file modified src/components/Speed/_Speed.scss
100644 → 100755
Empty file.
Empty file modified src/components/Speed/_index.scss
100644 → 100755
Empty file.
Empty file modified src/components/Speed/index.ts
100644 → 100755
Empty file.
Empty file modified src/components/Subtitle/@types.ts
100644 → 100755
Empty file.
Empty file modified src/components/Subtitle/Subtitle.tsx
100644 → 100755
Empty file.
Empty file modified src/components/Subtitle/_Subtitle.scss
100644 → 100755
Empty file.
Empty file modified src/components/Subtitle/_index.scss
100644 → 100755
Empty file.
Empty file modified src/components/Subtitle/index.ts
100644 → 100755
Empty file.
Empty file modified src/components/VideoPlayer/@types.ts
100644 → 100755
Empty file.
Empty file modified src/components/VideoPlayer/VideoPlayer.tsx
100644 → 100755
Empty file.
Empty file modified src/components/VideoPlayer/index.ts
100644 → 100755
Empty file.
Empty file modified src/components/VideoPlayer/styles/_VideoPlayer.scss
100644 → 100755
Empty file.
Empty file modified src/components/VideoPlayer/styles/_index.scss
100644 → 100755
Empty file.
Empty file modified src/components/VideoPlayer/styles/index.ts
100644 → 100755
Empty file.
Empty file modified src/components/Wrapper/@types.ts
100644 → 100755
Empty file.
Empty file modified src/components/Wrapper/Wrapper.tsx
100644 → 100755
Empty file.
Empty file modified src/components/Wrapper/_Wrapper.scss
100644 → 100755
Empty file.
Empty file modified src/components/Wrapper/_index.scss
100644 → 100755
Empty file.
Empty file modified src/components/Wrapper/index.ts
100644 → 100755
Empty file.
Empty file modified src/global/_index.scss
100644 → 100755
Empty file.
Empty file modified src/global/assets/icons/arrowNavigation/next.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified src/global/assets/icons/arrowNavigation/previous.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified src/global/assets/icons/download/download.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified src/global/assets/icons/fullscreen/cancel-fullscreen.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified src/global/assets/icons/fullscreen/fullscreen.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified src/global/assets/icons/loading/spinner.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified src/global/assets/icons/miniPlayer/miniPlayer.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified src/global/assets/icons/screenshot/screenshot.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified src/global/assets/icons/secondsForward/next5-seconds.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified src/global/assets/icons/secondsForward/prev5-seconds.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified src/global/assets/icons/settings/Settings.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified src/global/assets/icons/subtitle/inactive-subtitle.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified src/global/assets/icons/subtitle/subtitle.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified src/global/assets/icons/volume/Medium.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified src/global/assets/icons/volume/Mute.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified src/global/assets/icons/volume/Sound.svg
100644 → 100755
Empty file modified src/global/assets/styles/abstracts/_breakpoints.scss
100644 → 100755
Empty file.
Empty file modified src/global/assets/styles/abstracts/_colors.scss
100644 → 100755
Empty file.
Empty file modified src/global/assets/styles/abstracts/_functions.scss
100644 → 100755
Empty file.
Empty file modified src/global/assets/styles/abstracts/_index.scss
100644 → 100755
Empty file.
Empty file modified src/global/assets/styles/abstracts/_mixins.scss
100644 → 100755
Empty file.
Empty file modified src/global/assets/styles/abstracts/_padding.scss
100644 → 100755
Empty file.
Empty file modified src/global/assets/styles/abstracts/_variables.scss
100644 → 100755
Empty file.
Empty file modified src/global/assets/styles/base/_index.scss
100644 → 100755
Empty file.
Empty file modified src/global/theme-default.scss
100644 → 100755
Empty file.
Empty file modified src/hooks/useRefDimensions.ts
100644 → 100755
Empty file.
Empty file modified src/hooks/useWindowSize.ts
100644 → 100755
Empty file.
Empty file modified src/index.ts
100644 → 100755
Empty file.
Empty file modified src/utils/concatPrefixCls.ts
100644 → 100755
Empty file.
Empty file modified src/utils/downloadFile.ts
100644 → 100755
Empty file.
Empty file modified src/utils/formatDurationTime.ts
100644 → 100755
Empty file.
Empty file modified src/utils/getAllowedControlBarItems.ts
100644 → 100755
Empty file.
Empty file modified src/utils/getPercentage.ts
100644 → 100755
Empty file.
Empty file modified src/utils/getPrefixCls.ts
100644 → 100755
Empty file.
Empty file modified src/utils/getVideoSrc.ts
100644 → 100755
Empty file.
Empty file modified src/utils/managePlayerKeyDown.ts
100644 → 100755
Empty file.
Empty file modified src/utils/mergeRefs.ts
100644 → 100755
Empty file.
Empty file modified src/utils/playerManager.ts
100644 → 100755
Empty file.
Empty file modified src/utils/syncStateWithVideo.ts
100644 → 100755
Empty file.
Empty file modified src/vite-env.d.ts
100644 → 100755
Empty file.
Empty file modified tsconfig.json
100644 → 100755
Empty file.
Empty file modified tsconfig.node.json
100644 → 100755
Empty file.
Empty file modified vite.config.ts
100644 → 100755
Empty file.

0 comments on commit 2027517

Please sign in to comment.