Files
meteor/lib/util/environment.js
Dominik Ferber bec69bfb05 refactor(internal): Change meta properties
Introduce more environments instead of additional properties.
2015-10-06 19:36:53 +02:00

15 lines
317 B
JavaScript

export default {
PUBLIC: '-public',
PRIVATE: '-private',
CLIENT: '-client',
SERVER: '-server',
PACKAGE: '-pkg',
TEST: '-test',
NODE_MODULE: '-node_module',
UNIVERSAL: '-universal',
PACKAGE_CONFIG: '-pkg-cfg',
MOBILE_CONFIG: '-mobile-cfg',
COMPATIBILITY: '-compat',
NON_METEOR: '-non-meteor'
}