|
@@ -1,3 +1,5 @@
|
|
|
+const findAsset = require('./findAsset.js');
|
|
|
+
|
|
|
/**
|
|
|
* The regular expression to find asset names in a string
|
|
|
*
|
|
@@ -6,7 +8,7 @@
|
|
|
const defaultAssetRegex = /[{]{2}([^}]+)[}]{2}/g;
|
|
|
|
|
|
/**
|
|
|
- * Replaces asset names with the first of the asset files from a webpack compilation.
|
|
|
+ * Replaces asset names with the asset files from a webpack compilation.
|
|
|
*
|
|
|
* @param {string} targetSource - a string in which to replace the assets
|
|
|
* @param {Object} assetFileNames - a map of available asset names and their containing files
|
|
@@ -14,12 +16,14 @@ const defaultAssetRegex = /[{]{2}([^}]+)[}]{2}/g;
|
|
|
*/
|
|
|
function replaceAssets (targetSource, assetFileNames) {
|
|
|
return targetSource.replace(defaultAssetRegex, function replaceAsset (match, assetName) {
|
|
|
- if (!(assetFileNames[assetName] && assetFileNames[assetName].length)) {
|
|
|
+ const asset = findAsset(assetFileNames, assetName);
|
|
|
+
|
|
|
+ if (!asset) {
|
|
|
console.warn(`no asset for '${assetName}' was found`);
|
|
|
return match;
|
|
|
}
|
|
|
|
|
|
- return assetFileNames[assetName];
|
|
|
+ return asset;
|
|
|
});
|
|
|
}
|
|
|
|