Compare commits

..

No commits in common. "2dd46af5b3a20585dadc0587313542f9d2c940ce" and "0deb6217e890b7772ed2d1bedd8abded54a68232" have entirely different histories.

1 changed files with 2 additions and 16 deletions

View File

@ -14,22 +14,6 @@ const buildUpdates = async () => {
}))
}
/**
* {
* addons: {
* [stringId1]: {
* updates: [
* {
* version: '1.0.9.xpi',
* update_link: `https://bb-addon.sagev.space/${file}`
* },
* ...
* ]
* },
* [stringId2]: ...
* }
* }
*/
const buildJson = async () => {
const uuid1 = '16f4f9af-ad27-41b7-adae-b0b08bc17b43'
const uuid2 = 'svaillancourt@add123.com'
@ -39,6 +23,8 @@ const buildJson = async () => {
const updates = await buildUpdates()
object.addons[uuid1] = { updates }
object.addons[uuid2] = { updates }
// object.addons[`{${uuid1}}`] = { updates }
// object.addons[`{${uuid2}}`] = { updates }
return JSON.stringify(object, null, 2)
}