'use strict'; /* Copyright 2017 Google Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ var stringify = require('json-stable-stringify'); /** * The variable name that workbox-sw expects manifest entries to be assigned. * @type {String} * @private */ var PRECACHE_MANIFEST_VAR = '__precacheManifest'; /** * Generates a template string from an array of manifest entries that can be * written to a manifest file. * * @function generateManifestWithWebpack * @param {Array} manifestEntries * @return {string} service worker manifest file string * * @private */ module.exports = function (manifestEntries) { var sortedEntries = manifestEntries.sort(function (a, b) { return a.url < b.url; }); // json-stable-stringify ensures that we get a consistent output, with all // the properties of each object sorted. // There's a hash created of the serialized JSON data, and we want the hash to // be the same if the data is the same, without any sort-order variation. var entriesJson = stringify(sortedEntries, { space: 2 }); return `self.${PRECACHE_MANIFEST_VAR} = ${entriesJson};`; };