2019-04-12 16:44:14 +02:00
|
|
|
const path = require('path');
|
|
|
|
require('dotenv').config({ path: path.resolve(__dirname, '../.env') });
|
|
|
|
|
2020-08-13 17:05:52 +02:00
|
|
|
const supportedLangs = ['chinese', 'english'];
|
2018-12-05 22:04:30 +03:00
|
|
|
|
2020-08-13 17:05:52 +02:00
|
|
|
exports.testedLang = function testedLang() {
|
|
|
|
if (process.env.LOCALE) {
|
|
|
|
if (supportedLangs.includes(process.env.LOCALE)) {
|
|
|
|
return process.env.LOCALE;
|
|
|
|
} else {
|
|
|
|
throw Error(`${process.env.LOCALE} is not a supported language.
|
|
|
|
Before the site can be built, this language needs to be manually approved`);
|
|
|
|
}
|
2019-04-12 16:44:14 +02:00
|
|
|
} else {
|
2020-08-13 17:05:52 +02:00
|
|
|
throw Error('LOCALE must be set for testing');
|
2019-04-12 16:44:14 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-10-04 17:36:00 +01:00
|
|
|
exports.supportedLangs = supportedLangs;
|