Skip to content

Commit c34c8e3

Browse files
fix: handle pkg: scheme (#1191)
1 parent 1fa54da commit c34c8e3

File tree

7 files changed

+80
-1
lines changed

7 files changed

+80
-1
lines changed

src/utils.js

+11-1
Original file line numberDiff line numberDiff line change
@@ -303,6 +303,8 @@ const MODULE_REQUEST_REGEX = /^[^?]*~/;
303303
const IS_MODULE_IMPORT =
304304
/^~([^/]+|[^/]+\/|@[^/]+[/][^/]+|@[^/]+\/?|@[^/]+[/][^/]+\/)$/;
305305

306+
const IS_PKG_SCHEME = /^pkg:/i;
307+
306308
/**
307309
* When `sass`/`node-sass` tries to resolve an import, it uses a special algorithm.
308310
* Since the `sass-loader` uses webpack to resolve the modules, we need to simulate that algorithm.
@@ -331,7 +333,13 @@ function getPossibleRequests(
331333
request = request.replace(MODULE_REQUEST_REGEX, "");
332334
}
333335

334-
if (IS_MODULE_IMPORT.test(url)) {
336+
if (IS_PKG_SCHEME.test(url)) {
337+
request = `${request.slice(4)}`;
338+
339+
return [...new Set([request, url])];
340+
}
341+
342+
if (IS_MODULE_IMPORT.test(url) || IS_PKG_SCHEME.test(url)) {
335343
request = request[request.length - 1] === "/" ? request : `${request}/`;
336344

337345
return [...new Set([request, url])];
@@ -538,6 +546,8 @@ function getWebpackResolver(
538546
const needEmulateSassResolver =
539547
// `sass` doesn't support module import
540548
!IS_SPECIAL_MODULE_IMPORT.test(request) &&
549+
// don't handle `pkg:` scheme
550+
!IS_PKG_SCHEME.test(request) &&
541551
// We need improve absolute paths handling.
542552
// Absolute paths should be resolved:
543553
// - Server-relative URLs - `<context>/path/to/file.ext` (where `<context>` is root context)

test/__snapshots__/loader.test.js.snap

+40
Original file line numberDiff line numberDiff line change
@@ -359192,6 +359192,46 @@ exports[`loader should work with "bootstrap" package v5, import as a package ('s
359192359192

359193359193
exports[`loader should work with "bootstrap" package v5, import as a package ('sass-embedded', 'legacy' API, 'scss' syntax): warnings 1`] = `[]`;
359194359194

359195+
exports[`loader should work with "pkg" prefix in "@use" ('dart-sass', 'legacy' API, 'sass' syntax) with "@charset "UTF-8";": css 1`] = `
359196+
".foo {
359197+
color: red;
359198+
}"
359199+
`;
359200+
359201+
exports[`loader should work with "pkg" prefix in "@use" ('dart-sass', 'legacy' API, 'sass' syntax) with "@charset "UTF-8";": errors 1`] = `[]`;
359202+
359203+
exports[`loader should work with "pkg" prefix in "@use" ('dart-sass', 'legacy' API, 'sass' syntax) with "@charset "UTF-8";": warnings 1`] = `[]`;
359204+
359205+
exports[`loader should work with "pkg" prefix in "@use" ('dart-sass', 'legacy' API, 'scss' syntax) with "@charset "UTF-8";": css 1`] = `
359206+
".foo {
359207+
color: red;
359208+
}"
359209+
`;
359210+
359211+
exports[`loader should work with "pkg" prefix in "@use" ('dart-sass', 'legacy' API, 'scss' syntax) with "@charset "UTF-8";": errors 1`] = `[]`;
359212+
359213+
exports[`loader should work with "pkg" prefix in "@use" ('dart-sass', 'legacy' API, 'scss' syntax) with "@charset "UTF-8";": warnings 1`] = `[]`;
359214+
359215+
exports[`loader should work with "pkg" prefix in "@use" ('sass-embedded', 'legacy' API, 'sass' syntax) with "@charset "UTF-8";": css 1`] = `
359216+
".foo {
359217+
color: red;
359218+
}"
359219+
`;
359220+
359221+
exports[`loader should work with "pkg" prefix in "@use" ('sass-embedded', 'legacy' API, 'sass' syntax) with "@charset "UTF-8";": errors 1`] = `[]`;
359222+
359223+
exports[`loader should work with "pkg" prefix in "@use" ('sass-embedded', 'legacy' API, 'sass' syntax) with "@charset "UTF-8";": warnings 1`] = `[]`;
359224+
359225+
exports[`loader should work with "pkg" prefix in "@use" ('sass-embedded', 'legacy' API, 'scss' syntax) with "@charset "UTF-8";": css 1`] = `
359226+
".foo {
359227+
color: red;
359228+
}"
359229+
`;
359230+
359231+
exports[`loader should work with "pkg" prefix in "@use" ('sass-embedded', 'legacy' API, 'scss' syntax) with "@charset "UTF-8";": errors 1`] = `[]`;
359232+
359233+
exports[`loader should work with "pkg" prefix in "@use" ('sass-embedded', 'legacy' API, 'scss' syntax) with "@charset "UTF-8";": warnings 1`] = `[]`;
359234+
359195359235
exports[`loader should work with a package with "sass" and "exports" fields ('dart-sass', 'legacy' API, 'sass' syntax): css 1`] = `
359196359236
".load-me {
359197359237
color: red;

test/loader.test.js

+17
Original file line numberDiff line numberDiff line change
@@ -2142,6 +2142,23 @@ describe("loader", () => {
21422142
expect(getErrors(stats)).toMatchSnapshot("errors");
21432143
});
21442144
}
2145+
2146+
if (!isModernAPI) {
2147+
it(`should work with "pkg" prefix in "@use" ('${implementationName}', '${api}' API, '${syntax}' syntax) with "@charset "UTF-8";"`, async () => {
2148+
const testId = getTestId("use-pkg", syntax);
2149+
const options = {
2150+
implementation,
2151+
api,
2152+
};
2153+
const compiler = getCompiler(testId, { loader: { options } });
2154+
const stats = await compile(compiler);
2155+
const codeFromBundle = getCodeFromBundle(stats, compiler);
2156+
2157+
expect(codeFromBundle.css).toMatchSnapshot("css");
2158+
expect(getWarnings(stats)).toMatchSnapshot("warnings");
2159+
expect(getErrors(stats)).toMatchSnapshot("errors");
2160+
});
2161+
}
21452162
}
21462163
});
21472164
});

test/node_modules/pkg/package.json

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

test/node_modules/pkg/styles/index.scss

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

test/sass/use-pkg.sass

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@use 'pkg:pkg'

test/scss/use-pkg.scss

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@use 'pkg:pkg';

0 commit comments

Comments
 (0)