Skip to content

Commit a70dadc

Browse files
committed
fix identation on runtime-caching-converter changes
1 parent e6d98ce commit a70dadc

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

packages/workbox-build/src/lib/runtime-caching-converter.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,11 @@ function getOptionsString(options = {}) {
3535
if (options.plugins) {
3636
// Using libs because JSON.stringify won't handle functions
3737
plugins = options.plugins.map((plugin) =>
38-
objectStringify(plugin, {transform: (_obj, _prop, str) =>
39-
stripComments(str)}));
38+
objectStringify(plugin, {
39+
transform: (_obj, _prop, str) => stripComments(str),
40+
})
41+
);
42+
4043
delete options.plugins;
4144
}
4245

0 commit comments

Comments
 (0)