Skip to content

Commit d7531ef

Browse files
authoredApr 13, 2021
fix: getOptions usage (#113)
1 parent 78920d9 commit d7531ef

File tree

3 files changed

+94
-51
lines changed

3 files changed

+94
-51
lines changed
 

‎package-lock.json

+39-49
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,11 @@
4141
"webpack": "^4.27.0 || ^5.0.0"
4242
},
4343
"dependencies": {
44+
"json-parse-better-errors": "^1.0.2",
4445
"loader-runner": "^4.1.0",
4546
"loader-utils": "^2.0.0",
46-
"neo-async": "^2.6.2"
47+
"neo-async": "^2.6.2",
48+
"schema-utils": "^3.0.0"
4749
},
4850
"devDependencies": {
4951
"@babel/cli": "^7.12.1",
@@ -72,7 +74,7 @@
7274
"npm-run-all": "^4.1.5",
7375
"prettier": "^2.1.2",
7476
"sass": "^1.27.0",
75-
"sass-loader": "^10.0.4",
77+
"sass-loader": "^11.0.1",
7678
"standard-version": "^9.0.0",
7779
"webpack": "^5.3.0",
7880
"webpack-cli": "^4.1.0",

‎src/worker.js

+51
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,12 @@
22
import fs from 'fs';
33
import NativeModule from 'module';
44

5+
import querystring from 'querystring';
6+
57
import loaderRunner from 'loader-runner';
68
import asyncQueue from 'neo-async/queue';
9+
import parseJson from 'json-parse-better-errors';
10+
import { validate } from 'schema-utils';
711

812
import readBuffer from './readBuffer';
913
import { replacer, reviver } from './serializer';
@@ -158,6 +162,53 @@ const queue = asyncQueue(({ id, data }, taskCallback) => {
158162
});
159163
}
160164
},
165+
// Not an arrow function because it uses this
166+
getOptions(schema) {
167+
// loaders, loaderIndex will be defined by runLoaders
168+
const loader = this.loaders[this.loaderIndex];
169+
170+
// Verbatim copy from
171+
// https://github.com/webpack/webpack/blob/v5.31.2/lib/NormalModule.js#L471-L508
172+
// except eslint/prettier differences
173+
// -- unfortunate result of getOptions being synchronous functions.
174+
175+
let { options } = loader;
176+
177+
if (typeof options === 'string') {
178+
if (options.substr(0, 1) === '{' && options.substr(-1) === '}') {
179+
try {
180+
options = parseJson(options);
181+
} catch (e) {
182+
throw new Error(`Cannot parse string options: ${e.message}`);
183+
}
184+
} else {
185+
options = querystring.parse(options, '&', '=', {
186+
maxKeys: 0,
187+
});
188+
}
189+
}
190+
191+
// eslint-disable-next-line no-undefined
192+
if (options === null || options === undefined) {
193+
options = {};
194+
}
195+
196+
if (schema) {
197+
let name = 'Loader';
198+
let baseDataPath = 'options';
199+
let match;
200+
// eslint-disable-next-line no-cond-assign
201+
if (schema.title && (match = /^(.+) (.+)$/.exec(schema.title))) {
202+
[, name, baseDataPath] = match;
203+
}
204+
validate(schema, options, {
205+
name,
206+
baseDataPath,
207+
});
208+
}
209+
210+
return options;
211+
},
161212
emitWarning: (warning) => {
162213
writeJson({
163214
type: 'emitWarning',

0 commit comments

Comments
 (0)
Please sign in to comment.