We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc578db commit 1b27382Copy full SHA for 1b27382
lib/broccoli/service-worker-manifest.js
@@ -57,7 +57,7 @@ class DiffingSWManifest extends Plugin {
57
var files = Object.keys(manifest).sort();
58
var bundleHash = this.computeBundleHash(files, manifest);
59
var contents = files
60
- .map((file) => `# sw.file.hash: ${this.computeFileHash(file)}\n${path.sep}${file}`)
+ .map((file) => `# sw.file.hash: ${this.computeFileHash(file)}\n${path.sep}${path.relative(this.inputPaths[0], file)}`)
61
.join('\n');
62
return `CACHE MANIFEST
63
# sw.bundle: ng-cli
0 commit comments