add moment
This commit is contained in:
parent
ca6367686e
commit
d227d857b4
1
dist/index.d.ts
vendored
1
dist/index.d.ts
vendored
@ -1,3 +1,4 @@
|
|||||||
export * from './smarttime.classes.hrtmeasurement';
|
export * from './smarttime.classes.hrtmeasurement';
|
||||||
export * from './smarttime.classes.timestamp';
|
export * from './smarttime.classes.timestamp';
|
||||||
export * from './smarttime.units';
|
export * from './smarttime.units';
|
||||||
|
export { moment } from './smarttime.plugins';
|
||||||
|
4
dist/index.js
vendored
4
dist/index.js
vendored
@ -6,4 +6,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|||||||
__export(require("./smarttime.classes.hrtmeasurement"));
|
__export(require("./smarttime.classes.hrtmeasurement"));
|
||||||
__export(require("./smarttime.classes.timestamp"));
|
__export(require("./smarttime.classes.timestamp"));
|
||||||
__export(require("./smarttime.units"));
|
__export(require("./smarttime.units"));
|
||||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUVBLHdEQUFrRDtBQUNsRCxtREFBNkM7QUFDN0MsdUNBQWlDIn0=
|
var smarttime_plugins_1 = require("./smarttime.plugins");
|
||||||
|
exports.moment = smarttime_plugins_1.moment;
|
||||||
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUVBLHdEQUFrRDtBQUNsRCxtREFBNkM7QUFDN0MsdUNBQWlDO0FBRWpDLHlEQUE0QztBQUFuQyxxQ0FBQSxNQUFNLENBQUEifQ==
|
2
dist/smarttime.plugins.d.ts
vendored
2
dist/smarttime.plugins.d.ts
vendored
@ -1 +1,3 @@
|
|||||||
import 'typings-global';
|
import 'typings-global';
|
||||||
|
import * as moment from 'moment';
|
||||||
|
export { moment };
|
||||||
|
4
dist/smarttime.plugins.js
vendored
4
dist/smarttime.plugins.js
vendored
@ -1,4 +1,6 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
require("typings-global");
|
require("typings-global");
|
||||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnR0aW1lLnBsdWdpbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9zbWFydHRpbWUucGx1Z2lucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOztBQUFBLDBCQUF1QiJ9
|
const moment = require("moment");
|
||||||
|
exports.moment = moment;
|
||||||
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnR0aW1lLnBsdWdpbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9zbWFydHRpbWUucGx1Z2lucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOztBQUFBLDBCQUF1QjtBQUV2QixpQ0FBZ0M7QUFHOUIsd0JBQU0ifQ==
|
@ -13,6 +13,7 @@
|
|||||||
"tapbundle": "^1.0.13"
|
"tapbundle": "^1.0.13"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"moment": "^2.18.1",
|
||||||
"typings-global": "^1.0.16"
|
"typings-global": "^1.0.16"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3,3 +3,5 @@ import * as plugins from './smarttime.plugins'
|
|||||||
export * from './smarttime.classes.hrtmeasurement'
|
export * from './smarttime.classes.hrtmeasurement'
|
||||||
export * from './smarttime.classes.timestamp'
|
export * from './smarttime.classes.timestamp'
|
||||||
export * from './smarttime.units'
|
export * from './smarttime.units'
|
||||||
|
|
||||||
|
export { moment } from './smarttime.plugins'
|
||||||
|
@ -1 +1,7 @@
|
|||||||
import 'typings-global'
|
import 'typings-global'
|
||||||
|
|
||||||
|
import * as moment from 'moment'
|
||||||
|
|
||||||
|
export {
|
||||||
|
moment
|
||||||
|
}
|
||||||
|
@ -249,6 +249,10 @@ minimist@^1.2.0:
|
|||||||
version "1.2.0"
|
version "1.2.0"
|
||||||
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
|
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
|
||||||
|
|
||||||
|
moment@^2.18.1:
|
||||||
|
version "2.18.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/moment/-/moment-2.18.1.tgz#c36193dd3ce1c2eed2adb7c802dbbc77a81b1c0f"
|
||||||
|
|
||||||
nan@^2.3.2:
|
nan@^2.3.2:
|
||||||
version "2.6.2"
|
version "2.6.2"
|
||||||
resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45"
|
resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45"
|
||||||
|
Loading…
Reference in New Issue
Block a user