Skip to content

Commit 3b2d3b1

Browse files
authored
fix: base64safe regex
1 parent 2d6ed3c commit 3b2d3b1

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

lib/interpolateName.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ function interpolateName(loaderContext, name, options = {}) {
7777
// `hash` and `contenthash` are same in `loader-utils` context
7878
// let's keep `hash` for backward compatibility
7979
.replace(
80-
/\[(?:([^[:\]]+):)?(?:hash|contenthash)(?::([a-z]+\d*))?(?::(\d+))?\]/gi,
80+
/\[(?:([^[:\]]+):)?(?:hash|contenthash)(?::([a-z]+\d*(?:safe)?))?(?::(\d+))?\]/gi,
8181
(all, hashType, digestType, maxLength) =>
8282
getHashDigest(content, hashType, digestType, parseInt(maxLength, 10))
8383
);

test/interpolateName.test.js

+6
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,12 @@ describe("interpolateName()", () => {
118118
"test content",
119119
"modal.lHP90NiApDwht3eNNIch.css",
120120
],
121+
[
122+
"/lib/components/modal/modal.css",
123+
"[name].[md5:contenthash:base64safe:20].[ext]",
124+
"test content",
125+
"modal.8osQznuT8jOAwdzg_nek.css",
126+
],
121127
// Should not interpret without `hash` or `contenthash`
122128
[
123129
"/lib/components/modal/modal.css",

0 commit comments

Comments
 (0)