fix gulpfile for service worker, adjustment in SW, remove comment

This commit is contained in:
Felix Schulze 2019-11-11 00:07:36 +01:00
parent 3cb9bd4259
commit 6d44a64193
3 changed files with 15 additions and 26 deletions

View File

@ -113,9 +113,7 @@ var cleanDist = function (done) {
// Repeated JavaScript tasks // Repeated JavaScript tasks
var jsTasks = lazypipe() var jsTasks = lazypipe()
.pipe(header, banner.main, {package: package})
.pipe(optimizejs) .pipe(optimizejs)
.pipe(dest, paths.scripts.output)
//.pipe(rename, {suffix: '.min'}) //.pipe(rename, {suffix: '.min'})
.pipe(uglify) .pipe(uglify)
.pipe(optimizejs) .pipe(optimizejs)
@ -241,6 +239,14 @@ var updateAssetVersion = function (done) {
.pipe(hashsrc({build_dir:paths.output,src_path:"src",hash_len:"6",query_name:"v",exts:[".json"]})) .pipe(hashsrc({build_dir:paths.output,src_path:"src",hash_len:"6",query_name:"v",exts:[".json"]}))
.pipe(dest(paths.output)); .pipe(dest(paths.output));
}; };
var updateSWVersion = function (done) {
return src('src/sw.js')
.pipe(hashsrc({build_dir:paths.output,src_path:"src",hash_len:"6",query_name:"v",
regex:/\s*(?:(")([^"]*)|(')([^']*))/ig,
analyze: function analyze(match){return {prefix: "'",link:match[4],suffix: ''};}
}))
.pipe(dest(paths.output));
};
// Watch for changes to the src directory // Watch for changes to the src directory
var startServer = function (done) { var startServer = function (done) {
@ -290,6 +296,7 @@ exports.default = series(
), ),
buildStyles, buildStyles,
updateAssetVersion, updateAssetVersion,
updateSWVersion
); );
// Watch and reload // Watch and reload

View File

@ -1,21 +1,3 @@
/*
*
* Air Horner
* Copyright 2015 Google Inc. All rights reserved.
*
* 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
*
*/
if (!Cache.prototype.add) { if (!Cache.prototype.add) {
Cache.prototype.add = function add(request) { Cache.prototype.add = function add(request) {
return this.addAll([request]); return this.addAll([request]);
@ -36,7 +18,7 @@ if (!Cache.prototype.addAll) {
return Promise.resolve().then(function() { return Promise.resolve().then(function() {
if (arguments.length < 1) throw new TypeError(); if (arguments.length < 1) throw new TypeError();
// Simulate sequence<(Request or USVString)> binding: // Simulate sequence<(Request or USVString)> binding:
var sequence = []; var sequence = [];
@ -98,4 +80,4 @@ if (!CacheStorage.prototype.match) {
}, Promise.resolve()); }, Promise.resolve());
}); });
}; };
} }

View File

@ -13,10 +13,10 @@ self.addEventListener('install', function(e) {
'/Samhäll', '/Samhäll',
'/Teknik', '/Teknik',
'/Kontakt', '/Kontakt',
'/css/main.min.css', '/css/main.css',
'/img/tips.jpg ', '/img/tips.jpg',
'/img/background.jpg ', '/img/background.jpg',
'/img/background85.webp ', '/img/background85.webp',
'/img/favicon/manifest.json', '/img/favicon/manifest.json',
'/img/favicon/android-chrome-192x192.png', '/img/favicon/android-chrome-192x192.png',
'/img/favicon/favicon-32x32.png', '/img/favicon/favicon-32x32.png',