mirror of https://github.com/ColorlibHQ/gentelella
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
743 B
19 lines
743 B
/**
|
|
* @overview NPM Module index: include all the core modules, I18n files will be loaded on the fly.
|
|
* @author Gregory Wild-Smith <gregory@wild-smith.com>
|
|
*/
|
|
require("./src/core/i18n.js");
|
|
require("./src/core/core.js");
|
|
require("./src/core/core-prototypes.js");
|
|
require("./src/core/sugarpak.js");
|
|
require("./src/core/format_parser.js");
|
|
require("./src/core/parsing_operators.js");
|
|
require("./src/core/parsing_translator.js");
|
|
require("./src/core/parsing_grammar.js");
|
|
require("./src/core/parser.js");
|
|
require("./src/core/extras.js");
|
|
require("./src/core/time_period.js");
|
|
require("./src/core/time_span.js");
|
|
/*
|
|
* Notice that there is no model.export or exports. This is not required as it modifies the Date object and it's prototypes.
|
|
*/ |