feat(platform): release/build script optimised

This commit is contained in:
Nishchit14
2022-10-07 23:06:50 +05:30
parent 4fbaf2e336
commit 4e5d78db53
8 changed files with 62 additions and 44 deletions

8
scripts/environment.js Normal file
View File

@@ -0,0 +1,8 @@
const Environment = {
Development: 'development',
Staging: 'staging', // staging will be for testing purpose
Production: 'production',
Canary: 'canary', // Canary is production but for early adopter
};
module.exports = Environment;