bundalo
Version:
Extract/cache/render property files/strings using i18n rules and various rendering engines
37 lines (33 loc) • 2.2 kB
JavaScript
/*───────────────────────────────────────────────────────────────────────────*\
│ Copyright (C) 2014 eBay Software Foundation │
│ │
│hh ,'""`. │
│ / _ _ \ Licensed under the Apache License, Version 2.0 (the "License"); │
│ |(@)(@)| you may not use this file except in compliance with the License. │
│ ) __ ( You may obtain a copy of the License at │
│ /,'))((`.\ │
│(( (( )) )) http://www.apache.org/licenses/LICENSE-2.0 │
│ `\ `)(' /' │
│ │
│ Unless required by applicable law or agreed to in writing, software │
│ distributed under the License is distributed on an "AS IS" BASIS, │
│ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. │
│ See the License for the specific language governing permissions and │
│ limitations under the License. │
\*───────────────────────────────────────────────────────────────────────────*/
;
var VError = require('verror');
function bundalo(config) {
var Bundler;
var engine = config.engine || 'none';
if (config.contentPath === undefined) {
throw new Error("[bundalo] Please provide a contentPath");
}
try {
Bundler = require("./bundler/" + engine);
} catch (err) {
throw new VError(err, "[bundalo] Please provide a valid engine property on the config parameter");
}
return new Bundler(config);
}
module.exports = bundalo;