File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ export default function (options: DomainOptions): Rule {
33
33
34
34
const libName = strings . dasherize ( options . name ) ;
35
35
const libNameAndDirectory = options . directory
36
- ? `${ libName } /${ options . directory } `
36
+ ? `${ options . directory } /${ libName } `
37
37
: libName ;
38
38
const libNameAndDirectoryDasherized = strings
39
39
. dasherize ( libNameAndDirectory )
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ export default function (options: FeatureOptions): Rule {
48
48
. split ( '/' )
49
49
. join ( '-' ) ;
50
50
const domainNameAndDirectory = domainDirectory
51
- ? `${ domainName } /${ domainDirectory } `
51
+ ? `${ domainDirectory } /${ domainName } `
52
52
: `${ domainName } ` ;
53
53
const domainNameAndDirectoryDasherized = `${ domainNameAndDirectory } `
54
54
. split ( '/' )
You can’t perform that action at this time.
0 commit comments