2021-10-11 21:35:40 +02:00
|
|
|
import {
|
2021-03-26 14:02:14 +01:00
|
|
|
replaceImportsFromStaticInJsCode,
|
2022-07-22 16:38:44 +02:00
|
|
|
replaceImportsInInlineCssCode,
|
2021-03-26 14:02:14 +01:00
|
|
|
replaceImportsInCssCode,
|
2021-10-11 21:35:40 +02:00
|
|
|
generateCssCodeToDefineGlobals,
|
2021-06-28 04:04:48 +02:00
|
|
|
} from "../../bin/build-keycloak-theme/replaceImportFromStatic";
|
2022-07-22 15:35:23 +02:00
|
|
|
import { assert } from "tsafe/assert";
|
|
|
|
import { same } from "evt/tools/inDepth/same";
|
|
|
|
import { assetIsSameCode } from "../tools/assertIsSameCode";
|
2021-02-21 17:38:59 +01:00
|
|
|
|
2022-07-22 16:38:44 +02:00
|
|
|
/*
|
|
|
|
NOTES:
|
|
|
|
When not compiled with --external-assets urlOrigin will always be undefined regardless of the "homepage" field.
|
|
|
|
When compiled with --external-assets and we have a home page filed like "https://example.com" or "https://example.com/x/y/z" urlOrigin will be "https://example.com"
|
|
|
|
Regardless of if it's compiled with --external-assets or not, if "homepage" is like "https://example.com/x/y/z" urlPathname will be "/x/y/z/"
|
|
|
|
*/
|
|
|
|
|
2022-07-22 15:35:23 +02:00
|
|
|
{
|
|
|
|
const jsCodeUntransformed = `
|
2021-02-21 17:38:59 +01:00
|
|
|
function f() {
|
2021-04-11 18:18:52 +02:00
|
|
|
return a.p+"static/js/" + ({}[e] || e) + "." + {
|
2021-02-21 17:38:59 +01:00
|
|
|
3: "0664cdc0"
|
|
|
|
}[e] + ".chunk.js"
|
|
|
|
}
|
2022-07-22 15:35:23 +02:00
|
|
|
|
2022-07-28 04:24:10 +02:00
|
|
|
function sameAsF() {
|
2021-04-11 18:18:52 +02:00
|
|
|
return a.p+"static/js/" + ({}[e] || e) + "." + {
|
2021-02-21 17:38:59 +01:00
|
|
|
3: "0664cdc0"
|
|
|
|
}[e] + ".chunk.js"
|
|
|
|
}
|
2022-07-22 18:20:50 +02:00
|
|
|
|
2022-07-28 04:24:10 +02:00
|
|
|
n.u=function(e){return"static/js/" + e + "." + {
|
2022-07-22 18:20:50 +02:00
|
|
|
147: "6c5cee76",
|
|
|
|
787: "8da10fcf",
|
|
|
|
922: "be170a73"
|
|
|
|
} [e] + ".chunk.js"
|
|
|
|
}
|
2022-07-22 15:35:23 +02:00
|
|
|
`;
|
2021-04-11 18:18:52 +02:00
|
|
|
|
2022-07-22 15:35:23 +02:00
|
|
|
{
|
|
|
|
const { fixedJsCode } = replaceImportsFromStaticInJsCode({
|
|
|
|
"jsCode": jsCodeUntransformed,
|
|
|
|
"urlOrigin": undefined,
|
|
|
|
});
|
|
|
|
|
|
|
|
const fixedJsCodeExpected = `
|
|
|
|
function f() {
|
|
|
|
return window.kcContext.url.resourcesPath + "/build/static/js/" + ({}[e] || e) + "." + {
|
|
|
|
3: "0664cdc0"
|
|
|
|
}[e] + ".chunk.js"
|
|
|
|
}
|
|
|
|
|
2022-07-28 04:24:10 +02:00
|
|
|
function sameAsF() {
|
2022-07-22 15:35:23 +02:00
|
|
|
return window.kcContext.url.resourcesPath + "/build/static/js/" + ({}[e] || e) + "." + {
|
|
|
|
3: "0664cdc0"
|
|
|
|
}[e] + ".chunk.js"
|
|
|
|
}
|
2022-07-22 18:20:50 +02:00
|
|
|
|
2022-07-28 04:24:10 +02:00
|
|
|
n[(function (){
|
2022-07-22 18:20:50 +02:00
|
|
|
Object.defineProperty(n, "p", {
|
|
|
|
get: function() { return window.kcContext.url.resourcesPath; },
|
|
|
|
set: function (){}
|
|
|
|
});
|
2022-07-28 04:24:10 +02:00
|
|
|
return "u";
|
|
|
|
})()] = function(e) {
|
2022-07-22 18:20:50 +02:00
|
|
|
return "/build/static/js/" + e + "." + {
|
|
|
|
147: "6c5cee76",
|
|
|
|
787: "8da10fcf",
|
|
|
|
922: "be170a73"
|
|
|
|
} [e] + ".chunk.js"
|
|
|
|
}
|
2022-07-22 15:35:23 +02:00
|
|
|
`;
|
|
|
|
|
|
|
|
assetIsSameCode(fixedJsCode, fixedJsCodeExpected);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const { fixedJsCode } = replaceImportsFromStaticInJsCode({
|
|
|
|
"jsCode": jsCodeUntransformed,
|
2022-07-22 16:38:44 +02:00
|
|
|
"urlOrigin": "https://demo-app.keycloakify.dev",
|
2022-07-22 15:35:23 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
const fixedJsCodeExpected = `
|
|
|
|
function f() {
|
2022-07-22 16:38:44 +02:00
|
|
|
return ("kcContext" in window ? "https://demo-app.keycloakify.dev" : "") + a.p + "static/js/" + ({}[e] || e) + "." + {
|
2022-07-22 15:35:23 +02:00
|
|
|
3: "0664cdc0"
|
|
|
|
}[e] + ".chunk.js"
|
|
|
|
}
|
|
|
|
|
2022-07-28 04:24:10 +02:00
|
|
|
function sameAsF() {
|
2022-07-22 16:38:44 +02:00
|
|
|
return ("kcContext" in window ? "https://demo-app.keycloakify.dev" : "") + a.p + "static/js/" + ({}[e] || e) + "." + {
|
2022-07-22 15:35:23 +02:00
|
|
|
3: "0664cdc0"
|
|
|
|
}[e] + ".chunk.js"
|
|
|
|
}
|
2022-07-22 18:20:50 +02:00
|
|
|
|
2022-07-28 04:24:10 +02:00
|
|
|
n[(function (){
|
|
|
|
var p= "";
|
|
|
|
Object.defineProperty(n, "p", {
|
|
|
|
get: function() { return ("kcContext" in window ? "https://demo-app.keycloakify.dev" : "") + p; },
|
|
|
|
set: function (value){ p = value; }
|
|
|
|
});
|
|
|
|
return "u";
|
|
|
|
})()] = function(e) {
|
2022-07-22 18:20:50 +02:00
|
|
|
return "static/js/" + e + "." + {
|
|
|
|
147: "6c5cee76",
|
|
|
|
787: "8da10fcf",
|
|
|
|
922: "be170a73"
|
|
|
|
} [e] + ".chunk.js"
|
|
|
|
}
|
2022-07-22 15:35:23 +02:00
|
|
|
`;
|
|
|
|
|
|
|
|
assetIsSameCode(fixedJsCode, fixedJsCodeExpected);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const { fixedCssCode, cssGlobalsToDefine } = replaceImportsInCssCode({
|
|
|
|
"cssCode": `
|
|
|
|
.my-div {
|
|
|
|
background: url(/logo192.png) no-repeat center center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.my-div2 {
|
|
|
|
background: url(/logo192.png) no-repeat center center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.my-div {
|
|
|
|
background-image: url(/static/media/something.svg);
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
});
|
|
|
|
|
|
|
|
const fixedCssCodeExpected = `
|
|
|
|
.my-div {
|
|
|
|
background: var(--url1f9ef5a892c104c);
|
2021-04-11 18:18:52 +02:00
|
|
|
}
|
|
|
|
|
2022-07-22 15:35:23 +02:00
|
|
|
.my-div2 {
|
|
|
|
background: var(--url1f9ef5a892c104c);
|
2021-04-11 18:18:52 +02:00
|
|
|
}
|
2021-02-21 17:38:59 +01:00
|
|
|
|
2022-07-22 15:35:23 +02:00
|
|
|
.my-div {
|
|
|
|
background-image: var(--urldd75cab58377c19);
|
|
|
|
}
|
|
|
|
`;
|
2021-02-21 17:38:59 +01:00
|
|
|
|
2022-07-22 15:35:23 +02:00
|
|
|
assetIsSameCode(fixedCssCode, fixedCssCodeExpected);
|
2021-02-21 17:38:59 +01:00
|
|
|
|
2022-07-22 15:35:23 +02:00
|
|
|
const cssGlobalsToDefineExpected = {
|
|
|
|
"url1f9ef5a892c104c": "url(/logo192.png) no-repeat center center",
|
|
|
|
"urldd75cab58377c19": "url(/static/media/something.svg)",
|
|
|
|
};
|
2021-02-21 17:38:59 +01:00
|
|
|
|
2022-07-22 15:35:23 +02:00
|
|
|
assert(same(cssGlobalsToDefine, cssGlobalsToDefineExpected));
|
2021-02-21 17:38:59 +01:00
|
|
|
|
2022-07-22 15:35:23 +02:00
|
|
|
const { cssCodeToPrependInHead } = generateCssCodeToDefineGlobals({
|
|
|
|
cssGlobalsToDefine,
|
|
|
|
"urlPathname": "/",
|
|
|
|
});
|
2021-02-21 17:38:59 +01:00
|
|
|
|
2022-07-22 15:35:23 +02:00
|
|
|
const cssCodeToPrependInHeadExpected = `
|
|
|
|
:root {
|
|
|
|
--url1f9ef5a892c104c: url(\${url.resourcesPath}/build/logo192.png) no-repeat center center;
|
|
|
|
--urldd75cab58377c19: url(\${url.resourcesPath}/build/static/media/something.svg);
|
|
|
|
}
|
|
|
|
`;
|
2021-02-21 17:38:59 +01:00
|
|
|
|
2022-07-22 15:35:23 +02:00
|
|
|
assetIsSameCode(cssCodeToPrependInHead, cssCodeToPrependInHeadExpected);
|
|
|
|
}
|
2021-02-21 17:38:59 +01:00
|
|
|
|
2022-07-22 17:22:23 +02:00
|
|
|
{
|
|
|
|
const { fixedCssCode, cssGlobalsToDefine } = replaceImportsInCssCode({
|
|
|
|
"cssCode": `
|
|
|
|
.my-div {
|
|
|
|
background: url(/x/y/z/logo192.png) no-repeat center center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.my-div2 {
|
|
|
|
background: url(/x/y/z/logo192.png) no-repeat center center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.my-div {
|
|
|
|
background-image: url(/x/y/z/static/media/something.svg);
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
});
|
|
|
|
|
|
|
|
const fixedCssCodeExpected = `
|
|
|
|
.my-div {
|
|
|
|
background: var(--urlf8277cddaa2be78);
|
|
|
|
}
|
|
|
|
|
|
|
|
.my-div2 {
|
|
|
|
background: var(--urlf8277cddaa2be78);
|
|
|
|
}
|
|
|
|
|
|
|
|
.my-div {
|
|
|
|
background-image: var(--url8bdc0887b97ac9a);
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
assetIsSameCode(fixedCssCode, fixedCssCodeExpected);
|
|
|
|
|
|
|
|
const cssGlobalsToDefineExpected = {
|
|
|
|
"urlf8277cddaa2be78": "url(/x/y/z/logo192.png) no-repeat center center",
|
|
|
|
"url8bdc0887b97ac9a": "url(/x/y/z/static/media/something.svg)",
|
|
|
|
};
|
|
|
|
|
|
|
|
assert(same(cssGlobalsToDefine, cssGlobalsToDefineExpected));
|
|
|
|
|
|
|
|
const { cssCodeToPrependInHead } = generateCssCodeToDefineGlobals({
|
|
|
|
cssGlobalsToDefine,
|
|
|
|
"urlPathname": "/x/y/z/",
|
|
|
|
});
|
|
|
|
|
|
|
|
const cssCodeToPrependInHeadExpected = `
|
|
|
|
:root {
|
|
|
|
--urlf8277cddaa2be78: url(\${url.resourcesPath}/build/logo192.png) no-repeat center center;
|
|
|
|
--url8bdc0887b97ac9a: url(\${url.resourcesPath}/build/static/media/something.svg);
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
assetIsSameCode(cssCodeToPrependInHead, cssCodeToPrependInHeadExpected);
|
|
|
|
}
|
|
|
|
|
2022-07-22 16:38:44 +02:00
|
|
|
{
|
|
|
|
const cssCode = `
|
|
|
|
@font-face {
|
|
|
|
font-family: "Work Sans";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
font-display: swap;
|
|
|
|
src: url("/fonts/WorkSans/worksans-regular-webfont.woff2") format("woff2");
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: "Work Sans";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 500;
|
|
|
|
font-display: swap;
|
|
|
|
src: url("/fonts/WorkSans/worksans-medium-webfont.woff2") format("woff2");
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: "Work Sans";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 600;
|
|
|
|
font-display: swap;
|
|
|
|
src: url("/fonts/WorkSans/worksans-semibold-webfont.woff2") format("woff2");
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: "Work Sans";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 700;
|
|
|
|
font-display: swap;
|
|
|
|
src: url("/fonts/WorkSans/worksans-bold-webfont.woff2") format("woff2");
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
{
|
|
|
|
const { fixedCssCode } = replaceImportsInInlineCssCode({
|
|
|
|
cssCode,
|
|
|
|
"urlOrigin": undefined,
|
|
|
|
"urlPathname": "/",
|
|
|
|
});
|
|
|
|
|
|
|
|
const fixedCssCodeExpected = `
|
|
|
|
@font-face {
|
|
|
|
font-family: "Work Sans";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
font-display: swap;
|
|
|
|
src: url(\${url.resourcesPath}/build/fonts/WorkSans/worksans-regular-webfont.woff2)
|
|
|
|
format("woff2");
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: "Work Sans";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 500;
|
|
|
|
font-display: swap;
|
|
|
|
src: url(\${url.resourcesPath}/build/fonts/WorkSans/worksans-medium-webfont.woff2)
|
|
|
|
format("woff2");
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: "Work Sans";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 600;
|
|
|
|
font-display: swap;
|
|
|
|
src: url(\${url.resourcesPath}/build/fonts/WorkSans/worksans-semibold-webfont.woff2)
|
|
|
|
format("woff2");
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: "Work Sans";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 700;
|
|
|
|
font-display: swap;
|
|
|
|
src: url(\${url.resourcesPath}/build/fonts/WorkSans/worksans-bold-webfont.woff2)
|
|
|
|
format("woff2");
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
assetIsSameCode(fixedCssCode, fixedCssCodeExpected);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const { fixedCssCode } = replaceImportsInInlineCssCode({
|
|
|
|
cssCode,
|
|
|
|
"urlOrigin": "https://demo-app.keycloakify.dev",
|
|
|
|
"urlPathname": "/",
|
|
|
|
});
|
|
|
|
|
|
|
|
const fixedCssCodeExpected = `
|
|
|
|
@font-face {
|
|
|
|
font-family: "Work Sans";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
font-display: swap;
|
|
|
|
src: url(https://demo-app.keycloakify.dev/fonts/WorkSans/worksans-regular-webfont.woff2)
|
|
|
|
format("woff2");
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: "Work Sans";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 500;
|
|
|
|
font-display: swap;
|
|
|
|
src: url(https://demo-app.keycloakify.dev/fonts/WorkSans/worksans-medium-webfont.woff2)
|
|
|
|
format("woff2");
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: "Work Sans";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 600;
|
|
|
|
font-display: swap;
|
|
|
|
src: url(https://demo-app.keycloakify.dev/fonts/WorkSans/worksans-semibold-webfont.woff2)
|
|
|
|
format("woff2");
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: "Work Sans";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 700;
|
|
|
|
font-display: swap;
|
|
|
|
src: url(https://demo-app.keycloakify.dev/fonts/WorkSans/worksans-bold-webfont.woff2)
|
|
|
|
format("woff2");
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
assetIsSameCode(fixedCssCode, fixedCssCodeExpected);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-22 17:33:53 +02:00
|
|
|
{
|
|
|
|
const cssCode = `
|
|
|
|
@font-face {
|
|
|
|
font-family: "Work Sans";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
font-display: swap;
|
|
|
|
src: url("/x/y/z/fonts/WorkSans/worksans-regular-webfont.woff2") format("woff2");
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: "Work Sans";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 500;
|
|
|
|
font-display: swap;
|
|
|
|
src: url("/x/y/z/fonts/WorkSans/worksans-medium-webfont.woff2") format("woff2");
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: "Work Sans";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 600;
|
|
|
|
font-display: swap;
|
|
|
|
src: url("/x/y/z/fonts/WorkSans/worksans-semibold-webfont.woff2") format("woff2");
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: "Work Sans";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 700;
|
|
|
|
font-display: swap;
|
|
|
|
src: url("/x/y/z/fonts/WorkSans/worksans-bold-webfont.woff2") format("woff2");
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
{
|
|
|
|
const { fixedCssCode } = replaceImportsInInlineCssCode({
|
|
|
|
cssCode,
|
|
|
|
"urlOrigin": undefined,
|
|
|
|
"urlPathname": "/x/y/z/",
|
|
|
|
});
|
|
|
|
|
|
|
|
const fixedCssCodeExpected = `
|
|
|
|
@font-face {
|
|
|
|
font-family: "Work Sans";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
font-display: swap;
|
|
|
|
src: url(\${url.resourcesPath}/build/fonts/WorkSans/worksans-regular-webfont.woff2)
|
|
|
|
format("woff2");
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: "Work Sans";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 500;
|
|
|
|
font-display: swap;
|
|
|
|
src: url(\${url.resourcesPath}/build/fonts/WorkSans/worksans-medium-webfont.woff2)
|
|
|
|
format("woff2");
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: "Work Sans";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 600;
|
|
|
|
font-display: swap;
|
|
|
|
src: url(\${url.resourcesPath}/build/fonts/WorkSans/worksans-semibold-webfont.woff2)
|
|
|
|
format("woff2");
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: "Work Sans";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 700;
|
|
|
|
font-display: swap;
|
|
|
|
src: url(\${url.resourcesPath}/build/fonts/WorkSans/worksans-bold-webfont.woff2)
|
|
|
|
format("woff2");
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
assetIsSameCode(fixedCssCode, fixedCssCodeExpected);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const { fixedCssCode } = replaceImportsInInlineCssCode({
|
|
|
|
cssCode,
|
|
|
|
"urlOrigin": "https://demo-app.keycloakify.dev",
|
|
|
|
"urlPathname": "/x/y/z/",
|
|
|
|
});
|
|
|
|
|
|
|
|
const fixedCssCodeExpected = `
|
|
|
|
@font-face {
|
|
|
|
font-family: "Work Sans";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
font-display: swap;
|
|
|
|
src: url(https://demo-app.keycloakify.dev/x/y/z/fonts/WorkSans/worksans-regular-webfont.woff2)
|
|
|
|
format("woff2");
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: "Work Sans";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 500;
|
|
|
|
font-display: swap;
|
|
|
|
src: url(https://demo-app.keycloakify.dev/x/y/z/fonts/WorkSans/worksans-medium-webfont.woff2)
|
|
|
|
format("woff2");
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: "Work Sans";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 600;
|
|
|
|
font-display: swap;
|
|
|
|
src: url(https://demo-app.keycloakify.dev/x/y/z/fonts/WorkSans/worksans-semibold-webfont.woff2)
|
|
|
|
format("woff2");
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: "Work Sans";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 700;
|
|
|
|
font-display: swap;
|
|
|
|
src: url(https://demo-app.keycloakify.dev/x/y/z/fonts/WorkSans/worksans-bold-webfont.woff2)
|
|
|
|
format("woff2");
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
assetIsSameCode(fixedCssCode, fixedCssCodeExpected);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-22 15:35:23 +02:00
|
|
|
console.log("PASS replace import from static");
|