Skip to content

Commit 3e0c11b

Browse files
committed
other: No short URLs + reduce link overload.
Based on feedback from @gustojs.
1 parent 0768ba8 commit 3e0c11b

File tree

7 files changed

+13
-25
lines changed

7 files changed

+13
-25
lines changed

data/libraries/gridsome.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,8 @@
55
"icon": "gridsome.png",
66
"colour": "#01A672",
77
"url": {
8-
"site": "https://bit.ly/2o95aj8",
9-
"docs": "https://bit.ly/2oTjNXY",
10-
"repo": "https://bit.ly/2nwQcTQ",
11-
"bugs": "https://bit.ly/2mHG4Yc"
8+
"site": "https://gridsome.org/",
9+
"repo": "https://github.com/gridsome/gridsome"
1210
},
1311
"fields": [
1412
{

data/libraries/nuxt.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,8 @@
55
"icon": "nuxt.png",
66
"colour": "#00c58",
77
"url": {
8-
"site": "https://bit.ly/2p0OcDW",
9-
"docs": "https://bit.ly/2nxzALV",
10-
"repo": "https://bit.ly/2ofhgXI",
11-
"bugs": "https://bit.ly/2mHQSWi"
8+
"site": "https://nuxtjs.org/",
9+
"repo": "https://github.com/nuxt/nuxt.js"
1210
},
1311
"fields": [
1412
{

data/libraries/quasar.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,8 @@
1515
"icon": "quasar.png",
1616
"colour": "#42A5F5",
1717
"url": {
18-
"site": "http://bit.ly/2p1xkNn",
19-
"docs": "http://bit.ly/2oWheo4",
20-
"repo": "http://bit.ly/2p1f5HR",
21-
"bugs": "http://bit.ly/2oa9m27"
18+
"site": "https://quasar.dev/",
19+
"repo": "https://github.com/quasarframework/quasar"
2220
},
2321
"fields": [
2422
"Quasar (pronounced /ˈkweɪ.zɑɹ/) is an MIT licensed open-source Vue.js based framework, which allows you as a web developer to quickly create responsive++ websites/apps in many flavours.",

data/libraries/saber.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,8 @@
55
"icon": "saber.png",
66
"colour": "#00838F",
77
"url": {
8-
"site": "http://bit.ly/2nk4CqF",
9-
"docs": "http://bit.ly/2obzJVm",
10-
"repo": "http://bit.ly/2ogrHu8",
11-
"bugs": "http://bit.ly/2mJr3oQ"
8+
"site": "https://saber.land/",
9+
"repo": "https://github.com/saberland/saber"
1210
},
1311
"fields": [
1412
{

data/libraries/vuepress.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,8 @@
55
"icon": "vuepress.png",
66
"colour": "#2C9566",
77
"url": {
8-
"site": "http://bit.ly/2ohJ79G",
9-
"docs": "http://bit.ly/2nxekWq",
10-
"repo": "http://bit.ly/2ofy298",
11-
"bugs": "http://bit.ly/2mI17tG"
8+
"site": "https://vuepress.vuejs.org/",
9+
"repo": "https://github.com/vuejs/vuepress"
1210
},
1311
"fields": [
1412
{

data/libraries/vuetify.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,8 @@
55
"icon": "vuetify.png",
66
"colour": "#7BC6FF",
77
"url": {
8-
"site": "http://bit.ly/2mI2j08",
9-
"docs": "http://bit.ly/2mCZeyf",
10-
"repo": "http://bit.ly/2mA5Nl8",
11-
"bugs": "http://bit.ly/2obGNkI"
8+
"site": "https://vuetifyjs.com/en/",
9+
"repo": "https://github.com/vuetifyjs/vuetify"
1210
},
1311
"fields": [
1412
"Vuetify is a semantic component framework for Vue. It aims to provide clean, semantic and reusable components that make building your application a breeze.",

src/commands/documentation/library.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ module.exports = class DocumentationLibraryCommand extends Command {
9696
}
9797

9898
for (const [name, url] of Object.entries(library.url)) {
99-
embed.addField(uppercaseFirst(name), url, true)
99+
embed.addField(uppercaseFirst(name), url)
100100
}
101101

102102
return embed

0 commit comments

Comments
 (0)