You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
2.1 KiB
86 lines
2.1 KiB
"use strict";
|
|
|
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
|
|
var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));
|
|
|
|
/*
|
|
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 fse = require('fs-extra');
|
|
|
|
const path = require('path');
|
|
|
|
const errors = require('./errors');
|
|
|
|
const populateSWTemplate = require('./populate-sw-template');
|
|
|
|
module.exports =
|
|
/*#__PURE__*/
|
|
function () {
|
|
var _ref = (0, _asyncToGenerator2.default)(function* ({
|
|
cacheId,
|
|
cleanupOutdatedCaches,
|
|
clientsClaim,
|
|
directoryIndex,
|
|
handleFetch,
|
|
ignoreURLParametersMatching,
|
|
importScripts,
|
|
manifestEntries,
|
|
modulePathPrefix,
|
|
navigateFallback,
|
|
navigateFallbackBlacklist,
|
|
navigateFallbackWhitelist,
|
|
navigationPreload,
|
|
offlineGoogleAnalytics,
|
|
runtimeCaching,
|
|
skipWaiting,
|
|
swDest,
|
|
workboxSWImport
|
|
}) {
|
|
try {
|
|
yield fse.mkdirp(path.dirname(swDest));
|
|
} catch (error) {
|
|
throw new Error(`${errors['unable-to-make-sw-directory']}. ` + `'${error.message}'`);
|
|
}
|
|
|
|
const populatedTemplate = populateSWTemplate({
|
|
cacheId,
|
|
cleanupOutdatedCaches,
|
|
clientsClaim,
|
|
directoryIndex,
|
|
handleFetch,
|
|
ignoreURLParametersMatching,
|
|
importScripts,
|
|
manifestEntries,
|
|
modulePathPrefix,
|
|
navigateFallback,
|
|
navigateFallbackBlacklist,
|
|
navigateFallbackWhitelist,
|
|
navigationPreload,
|
|
offlineGoogleAnalytics,
|
|
runtimeCaching,
|
|
skipWaiting,
|
|
workboxSWImport
|
|
});
|
|
|
|
try {
|
|
yield fse.writeFile(swDest, populatedTemplate);
|
|
} catch (error) {
|
|
if (error.code === 'EISDIR') {
|
|
// See https://github.com/GoogleChrome/workbox/issues/612
|
|
throw new Error(errors['sw-write-failure-directory']);
|
|
}
|
|
|
|
throw new Error(`${errors['sw-write-failure']}. '${error.message}'`);
|
|
}
|
|
});
|
|
|
|
return function (_x) {
|
|
return _ref.apply(this, arguments);
|
|
};
|
|
}();
|