Skip to content

Commit e16eda8

Browse files
committed
chore: prettify
1 parent 98b1897 commit e16eda8

File tree

4 files changed

+7
-56
lines changed

4 files changed

+7
-56
lines changed

.github/publish-ci/vite/yarn.lock

Lines changed: 4 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# This file is generated by running "yarn install" inside your project.
2+
# Manual changes might be lost - proceed with caution!
3+
14
__metadata:
25
version: 6
36
cacheKey: 8
@@ -1797,7 +1800,7 @@ __metadata:
17971800
react: 18.3.1
17981801
react-dom: 18.3.1
17991802
typescript: 4.9.5
1800-
vite: 5.4.11
1803+
vite: 6.0.7
18011804
languageName: unknown
18021805
linkType: soft
18031806

@@ -2011,58 +2014,6 @@ __metadata:
20112014
languageName: node
20122015
linkType: hard
20132016

2014-
"vite@npm:5.4.11":
2015-
version: 5.4.11
2016-
resolution: "vite@npm:5.4.11"
2017-
dependencies:
2018-
esbuild: ^0.24.2
2019-
fsevents: ~2.3.3
2020-
postcss: ^8.4.49
2021-
rollup: ^4.23.0
2022-
peerDependencies:
2023-
"@types/node": ^18.0.0 || ^20.0.0 || >=22.0.0
2024-
jiti: ">=1.21.0"
2025-
less: "*"
2026-
lightningcss: ^1.21.0
2027-
sass: "*"
2028-
sass-embedded: "*"
2029-
stylus: "*"
2030-
sugarss: "*"
2031-
terser: ^5.16.0
2032-
tsx: ^4.8.1
2033-
yaml: ^2.4.2
2034-
dependenciesMeta:
2035-
fsevents:
2036-
optional: true
2037-
peerDependenciesMeta:
2038-
"@types/node":
2039-
optional: true
2040-
jiti:
2041-
optional: true
2042-
less:
2043-
optional: true
2044-
lightningcss:
2045-
optional: true
2046-
sass:
2047-
optional: true
2048-
sass-embedded:
2049-
optional: true
2050-
stylus:
2051-
optional: true
2052-
sugarss:
2053-
optional: true
2054-
terser:
2055-
optional: true
2056-
tsx:
2057-
optional: true
2058-
yaml:
2059-
optional: true
2060-
bin:
2061-
vite: bin/vite.js
2062-
checksum: 8c5b31d17487b69c40a30419dc0ade9f33360eb6893dbfa33a90980271bd74d35ae550b5cbb2a9e640f0df41ea36fd1bb4f222c98f6d02e607080f20832e69e8
2063-
languageName: node
2064-
linkType: hard
2065-
20662017
"vite@npm:6.0.7":
20672018
version: 6.0.7
20682019
resolution: "vite@npm:6.0.7"

packages/animated/src/AnimatedArray.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ type Source = AnimatedValue<Value>[]
1010
export class AnimatedArray<
1111
T extends ReadonlyArray<Value> = Value[],
1212
> extends AnimatedObject {
13-
protected declare source: Source
13+
declare protected source: Source
1414
constructor(source: T) {
1515
super(source)
1616
}

packages/animated/src/AnimatedString.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { is, createInterpolator } from '@react-spring/shared'
44
type Value = string | number
55

66
export class AnimatedString extends AnimatedValue<Value> {
7-
protected declare _value: number
7+
declare protected _value: number
88
protected _string: string | null = null
99
protected _toString: (input: number) => string
1010

targets/native/src/AnimatedTransform.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ type Transform = { [key: string]: string | number | Animated }
66
type Source = Transform[]
77

88
export class AnimatedTransform extends AnimatedObject {
9-
protected declare source: Source
9+
declare protected source: Source
1010
constructor(source: Source) {
1111
super(source)
1212
}

0 commit comments

Comments
 (0)