Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bin/helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import ArweaveBundles from "arweave-bundles";
import pkg from "cli-progress";
const { SingleBar, Presets } = pkg;

export const VERSION = "0.1.5"
export const VERSION = "0.1.6"

const _timeout = async (duration) => {
return new Promise((resolve, reject) => {
Expand Down
8 changes: 8 additions & 0 deletions bin/lib/graphql.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ import { parseArgitRemoteURI } from "./arweave.js";

const graphQlEndpoint = "https://arweave.net/graphql";

const getTagValue = (tagName, tags) => {
for (const tag of tags) {
if (tag.name === tagName) {
return tag.value
}
}
}

export const getOidByRef = async (arweave, remoteURI, ref) => {
const { repoOwnerAddress, repoName } = parseArgitRemoteURI(remoteURI)
const { data } = await axios({
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gitopia/git-remote-gitopia",
"version": "0.1.5",
"version": "0.1.6",
"description": "git-remote-helper for Gitopia",
"main": "bin/index.mjs",
"bin": {
Expand Down