Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 1.1.4 #8

Merged
merged 2 commits into from
Dec 7, 2023
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
3 changes: 0 additions & 3 deletions .eslintrc

This file was deleted.

12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
cypress:
runs-on: ubuntu-latest
name: 'Cypress: node-18, ubuntu-latest'
name: 'Cypress: node-20, ubuntu-latest'

steps:
- uses: actions/checkout@v3
Expand All @@ -21,10 +21,10 @@ jobs:
with:
version: 8

- name: Set node version to 18
- name: Set node version to 20
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
# cache: pnpm

# - name: Cache Cypress binary
Expand All @@ -44,7 +44,7 @@ jobs:

lint:
runs-on: ubuntu-latest
name: 'Lint: node-18, ubuntu-latest'
name: 'Lint: node-20, ubuntu-latest'

steps:
- uses: actions/checkout@v3
Expand All @@ -55,10 +55,10 @@ jobs:
with:
version: 8

- name: Set node version to 18
- name: Set node version to 20
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
cache: pnpm

- name: Install
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,7 @@ The Blottie component exposes all [lottie events](https://github.com/airbnb/lott
```ts
import type { AnimationItem, LottiePlayer } from 'lottie-web'

function onFrame(anim?: AnimationItem,
lottie?: LottiePlayer,
container?: HTMLElement) {
function onFrame(anim?: AnimationItem, lottie?: LottiePlayer, container?: HTMLElement) {
frame.value = Math.round(anim ? anim.currentFrame : 0)
}
```
Expand Down
2 changes: 1 addition & 1 deletion cypress/support/component.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* eslint-disable @typescript-eslint/no-namespace */
/* eslint-disable ts/no-namespace */
// ***********************************************************
// This example support/component.ts is processed and
// loaded automatically before your test files.
Expand Down
10 changes: 5 additions & 5 deletions demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
"preview": "vite preview"
},
"dependencies": {
"vue": "^3.3.4"
"vue": "^3.3.10"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.3.4",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vue-tsc": "^1.8.11"
"@vitejs/plugin-vue": "^4.5.2",
"typescript": "^5.3.3",
"vite": "^4.5.1",
"vue-tsc": "^1.8.25"
}
}
Loading