2017-06-17 17:57:09 -07:00
|
|
|
// Common configuration for webpacker loaded from config/webpacker.yml
|
2017-05-02 17:04:16 -07:00
|
|
|
|
2017-05-20 08:31:47 -07:00
|
|
|
const { join, resolve } = require('path');
|
|
|
|
const { env } = require('process');
|
|
|
|
const { safeLoad } = require('js-yaml');
|
|
|
|
const { readFileSync } = require('fs');
|
2017-05-02 17:04:16 -07:00
|
|
|
|
2017-06-17 17:57:09 -07:00
|
|
|
const configPath = resolve('config', 'webpacker.yml');
|
2017-05-20 08:31:47 -07:00
|
|
|
const loadersDir = join(__dirname, 'loaders');
|
2018-09-13 06:18:47 -07:00
|
|
|
const settings = safeLoad(readFileSync(configPath), 'utf8')[env.RAILS_ENV || env.NODE_ENV];
|
2017-05-02 17:04:16 -07:00
|
|
|
|
2017-09-19 07:36:23 -07:00
|
|
|
const themePath = resolve('config', 'themes.yml');
|
|
|
|
const themes = safeLoad(readFileSync(themePath), 'utf8');
|
|
|
|
|
2017-06-17 17:57:09 -07:00
|
|
|
function removeOuterSlashes(string) {
|
|
|
|
return string.replace(/^\/*/, '').replace(/\/*$/, '');
|
|
|
|
}
|
|
|
|
|
|
|
|
function formatPublicPath(host = '', path = '') {
|
|
|
|
let formattedHost = removeOuterSlashes(host);
|
|
|
|
if (formattedHost && !/^http/i.test(formattedHost)) {
|
|
|
|
formattedHost = `//${formattedHost}`;
|
|
|
|
}
|
|
|
|
const formattedPath = removeOuterSlashes(path);
|
|
|
|
return `${formattedHost}/${formattedPath}/`;
|
|
|
|
}
|
|
|
|
|
|
|
|
const output = {
|
|
|
|
path: resolve('public', settings.public_output_path),
|
2018-01-28 16:06:39 -08:00
|
|
|
publicPath: formatPublicPath(env.CDN_HOST, settings.public_output_path),
|
2017-06-17 17:57:09 -07:00
|
|
|
};
|
2017-05-02 17:04:16 -07:00
|
|
|
|
|
|
|
module.exports = {
|
2017-06-17 17:57:09 -07:00
|
|
|
settings,
|
2017-09-19 07:36:23 -07:00
|
|
|
themes,
|
2018-05-14 08:45:37 -07:00
|
|
|
env: {
|
|
|
|
CDN_HOST: env.CDN_HOST,
|
|
|
|
NODE_ENV: env.NODE_ENV,
|
|
|
|
},
|
2017-05-02 17:04:16 -07:00
|
|
|
loadersDir,
|
2017-06-17 17:57:09 -07:00
|
|
|
output,
|
2017-05-20 08:31:47 -07:00
|
|
|
};
|