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
49 changes: 47 additions & 2 deletions package-lock.json

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

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@saebyn/glowing-telegram-video-editor",
"description": "A video editor component for glowing-telegram",
"version": "0.1.2",
"version": "0.1.3",
"license": "AGPL-3.0-only",
"author": "saebynx@gmail.com",
"repository": {
Expand Down Expand Up @@ -45,6 +45,7 @@
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@chromatic-com/storybook": "^3.2.4",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
Expand Down
5 changes: 3 additions & 2 deletions rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import typescript from '@rollup/plugin-typescript';
import json from '@rollup/plugin-json';
import postcss from 'rollup-plugin-postcss';
import nodeResolve from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import tailwindcss from 'tailwindcss';
import tailwindConfig from './tailwind.config.mjs';

Expand All @@ -12,7 +13,7 @@ const rollupConfig = {
input: 'src/index.ts',

jsx: true,

external: ['react', 'react-dom'],
output: {
dir: 'dist',
format: 'esm',
Expand All @@ -27,8 +28,8 @@ const rollupConfig = {
},
}),
nodeResolve({
resolveOnly: ['tailwindcss', 'hls.js'],
}),
commonjs(),
json(),
postcss({
config: {
Expand Down
Loading