refactor(release): release/bundle scripts are refactored with other intermideate fixes

This commit is contained in:
Nishchit14
2022-10-07 23:53:13 +05:30
parent 4e5d78db53
commit e165f618be
8 changed files with 40 additions and 76 deletions

View File

@@ -5,4 +5,12 @@ const Environment = {
Canary: 'canary', // Canary is production but for early adopter
};
module.exports = Environment;
const AppFormat = {
WebApp: 'webapp',
Dmg: 'dmg',
AppImage: 'appImage',
Snap: 'snap',
NSIS: 'nsis',
};
module.exports = { Environment, AppFormat };