workbox-webpack-plugin
Version:
A plugin for your Webpack build process, helping you generate a manifest of local files that workbox-sw should precache.
28 lines (23 loc) • 701 B
JavaScript
/*
Copyright 2018 Google LLC
Use of this source code is governed by an MIT-style
license that can be found in the LICENSE file or at
https://opensource.org/licenses/MIT.
*/
const crypto = require('crypto');
/**
* @param {WebpackAsset} asset
* @return {string} The MD5 hash of the asset's source.
*
* @private
*/
module.exports = asset => {
// If webpack has the asset marked as immutable, then we don't need to
// use an out-of-band revision for it.
// See https://github.com/webpack/webpack/issues/9038
if (asset.info && asset.info.immutable) {
return null;
}
return crypto.createHash('md5').update(Buffer.from(asset.source.source())).digest('hex');
};
;