@jauntywunderkind/tc39-temporal
Version:
TC39 Proposal: Temporal
37 lines (30 loc) • 1.07 kB
JavaScript
/*
** Copyright (C) 2018-2019 Bloomberg LP. All rights reserved.
** This code is governed by the license found in the LICENSE file.
*/
import Demitasse from '@pipobscure/demitasse';
import Pretty from '@pipobscure/demitasse-pretty';
import * as exports from './exports.mjs';
// import * as regex from './regex.mjs';
import * as now from './now.mjs';
import * as ecmascript from './ecmascript.mjs';
import * as timezone from './timezone.mjs';
import * as absolute from './absolute.mjs';
import * as date from './date.mjs';
import * as time from './time.mjs';
import * as datetime from './datetime.mjs';
import * as duration from './duration.mjs';
import * as yearmonth from './yearmonth.mjs';
import * as monthday from './monthday.mjs';
import * as intl from './intl.mjs';
import * as datemath from './datemath.mjs';
Promise.resolve()
.then(() => {
return Demitasse.report(Pretty.reporter);
})
.then((failed) => process.exit(failed ? 1 : 0))
.catch((e) => {
console.error(e);
process.exit(-1);
});