Skip to content

Commit 5e0308e

Browse files
authoredMay 25, 2023
fix: handling error better (#515)
1 parent 8f05f7b commit 5e0308e

File tree

5 files changed

+33
-13
lines changed

5 files changed

+33
-13
lines changed
 

‎src/index.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,15 @@ import LessError from "./LessError";
1212
async function lessLoader(source) {
1313
const options = this.getOptions(schema);
1414
const callback = this.async();
15-
const implementation = getLessImplementation(this, options.implementation);
15+
let implementation;
16+
17+
try {
18+
implementation = getLessImplementation(this, options.implementation);
19+
} catch (error) {
20+
callback(error);
21+
22+
return;
23+
}
1624

1725
if (!implementation) {
1826
callback(

‎src/utils.js

+2-9
Original file line numberDiff line numberDiff line change
@@ -232,15 +232,8 @@ function getLessImplementation(loaderContext, implementation) {
232232
if (!implementation || typeof implementation === "string") {
233233
const lessImplPkg = implementation || "less";
234234

235-
try {
236-
// eslint-disable-next-line import/no-dynamic-require, global-require
237-
resolvedImplementation = require(lessImplPkg);
238-
} catch (error) {
239-
loaderContext.emitError(error);
240-
241-
// eslint-disable-next-line consistent-return
242-
return;
243-
}
235+
// eslint-disable-next-line import/no-dynamic-require, global-require
236+
resolvedImplementation = require(lessImplPkg);
244237
}
245238

246239
// eslint-disable-next-line consistent-return

‎test/__snapshots__/implementation.test.js.snap

+10-3
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,21 @@
33
exports[`"implementation" option should throw error when unresolved package: errors 1`] = `
44
[
55
"ModuleBuildError: Module build failed (from \`replaced original path\`):
6-
Error: The Less implementation "unresolved" not found",
7-
"ModuleError: Module Error (from \`replaced original path\`):
8-
(Emitted value instead of an instance of Error) Error: Cannot find module 'unresolved' from 'src/utils.js'",
6+
NonErrorEmittedError: (Emitted value instead of an instance of Error) Error: Cannot find module 'unresolved' from 'src/utils.js'",
7+
]
8+
`;
9+
10+
exports[`"implementation" option should throw error when unresolved package: errors 2`] = `
11+
[
12+
"ModuleBuildError: Module build failed (from \`replaced original path\`):
13+
Error: The Less implementation "/test/fixtures/implementation-error.js" not found",
914
]
1015
`;
1116

1217
exports[`"implementation" option should throw error when unresolved package: warnings 1`] = `[]`;
1318

19+
exports[`"implementation" option should throw error when unresolved package: warnings 2`] = `[]`;
20+
1421
exports[`"implementation" option should work when implementation option is string: css 1`] = `
1522
".box {
1623
color: #fe33ac;

‎test/fixtures/implementation-error.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = false;

‎test/implementation.test.js

+11
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,15 @@ describe('"implementation" option', () => {
4949
expect(getWarnings(stats)).toMatchSnapshot("warnings");
5050
expect(getErrors(stats)).toMatchSnapshot("errors");
5151
});
52+
53+
it("should throw error when unresolved package", async () => {
54+
const testId = "./basic.less";
55+
const compiler = getCompiler(testId, {
56+
implementation: require.resolve("./fixtures/implementation-error.js"),
57+
});
58+
const stats = await compile(compiler);
59+
60+
expect(getWarnings(stats)).toMatchSnapshot("warnings");
61+
expect(getErrors(stats)).toMatchSnapshot("errors");
62+
});
5263
});

0 commit comments

Comments
 (0)
Please sign in to comment.