@@ -31,6 +31,8 @@ function getSubdirectories(prefix, topDir) {
31
31
* @param {string } pattern the new pattern to add
32
32
*/
33
33
function addPath ( pathGroupsIn , pattern ) {
34
+ if ( pattern === "core/rendering/Styles" )
35
+ return ;
34
36
pathGroupsIn . push ( { "pattern" : pattern , "group" : "external" , "position" : "after" } ) ;
35
37
pathGroupsIn . push ( { "pattern" : pattern + "/*" , "group" : "external" , "position" : "after" } ) ;
36
38
}
@@ -41,7 +43,7 @@ const siteDirectories = ["shared", "analog", "digital", "landing"];
41
43
const siteSubDirectories = [ "utils" , "api" , "state" , "components" , "containers" , "tests" ] ;
42
44
const pathGroups = [
43
45
{ "pattern" : "react" , "group" : "external" } ,
44
- { "pattern" : "{**,**/,,./,../,*}{C,c}onstants {**,/**,,*}" , "group" : "external" , "position" : "after" } ,
46
+ { "pattern" : "{**,**/,,./,../,*}{Constants,constants,core/rendering/Styles} {**,/**,,*}" , "group" : "external" , "position" : "after" } ,
45
47
{ "pattern" : "Vector" , "group" : "external" , "position" : "after" } ,
46
48
{ "pattern" : "math/**" , "group" : "external" , "position" : "after" } ,
47
49
{ "pattern" : "test/helpers/*" , "group" : "external" , "position" : "after" } ,
0 commit comments