You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 29, 2021. It is now read-only.
Copy file name to clipboardExpand all lines: lib/errors.js
+3-43Lines changed: 3 additions & 43 deletions
Original file line number
Diff line number
Diff line change
@@ -4,54 +4,14 @@ css-customs-loader should be added BEFORE css-loader.
4
4
`.trim()
5
5
)
6
6
7
-
exports.usePostcssLoader=newError(
7
+
exports.missingPostcssLoader=newError(
8
8
`
9
9
postcss-loader is missing, you need to use it in order for css-customs-loader to work properly.
10
10
`
11
11
)
12
12
13
-
exports.parseBeforeCssLoader=newError(
13
+
exports.missingPostcssPresetEnv=newError(
14
14
`
15
-
css-customs-loader/parse should added AFTER css-loader. If the order of your loaders is intentional and it works, consider raising an issue to remove this error.
css-customs-loader/parse should be added AFTER postcss-loader. If the order of your loaders is intentional and it works, consider raising an issue to remove this error.
css-customs-loader/export should be added BEFORE css-loader. If the order of your loaders is intentional and it works, consider raising an issue to remove this error.
Use css-customs-loader/parse and css-customs-loader/export.
37
-
`.trim()
38
-
)
39
-
40
-
exports.missingPostcssConfig=newError(
41
-
`
42
-
You're using postcss-loader, but css-customs-loader/parse couldn't find a valid PostCSS configuration.
43
-
`.trim()
44
-
)
45
-
46
-
exports.missingParseLoader=newError(
47
-
`
48
-
css-customs-loader/parse loader is missing.
49
-
`.trim()
50
-
)
51
-
52
-
exports.missingCustoms=newError(
53
-
`
54
-
Customs are missing. Maybe you're using a loader between css-customs-loader/parse and css-customs-loader/export that modified metadata and lost them. Please raise an issue providing your webpack configuration.
0 commit comments