@@ -543,85 +543,85 @@ $assets: (
543
543
SassPartial . register ( 'mixins-dir' , {
544
544
pattern : / m i x i n s \/ _ r e a c t i u m - s t y l e / ,
545
545
exclude : false ,
546
- order : ReactiumGulp . Enums . style . MIXINS ,
546
+ priority : ReactiumGulp . Enums . style . MIXINS ,
547
547
} ) ;
548
548
549
549
SassPartial . register ( 'mixins-ddd' , {
550
550
pattern : / _ r e a c t i u m - s t y l e - m i x i n s / ,
551
551
exclude : false ,
552
- order : ReactiumGulp . Enums . style . MIXINS ,
552
+ priority : ReactiumGulp . Enums . style . MIXINS ,
553
553
} ) ;
554
554
555
555
SassPartial . register ( 'variables-dir' , {
556
556
pattern : / v a r i a b l e s \/ _ r e a c t i u m - s t y l e / ,
557
557
exclude : false ,
558
- order : ReactiumGulp . Enums . style . VARIABLES ,
558
+ priority : ReactiumGulp . Enums . style . VARIABLES ,
559
559
} ) ;
560
560
561
561
SassPartial . register ( 'variables-ddd' , {
562
562
pattern : / _ r e a c t i u m - s t y l e - v a r i a b l e s / ,
563
563
exclude : false ,
564
- order : ReactiumGulp . Enums . style . VARIABLES ,
564
+ priority : ReactiumGulp . Enums . style . VARIABLES ,
565
565
} ) ;
566
566
567
567
SassPartial . register ( 'base-dir' , {
568
568
pattern : / b a s e \/ _ r e a c t i u m - s t y l e / ,
569
569
exclude : false ,
570
- order : ReactiumGulp . Enums . style . BASE ,
570
+ priority : ReactiumGulp . Enums . style . BASE ,
571
571
} ) ;
572
572
573
573
SassPartial . register ( 'base-ddd' , {
574
574
pattern : / _ r e a c t i u m - s t y l e - b a s e / ,
575
575
exclude : false ,
576
- order : ReactiumGulp . Enums . style . BASE ,
576
+ priority : ReactiumGulp . Enums . style . BASE ,
577
577
} ) ;
578
578
579
579
SassPartial . register ( 'atoms-dir' , {
580
580
pattern : / a t o m s \/ _ r e a c t i u m - s t y l e / ,
581
581
exclude : false ,
582
- order : ReactiumGulp . Enums . style . ATOMS ,
582
+ priority : ReactiumGulp . Enums . style . ATOMS ,
583
583
} ) ;
584
584
585
585
SassPartial . register ( 'atoms-ddd' , {
586
586
pattern : / _ r e a c t i u m - s t y l e - a t o m s / ,
587
587
exclude : false ,
588
- order : ReactiumGulp . Enums . style . ATOMS ,
588
+ priority : ReactiumGulp . Enums . style . ATOMS ,
589
589
} ) ;
590
590
591
591
SassPartial . register ( 'molecules-dir' , {
592
592
pattern : / m o l e c u l e s \/ _ r e a c t i u m - s t y l e / ,
593
593
exclude : false ,
594
- order : ReactiumGulp . Enums . style . MOLECULES ,
594
+ priority : ReactiumGulp . Enums . style . MOLECULES ,
595
595
} ) ;
596
596
597
597
SassPartial . register ( 'molecules-ddd' , {
598
598
pattern : / _ r e a c t i u m - s t y l e - m o l e c u l e s / ,
599
599
exclude : false ,
600
- order : ReactiumGulp . Enums . style . MOLECULES ,
600
+ priority : ReactiumGulp . Enums . style . MOLECULES ,
601
601
} ) ;
602
602
603
603
SassPartial . register ( 'organisms-dir' , {
604
604
pattern : / o r g a n i s m s \/ _ r e a c t i u m - s t y l e / ,
605
605
exclude : false ,
606
- order : ReactiumGulp . Enums . style . ORGANISMS ,
606
+ priority : ReactiumGulp . Enums . style . ORGANISMS ,
607
607
} ) ;
608
608
609
609
SassPartial . register ( 'organisms-ddd' , {
610
610
pattern : / _ r e a c t i u m - s t y l e - o r g a n i s m s / ,
611
611
exclude : false ,
612
- order : ReactiumGulp . Enums . style . ORGANISMS ,
612
+ priority : ReactiumGulp . Enums . style . ORGANISMS ,
613
613
} ) ;
614
614
615
615
SassPartial . register ( 'overrides-dir' , {
616
616
pattern : / o v e r r i d e s \/ _ r e a c t i u m - s t y l e / ,
617
617
exclude : false ,
618
- order : ReactiumGulp . Enums . style . OVERRIDES ,
618
+ priority : ReactiumGulp . Enums . style . OVERRIDES ,
619
619
} ) ;
620
620
621
621
SassPartial . register ( 'overrides-ddd' , {
622
622
pattern : / _ r e a c t i u m - s t y l e - o v e r r i d e s / ,
623
623
exclude : false ,
624
- order : ReactiumGulp . Enums . style . OVERRIDES ,
624
+ priority : ReactiumGulp . Enums . style . OVERRIDES ,
625
625
} ) ;
626
626
} ;
627
627
@@ -658,19 +658,19 @@ $assets: (
658
658
pattern . test ( b ) ,
659
659
) || { } ;
660
660
661
- const aOrder = op . get (
661
+ const aPriority = op . get (
662
662
aMatch ,
663
- 'order ' ,
663
+ 'priority ' ,
664
664
ReactiumGulp . Enums . style . ORGANISMS ,
665
665
) ;
666
- const bOrder = op . get (
666
+ const bPriority = op . get (
667
667
bMatch ,
668
- 'order ' ,
668
+ 'priority ' ,
669
669
ReactiumGulp . Enums . style . ORGANISMS ,
670
670
) ;
671
671
672
- if ( aOrder > bOrder ) return 1 ;
673
- else if ( bOrder > aOrder ) return - 1 ;
672
+ if ( aPriority > bPriority ) return 1 ;
673
+ else if ( bPriority > aPriority ) return - 1 ;
674
674
return 0 ;
675
675
} )
676
676
. filter ( partial => {
0 commit comments