forked from mystiq/hydrogen-web
log swSource as build fails in CI
This commit is contained in:
parent
23e0d3f2ff
commit
9a82f88e1f
1 changed files with 2 additions and 2 deletions
|
@ -100,14 +100,14 @@ function replaceCacheFilenamesInServiceWorker(swChunk, unhashedFilenames, assets
|
|||
const replaceArrayInSource = (name, value) => {
|
||||
const newSource = swSource.replace(`${name} = []`, `${name} = ${JSON.stringify(value)}`);
|
||||
if (newSource === swSource) {
|
||||
throw new Error(`${name} was not found in the service worker source`);
|
||||
throw new Error(`${name} was not found in the service worker source: ` + swSource);
|
||||
}
|
||||
return newSource;
|
||||
};
|
||||
const replaceStringInSource = (name, value) => {
|
||||
const newSource = swSource.replace(new RegExp(`${name}\\s=\\s"[^"]*"`), `${name} = ${JSON.stringify(value)}`);
|
||||
if (newSource === swSource) {
|
||||
throw new Error(`${name} was not found in the service worker source`);
|
||||
throw new Error(`${name} was not found in the service worker source: ` + swSource);
|
||||
}
|
||||
return newSource;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue