mirror of https://github.com/webpack/webpack.git
61 lines
1014 B
JavaScript
61 lines
1014 B
JavaScript
const variables = [
|
|
"aaa",
|
|
"bbb",
|
|
"ccc",
|
|
"ddd",
|
|
"eee",
|
|
"fff",
|
|
"ggg",
|
|
"hhh",
|
|
"iii"
|
|
];
|
|
const modules = [
|
|
{
|
|
name: "aaa",
|
|
variables: ["aaa"]
|
|
},
|
|
{
|
|
name: "bbbccc",
|
|
variables: ["bbb", "ccc"]
|
|
},
|
|
{
|
|
name: "ddd",
|
|
variables: [],
|
|
allowedErrors: [
|
|
[{ compilerPath: /ddd/ }, /DDD environment variable is undefined./]
|
|
]
|
|
},
|
|
{
|
|
name: "eeefff",
|
|
variables: ["eee", "fff"]
|
|
},
|
|
{
|
|
name: "ggghhh",
|
|
variables: ["ggg", "hhh"]
|
|
},
|
|
{
|
|
name: "iii",
|
|
variables: ["iii"]
|
|
}
|
|
];
|
|
|
|
// build an array of regular expressions of expected errors
|
|
const regex = [];
|
|
modules.forEach(module => {
|
|
variables.forEach(variable => {
|
|
if (module.variables.indexOf(variable) === -1) {
|
|
// the module doesn't include the env variable, an error is expected when requiring the variable
|
|
regex.push([
|
|
{ compilerPath: new RegExp(`${module.name}`) },
|
|
new RegExp(`Can't resolve '${variable}'`)
|
|
]);
|
|
}
|
|
});
|
|
|
|
if (module.allowedErrors) {
|
|
regex.push(...module.allowedErrors);
|
|
}
|
|
});
|
|
|
|
module.exports = regex;
|