Skip to content

Commit

Permalink
fix identation on runtime-caching-converter changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirlucas committed Aug 8, 2018
1 parent e6d98ce commit e3c49ad
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions packages/workbox-build/src/lib/runtime-caching-converter.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,11 @@ function getOptionsString(options = {}) {
if (options.plugins) {
// Using libs because JSON.stringify won't handle functions
plugins = options.plugins.map((plugin) =>
objectStringify(plugin, {transform: (_obj, _prop, str) =>
stripComments(str)}));
objectStringify(plugin, {
transform: (_obj, _prop, str) => stripComments(str),
})
);

delete options.plugins;
}

Expand Down

0 comments on commit e3c49ad

Please sign in to comment.