Skip to content
Docs
/
Changelog

Changelog

Please visit the lite-embed release page for all history releases.

v1.0.4

Published on Thu May 19 2022.

Bug Fixes 🐛

  • fix: upload all files from dist folder

Full Changelog: https://github.com/danestves/lite-embed/compare/v1.0.3...v1.0.4

v1.0.2

Published on Mon May 09 2022.

What's Changed

Other Changes 🤷‍♂️

  • chore(bump): update dependencies

Full Changelog: https://github.com/danestves/lite-embed/compare/v1.0.1...v1.0.2

v1.0.1

Published on Sat Apr 30 2022.

What's Changed

Documentation Changes 📃

New Contributors

Full Changelog: https://github.com/danestves/lite-embed/compare/v1.0.0...v1.0.1

v1.0.1-canary.0

Published on Thu Apr 28 2022.

What's Changed

Documentation Changes 📃

New Contributors

Full Changelog: https://github.com/danestves/lite-embed/compare/v1.0.0...v1.0.1-canary.0

v1.0.0

Published on Mon Apr 25 2022.

Welcome to the first release of lite-embed 🎉

In this release, we add support for React and Vue to embed YouTube and Vimeo videos on a website without hustle, let me show you some examples 👇 :

React

import { Vimeo, YoutubeLite } from '@lite-embed/react';

export default function App() {
  return (
    <>
      <VimeoLite urlOrId="https://vimeo.com/476064230" />

      <YoutubeLite urlOrId="https://www.youtube.com/watch?v=dQw4w9WgXcQ" />
    </>
  );
}

Vue

<script setup lang="ts">
import { VimeoLite, YoutubeLite } from '@lite-embed/vue';
</script>

<template>
  <div>
    <vimeo-lite url-or-id="https://vimeo.com/476064230"></vimeo-lite>

    <youtube-lite
      url-or-id="https://www.youtube.com/watch?v=dQw4w9WgXcQ"
    ></youtube-lite>
  </div>
</template>

Please visit https://lite-embed.vercel.app/docs to view the full documentation

Full Changelog: https://github.com/danestves/lite-embed/compare/v1.0.0-canary.7...v1.0.0