Skip to content

Commit 76361df

Browse files
authored
fix: validate absolute paths in filename (#878)
1 parent e8c08a1 commit 76361df

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

src/plugin-options.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
"filename": {
77
"anyOf": [
88
{
9-
"type": "string"
9+
"type": "string",
10+
"absolutePath": false,
11+
"minLength": 1
1012
},
1113
{
1214
"instanceof": "Function"

test/__snapshots__/validate-plugin-options.test.js.snap

+7-2
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,19 @@ exports[`validate options should throw an error on the "chunkFilename" option wi
1919
* options.chunkFilename should be an instance of function."
2020
`;
2121

22+
exports[`validate options should throw an error on the "filename" option with "/styles/[name].css" value 1`] = `
23+
"Invalid options object. Mini CSS Extract Plugin has been initialized using an options object that does not match the API schema.
24+
- options.filename: A relative path is expected. However, the provided value \\"/styles/[name].css\\" is an absolute path!"
25+
`;
26+
2227
exports[`validate options should throw an error on the "filename" option with "true" value 1`] = `
2328
"Invalid options object. Mini CSS Extract Plugin has been initialized using an options object that does not match the API schema.
2429
- options.filename should be one of these:
25-
string | function
30+
non-empty string | function
2631
-> This option determines the name of each output CSS file.
2732
-> Read more at https://github.com/webpack-contrib/mini-css-extract-plugin#filename
2833
Details:
29-
* options.filename should be a string.
34+
* options.filename should be a non-empty string.
3035
* options.filename should be an instance of function."
3136
`;
3237

test/validate-plugin-options.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ describe("validate options", () => {
77
"[name].css",
88
({ name }) => `${name.replace("/js/", "/css/")}.css`,
99
],
10-
failure: [true],
10+
failure: [true, "/styles/[name].css"],
1111
},
1212
chunkFilename: {
1313
success: ["[id].css", ({ chunk }) => `${chunk.id}.${chunk.name}.css`],

0 commit comments

Comments
 (0)