File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -299,7 +299,7 @@ AtRules('finds @font-face', () => {
299299 }`
300300 const actual = analyze ( fixture , {
301301 useUnstableLocations : true
302- } ) . atrules . fontface . __unstable_uniqueWithLocations
302+ } ) . atrules . fontface . __unstable__uniqueWithLocations
303303 const expected = {
304304 5 : [ {
305305 line : 2 ,
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ export function analyze(css, options = {}) {
9999 // Atrules
100100 let totalAtRules = 0
101101 let atRuleComplexities = new AggregateCollection ( )
102- /** @type {Record<string: string> } []} */
102+ /** @type {Record<string, string>[] } */
103103 let fontfaces = [ ]
104104 let fontfaces_with_loc = new Collection ( useLocations )
105105 let layers = new Collection ( useLocations )
@@ -691,7 +691,7 @@ export function analyze(css, options = {}) {
691691 unique : fontfaces ,
692692 uniquenessRatio : fontFacesCount === 0 ? 0 : 1 ,
693693 } , useLocations ? {
694- __unstable_uniqueWithLocations : fontfaces_with_loc . c ( ) . __unstable__uniqueWithLocations ,
694+ __unstable__uniqueWithLocations : fontfaces_with_loc . c ( ) . __unstable__uniqueWithLocations ,
695695 } : { } ) ,
696696 import : imports . c ( ) ,
697697 media : assign (
You can’t perform that action at this time.
0 commit comments