chore: file renamed

This commit is contained in:
Nishchit14
2022-10-08 00:12:06 +05:30
parent 4749685f06
commit abe66455db

16
scripts/constants.js Normal file
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 };