Skip to content

Commit 2a718cf

Browse files
author
Herve Tribouilloy
committed
Added css stylesheet to the workflow
1 parent 7dbf9bf commit 2a718cf

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,5 @@ jobs:
5454
rsync -av \
5555
--chown=www-data:www-data \
5656
www/widget-usp@${VERSION}.iife.js* \
57+
mv www/widget/usp.css www/widget-usp@${VERSION}.css
5758
${{ secrets.WIDGET_SSH_USER }}@${{ secrets.WIDGET_SSH_HOST }}:/var/www/widgets/usp/

vite_project/src/lib/keyboard.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
type KeyboardAction = (event: React.KeyboardEvent<HTMLButtonElement>) => void;
2-
31
export function handleArrowButtonKeyDown(
42
event: React.KeyboardEvent<HTMLButtonElement>,
53
action: () => void,

vite_project/src/types/global.d.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
export {};
2+
3+
declare global {
4+
interface Window {
5+
__REACTEDGE_DEBUG__?: boolean;
6+
}
7+
}

0 commit comments

Comments
 (0)