@@ -23,8 +23,8 @@ const coreTools = [
23
23
webBaseUrl : 'xpm' ,
24
24
npmScope : '' ,
25
25
npmName : 'xpm' ,
26
- shortName : 'xpm' ,
27
- longName : 'xPack Project Manager' ,
26
+ permalinkName : 'xpm' ,
27
+ descriptiveName : 'xPack Project Manager' ,
28
28
isWindows : true ,
29
29
isMacOS : true ,
30
30
isLinux : true ,
@@ -34,8 +34,8 @@ const coreTools = [
34
34
webBaseUrl : 'xcdl' ,
35
35
npmScope : '' ,
36
36
npmName : 'xcdl' ,
37
- shortName : 'xcdl' ,
38
- longName : 'xCDL Component Manager (work in progress)' ,
37
+ permalinkName : 'xcdl' ,
38
+ descriptiveName : 'xCDL Component Manager (work in progress)' ,
39
39
isWindows : true ,
40
40
isMacOS : true ,
41
41
isLinux : true ,
@@ -48,44 +48,44 @@ const npmModules = [
48
48
webBaseUrl : 'logger-ts' ,
49
49
npmScope : 'xpack' ,
50
50
npmName : 'logger' ,
51
- shortName : '@xpack/logger' ,
52
- longName : 'The xPack Logger'
51
+ permalinkName : '@xpack/logger' ,
52
+ descriptiveName : 'The xPack Logger'
53
53
} ,
54
54
{
55
55
gitHubBaseUrl : 'xpack/mock-console-ts' ,
56
56
webBaseUrl : 'mock-console-ts' ,
57
57
npmScope : 'xpack' ,
58
58
npmName : 'mock-console' ,
59
- shortName : '@xpack/mock-console' ,
60
- longName : 'The xPack Mock Console'
59
+ permalinkName : '@xpack/mock-console' ,
60
+ descriptiveName : 'The xPack Mock Console'
61
61
} ,
62
62
{
63
63
gitHubBaseUrl : 'xpack/xpm-liquid-ts' ,
64
64
webBaseUrl : 'xpm-liquid-ts' ,
65
65
npmScope : 'xpack' ,
66
66
npmName : 'xpm-liquid' ,
67
- shortName : '@xpack/xpm-liquid' ,
68
- longName : 'The xPack Liquid Substitutions'
67
+ permalinkName : '@xpack/xpm-liquid' ,
68
+ descriptiveName : 'The xPack Liquid Substitutions'
69
69
} ,
70
70
{
71
71
gitHubBaseUrl : 'xpack/update-checker-ts' ,
72
72
webBaseUrl : 'update-checker-ts' ,
73
73
npmScope : 'xpack' ,
74
74
npmName : 'update-checker' ,
75
- shortName : '@xpack/update-checker' ,
76
- longName : 'The xPack Update Checker'
75
+ permalinkName : '@xpack/update-checker' ,
76
+ descriptiveName : 'The xPack Update Checker'
77
77
} ,
78
78
]
79
79
80
80
81
- function NpmModule ( { gitHubBaseUrl, webBaseUrl, npmScope, npmName, shortName , longName , isWindows, isMacOS, isLinux } ) {
81
+ function NpmModule ( { gitHubBaseUrl, webBaseUrl, npmScope, npmName, permalinkName , descriptiveName , isWindows, isMacOS, isLinux } ) {
82
82
const badgeName = ( npmScope ? `%40${ npmScope } %2F${ npmName } ` : npmName ) ;
83
83
const npmScopedName = ( npmScope ? `@${ npmScope } /${ npmName } ` : npmName ) ;
84
84
return (
85
85
< >
86
86
< div className = "padding-vert--sm" >
87
87
< div >
88
- < b > < Link to = { 'https://xpack.github.io/' + webBaseUrl + '/' } > < span className = "sub-web-home-link" > { shortName } </ span > </ Link > </ b > - < b > { longName } </ b >
88
+ < b > < Link to = { 'https://xpack.github.io/' + webBaseUrl + '/' } > < span className = "sub-web-home-link" > { permalinkName } </ span > </ Link > </ b > - < b > { descriptiveName } </ b >
89
89
< span className = "margin-left-platforms" >
90
90
{ isWindows ? ( < span className = "platform-windows" > </ span > ) : ( < > </ > ) }
91
91
{ isMacOS ? ( < span className = "platform-apple" > </ span > ) : ( < > </ > ) }
0 commit comments