6de2455917
- Added GLOBAL_MARKETS_TITLE to all translation files - Updated footer with 12 markets (4 active + 8 upcoming) - Translated market section to: zh-cn, zh-tw, ja, ko, th, vi, id, ms, hi - Built and deployed to production - CloudFront invalidation: I3RTMXVFDJXWLG3SYX208OP1CC
37 lines
516 B
JavaScript
37 lines
516 B
JavaScript
/**
|
|
* npm.js: Config that conform to npm logging levels.
|
|
*
|
|
* (C) 2010 Charlie Robbins
|
|
* MIT LICENCE
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
/**
|
|
* Default levels for the npm configuration.
|
|
* @type {Object}
|
|
*/
|
|
exports.levels = {
|
|
error: 0,
|
|
warn: 1,
|
|
info: 2,
|
|
http: 3,
|
|
verbose: 4,
|
|
debug: 5,
|
|
silly: 6
|
|
};
|
|
|
|
/**
|
|
* Default levels for the npm configuration.
|
|
* @type {Object}
|
|
*/
|
|
exports.colors = {
|
|
error: 'red',
|
|
warn: 'yellow',
|
|
info: 'green',
|
|
http: 'green',
|
|
verbose: 'cyan',
|
|
debug: 'blue',
|
|
silly: 'magenta'
|
|
};
|