Skip to content

Commit

Permalink
Merge pull request #8 from Applelo/dev
Browse files Browse the repository at this point in the history
Version 1.1.4
  • Loading branch information
Applelo authored Dec 7, 2023
2 parents ce5028e + 395b971 commit d448177
Show file tree
Hide file tree
Showing 15 changed files with 957 additions and 1,327 deletions.
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

0 comments on commit d448177

Please sign in to comment.