🐛 Fix(custom): fix an issue eslint not worked as expected

This commit is contained in:
Kuingsmile
2025-12-30 13:20:28 +08:00
parent 4fb5a26270
commit b53eccce13
185 changed files with 8014 additions and 7627 deletions

View File

@@ -6,14 +6,14 @@ const darwin = [
appNameWithPrefix: 'PicList-',
ext: '.dmg',
arch: '-arm64',
'version-file': 'latest-mac.yml'
'version-file': 'latest-mac.yml',
},
{
appNameWithPrefix: 'PicList-',
ext: '.dmg',
arch: '-x64',
'version-file': 'latest-mac.yml'
}
'version-file': 'latest-mac.yml',
},
]
const linux = [
@@ -21,14 +21,14 @@ const linux = [
appNameWithPrefix: 'PicList-',
ext: '.AppImage',
arch: '',
'version-file': 'latest-linux.yml'
'version-file': 'latest-linux.yml',
},
{
appNameWithPrefix: 'piclist_',
ext: '.snap',
arch: '_amd64',
'version-file': 'latest-linux.yml'
}
'version-file': 'latest-linux.yml',
},
]
// windows
@@ -37,30 +37,30 @@ const win32 = [
appNameWithPrefix: 'PicList-Setup-',
ext: '.exe',
arch: '-ia32',
'version-file': 'latest.yml'
'version-file': 'latest.yml',
},
{
appNameWithPrefix: 'PicList-Setup-',
ext: '.exe',
arch: '-x64',
'version-file': 'latest.yml'
'version-file': 'latest.yml',
},
{
appNameWithPrefix: 'PicList-Setup-',
ext: '.exe',
arch: '', // 32 & 64
'version-file': 'latest.yml'
'version-file': 'latest.yml',
},
{
appNameWithPrefix: 'PicList-Setup-',
ext: '.exe',
arch: '-arm64',
'version-file': 'latest.yml'
}
'version-file': 'latest.yml',
},
]
export default {
darwin,
linux,
win32
win32,
}

View File

@@ -15,12 +15,12 @@ const DOWNLOAD_DIR = process.argv[3] || path.join(os.homedir(), 'Downloads')
const files = [
{
name: 'PicList-x64.dmg',
url: `${BASE_URL}/PicList-${version}-x64.dmg`
url: `${BASE_URL}/PicList-${version}-x64.dmg`,
},
{
name: 'PicList-arm64.dmg',
url: `${BASE_URL}/PicList-${version}-arm64.dmg`
}
url: `${BASE_URL}/PicList-${version}-arm64.dmg`,
},
]
/**
@@ -57,7 +57,7 @@ async function downloadAndHash(fileInfo) {
const response = await axios({
method: 'get',
url,
responseType: 'stream'
responseType: 'stream',
})
const writer = fs.createWriteStream(filePath)

View File

@@ -27,7 +27,7 @@ async function main(context) {
appleId: XCODE_APP_LOADER_EMAIL,
appleIdPassword: XCODE_APP_LOADER_PASSWORD,
tool: 'notarytool',
teamId: XCODE_TEAM_ID
teamId: XCODE_TEAM_ID,
})
console.log('Finished Apple notarization.')
}

View File

@@ -26,11 +26,11 @@ const uploadFile = async () => {
const options = {
credentials: {
accessKeyId: SECRET_ID,
secretAccessKey: SECRET_KEY
secretAccessKey: SECRET_KEY,
},
endpoint: `https://${ACCOUNT_ID}.r2.cloudflarestorage.com`,
tls: true,
region: 'auto'
region: 'auto',
}
const client = new S3Client.S3Client(options)
const parallelUploads3 = new Upload.Upload({
@@ -41,9 +41,9 @@ const uploadFile = async () => {
Body: fileStream,
ContentType: 'application/octet-stream',
Metadata: {
description: 'uploaded by PicList'
}
}
description: 'uploaded by PicList',
},
},
})
parallelUploads3.on('httpUploadProgress', progress => {
const progressBar = Math.round((progress.loaded / progress.total) * 100)

View File

@@ -20,11 +20,11 @@ const SECRET_KEY = process.env.R2_SECRET_KEY
const options = {
credentials: {
accessKeyId: SECRET_ID,
secretAccessKey: SECRET_KEY
secretAccessKey: SECRET_KEY,
},
endpoint: `https://${ACCOUNT_ID}.r2.cloudflarestorage.com`,
tls: true,
region: 'auto'
region: 'auto',
}
const removeDupField = path => {
@@ -65,9 +65,9 @@ const uploadFile = async () => {
Body: fileStream,
ContentType: 'application/octet-stream',
Metadata: {
description: 'uploaded by PicList'
}
}
description: 'uploaded by PicList',
},
},
})
parallelUploads3.on('httpUploadProgress', progress => {
const progressBar = Math.round((progress.loaded / progress.total) * 100)
@@ -97,9 +97,9 @@ const uploadFile = async () => {
Body: versionFileStream,
ContentType: mime.getType(versionFileName),
Metadata: {
description: 'uploaded by PicList'
}
}
description: 'uploaded by PicList',
},
},
})
console.log('\nUploading version file to root...')
await uploadVersionFileToRoot.done()
@@ -114,9 +114,9 @@ const uploadFile = async () => {
Body: versionFileStream2,
ContentType: mime.getType(versionFileName),
Metadata: {
description: 'uploaded by PicList'
}
}
description: 'uploaded by PicList',
},
},
})
console.log('\nUploading version file to latest...')
await uploadVersionFileToLatest.done()