1 /**
  2  * ilib-webpack.js - define the locale data for assembled or dynamic
  3  *
  4  * @license
  5  * Copyright © 2018, JEDLSoft
  6  *
  7  * Licensed under the Apache License, Version 2.0 (the "License");
  8  * you may not use this file except in compliance with the License.
  9  * You may obtain a copy of the License at
 10  *
 11  *     http://www.apache.org/licenses/LICENSE-2.0
 12  *
 13  * Unless required by applicable law or agreed to in writing, software
 14  * distributed under the License is distributed on an "AS IS" BASIS,
 15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 16  *
 17  * See the License for the specific language governing permissions and
 18  * limitations under the License.
 19  */
 20 
 21 var ilib = require("./ilib.js");
 22 
 23 // The following will either require and then install the
 24 // WebpackLoader to dynamically load locale data bundles,
 25 // or it will statically require all of the locale data that
 26 // this build needs so that it can be included into this
 27 // webpack bundle.
 28 
 29 // !defineLocaleData
 30 
 31 module.exports = ilib;
 32