1
0
mirror of https://github.com/oceanprotocol/community-numbers.git synced 2025-01-05 11:25:12 +01:00

bump eslint-config-oceanprotocol

This commit is contained in:
Matthias Kretschmann 2019-08-20 11:35:30 +02:00
parent 4b8d2ec815
commit 58c886e6c7
Signed by: m
GPG Key ID: 606EEEF3C479A91F
6 changed files with 7 additions and 7 deletions

View File

@ -47,7 +47,7 @@ const fetchBounties = async () => {
const total = await getTotal() const total = await getTotal()
log( log(
`Re-built bounties cache. ` + 'Re-built bounties cache. ' +
`Total: ${total} bounties. ` + `Total: ${total} bounties. ` +
`Elapsed: ${new Date() - start}ms` `Elapsed: ${new Date() - start}ms`
) )

View File

@ -38,7 +38,7 @@ const fetchGitHubRepos = async () => {
const repositories = json.length const repositories = json.length
log( log(
`Re-built github cache. ` + 'Re-built github cache. ' +
`Total: ${repositories} public projects with a total of ${stars} stargazers. ` + `Total: ${repositories} public projects with a total of ${stars} stargazers. ` +
`Elapsed: ${new Date() - start}ms` `Elapsed: ${new Date() - start}ms`
) )

View File

@ -18,7 +18,7 @@ const fetchMedium = async () => {
const followers = collection.metadata.followerCount const followers = collection.metadata.followerCount
log( log(
`Re-built medium cache. ` + 'Re-built medium cache. ' +
`Total: ${followers} followers. ` + `Total: ${followers} followers. ` +
`Elapsed: ${new Date() - start}ms` `Elapsed: ${new Date() - start}ms`
) )

View File

@ -19,7 +19,7 @@ const fetchTelegram = async () => {
const membersCommunity = parseInt(infoCommunity) const membersCommunity = parseInt(infoCommunity)
log( log(
`Re-built telegram cache. ` + 'Re-built telegram cache. ' +
`Total: ${membersCommunity} oceanprotocol_community members. ` + `Total: ${membersCommunity} oceanprotocol_community members. ` +
`Elapsed: ${new Date() - start}ms` `Elapsed: ${new Date() - start}ms`
) )
@ -39,7 +39,7 @@ const fetchTelegram = async () => {
const membersNews = parseInt(infoNews) const membersNews = parseInt(infoNews)
log( log(
`Re-built telegram cache. ` + 'Re-built telegram cache. ' +
`Total: ${membersCommunity} oceanprotocol_community members. ` + `Total: ${membersCommunity} oceanprotocol_community members. ` +
`Elapsed: ${new Date() - start}ms` `Elapsed: ${new Date() - start}ms`
) )

View File

@ -15,7 +15,7 @@ const fetchTwitter = async () => {
const followers = json[0].followers_count const followers = json[0].followers_count
log( log(
`Re-built twitter cache. ` + 'Re-built twitter cache. ' +
`Total: ${followers} followers. ` + `Total: ${followers} followers. ` +
`Elapsed: ${new Date() - start}ms` `Elapsed: ${new Date() - start}ms`
) )

View File

@ -15,7 +15,7 @@
}, },
"devDependencies": { "devDependencies": {
"eslint": "^6.2.0", "eslint": "^6.2.0",
"eslint-config-oceanprotocol": "^1.4.0", "eslint-config-oceanprotocol": "^1.5.0",
"eslint-plugin-node": "^9.1.0" "eslint-plugin-node": "^9.1.0"
} }
} }