Files
meteor/lib/util/environment.js
Dominik Ferber c818fb07d5 feat(rules): remove a ton of rules
This further gets rid of all environment checks, keeping it simple

no longer support environments
2016-03-02 13:52:20 +01:00

13 lines
431 B
JavaScript

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