Skip to content

Commit 8f02798

Browse files
author
Piotr Paulski
committed
Fix prettier.
1 parent 17212ab commit 8f02798

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

rollup.config.mjs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const allowedLicenses = [
4848
const bundleDependency = (
4949
wrapperIndexPath,
5050
extraOutputOptions = {},
51-
external = []
51+
external = [],
5252
) => ({
5353
input: wrapperIndexPath,
5454
output: {
@@ -74,7 +74,10 @@ const bundleDependency = (
7474
failOnViolation: true,
7575
},
7676
output: {
77-
file: path.join(path.dirname(wrapperIndexPath), 'THIRD_PARTY_NOTICES'),
77+
file: path.join(
78+
path.dirname(wrapperIndexPath),
79+
'THIRD_PARTY_NOTICES',
80+
),
7881
template(dependencies) {
7982
const stringified_dependencies = dependencies.map(dependency => {
8083
let arr = [];
@@ -113,6 +116,6 @@ export default [
113116
{
114117
inlineDynamicImports: true,
115118
},
116-
['./bidi.js', '../bidi/bidi.js']
119+
['./bidi.js', '../bidi/bidi.js'],
117120
),
118121
];

0 commit comments

Comments
 (0)