refactor: release script refactoring

This commit is contained in:
Nishchit Dhanani
2023-04-24 14:42:18 +05:30
parent 3abd426031
commit 8c5da0b7d3
5 changed files with 410 additions and 285 deletions

View File

@@ -0,0 +1,16 @@
const Environment = {
Development: 'development',
Staging: 'staging', // staging will be for testing purpose
Production: 'production',
Canary: 'canary', // Canary is production but for early adopter
};
const AppFormat = {
WebApp: 'webapp',
Dmg: 'dmg',
AppImage: 'appImage',
Snap: 'snap',
NSIS: 'nsis',
};
module.exports = { Environment, AppFormat };