1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2026-01-29 14:35:58 +00:00

Update bootstrap theme javascript dependencies

This commit is contained in:
James Hillyerd
2017-01-28 20:20:58 -08:00
parent 958f5a44d9
commit 9e49480482
383 changed files with 112654 additions and 79220 deletions

View File

@@ -1,12 +1,12 @@
//! moment.js
//! version : 2.11.2
//! version : 2.17.1
//! authors : Tim Wood, Iskren Chernev, Moment.js contributors
//! license : MIT
//! momentjs.com
import { hooks as moment, setHookCallback } from './lib/utils/hooks';
moment.version = '2.11.2';
moment.version = '2.17.1';
import {
min,
@@ -21,10 +21,16 @@ import {
createInZone as parseZone
} from './lib/moment/moment';
import {
getCalendarFormat
} from './lib/moment/calendar';
import {
defineLocale,
updateLocale,
getSetGlobalLocale as locale,
getLocale as localeData,
listLocales as locales,
listMonths as months,
listMonthsShort as monthsShort,
listWeekdays as weekdays,
@@ -35,6 +41,7 @@ import {
import {
isDuration,
createDuration as duration,
getSetRelativeTimeRounding as relativeTimeRounding,
getSetRelativeTimeThreshold as relativeTimeThreshold
} from './lib/duration/duration';
@@ -63,9 +70,13 @@ moment.isDuration = isDuration;
moment.monthsShort = monthsShort;
moment.weekdaysMin = weekdaysMin;
moment.defineLocale = defineLocale;
moment.updateLocale = updateLocale;
moment.locales = locales;
moment.weekdaysShort = weekdaysShort;
moment.normalizeUnits = normalizeUnits;
moment.relativeTimeRounding = relativeTimeRounding;
moment.relativeTimeThreshold = relativeTimeThreshold;
moment.calendarFormat = getCalendarFormat;
moment.prototype = fn;
export default moment;