Compare commits

..

No commits in common. "04f882b890b192d43e97cc6f36b9e332027d8dce" and "3e86694f0081e8e4c82b4f86215a9cf81eb79063" have entirely different histories.

9 changed files with 8 additions and 15 deletions

View File

@ -22,12 +22,12 @@
"parcel-bundler": "^1.12.4"
},
"alias": {
"@goosemod/patcher": "./moduleWrappers/goosemod/patcher.js",
"@goosemod/webpack": "./moduleWrappers/goosemod/webpack.js",
"@goosemod/logger": "./moduleWrappers/goosemod/logger.js",
"@goosemod/reactUtils": "./moduleWrappers/goosemod/reactUtils.js",
"@goosemod/toast": "./moduleWrappers/goosemod/toast.js",
"@goosemod/settings": "./moduleWrappers/goosemod/settings.js"
"@goosemod/patcher": "./moduleWrappers/patcher.js",
"@goosemod/webpack": "./moduleWrappers/webpack.js",
"@goosemod/logger": "./moduleWrappers/logger.js",
"@goosemod/reactUtils": "./moduleWrappers/reactUtils.js",
"@goosemod/toast": "./moduleWrappers/toast.js",
"@goosemod/settings": "./moduleWrappers/settings.js"
},
"type": "module"
}

View File

@ -124,8 +124,8 @@ for (const parentRepo of ModuleRepos) {
continue;
}
let githubInfo = getGithubInfo(repo[0]);
const githubInfo = await getGithubInfo(repo[0]);
// console.log(repo);
const url = `https://github.com/${repo[0]}.git`;
@ -181,8 +181,6 @@ for (const parentRepo of ModuleRepos) {
const jsHash = createHash('sha512').update(jsCode).digest('hex');
githubInfo = await githubInfo; // GitHub info is gotten async during other stuff to reduce time
const manifestJson = {
name: manifest.name,
description: manifest.description,

View File

@ -1,5 +0,0 @@
{
"github": {
"silent": true
}
}