make Prettier
authorAJ ONeal <aj@therootcompany.com>
Sun, 3 May 2020 10:49:06 +0000 (10:49 +0000)
committerAJ ONeal <aj@therootcompany.com>
Sun, 3 May 2020 10:49:06 +0000 (10:49 +0000)
_common/gitea.js
_common/github.js
flutter/releases.js
pathman/releases.js

index a3aa574397e2ae1875b9fbb6db11a378356bf0b5..c0deae379462fcc9bea388c3b998ae7a257ddf83 100644 (file)
@@ -15,7 +15,9 @@ function getAllReleases(request, owner, repo, baseurl) {
   if (!baseurl) {
     return Promise.reject('missing baseurl');
   }
-  return ghRelease(request, owner, repo, baseurl + '/api/v1').then(function (all) {
+  return ghRelease(request, owner, repo, baseurl + '/api/v1').then(function (
+    all
+  ) {
     return all;
   });
 }
@@ -23,8 +25,13 @@ function getAllReleases(request, owner, repo, baseurl) {
 module.exports = getAllReleases;
 
 if (module === require.main) {
-  getAllReleases(require('@root/request'), 'coolaj86', 'go-pathman', 'https://git.coolaj86.com').then(
-  //getAllReleases(require('@root/request'), 'root', 'serviceman', 'https://git.rootprojects.org').then(
+  getAllReleases(
+    require('@root/request'),
+    'coolaj86',
+    'go-pathman',
+    'https://git.coolaj86.com'
+  ).then(
+    //getAllReleases(require('@root/request'), 'root', 'serviceman', 'https://git.rootprojects.org').then(
     function (all) {
       console.log(JSON.stringify(all, null, 2));
     }
index aeaf025844e642ddea7ea920528e2ca3c2cb4d56..7b62ea3a04cc467b97de9ca50087fec201243c3b 100644 (file)
@@ -9,7 +9,12 @@
  * @param {string} repo
  * @returns {PromiseLike<any> | Promise<any>}
  */
-function getAllReleases(request, owner, repo, baseurl = 'https://api.github.com') {
+function getAllReleases(
+  request,
+  owner,
+  repo,
+  baseurl = 'https://api.github.com'
+) {
   if (!owner) {
     return Promise.reject('missing owner for repo');
   }
index 216078a2dce93550d9c7968ac2892526417d44fb..41a0be2de0e0fa7277d91040bf5884449c8f3db8 100644 (file)
@@ -17,7 +17,7 @@ module.exports = function (request) {
         json: true
       }).then(function (resp) {
         var body = resp.body;
-        all.download = body.base_url + '/{{ download }}'
+        all.download = body.base_url + '/{{ download }}';
         body.releases.forEach(function (asset) {
           if (!map[asset.channel]) {
             map[asset.channel] = true;
index e57e5d32898d8211e763b39fb064d6ce6f7afa0b..26d23c211a408a75bc709b809e641b74572675a2 100644 (file)
@@ -3,7 +3,7 @@
 var github = require('../_common/gitea.js');
 var owner = 'coolaj86';
 var repo = 'go-pathman';
-var baseurl = 'https://git.coolaj86.com'
+var baseurl = 'https://git.coolaj86.com';
 
 module.exports = function (request) {
   return github(request, owner, repo, baseurl).then(function (all) {