We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17212ab commit 8f02798Copy full SHA for 8f02798
1 file changed
rollup.config.mjs
@@ -48,7 +48,7 @@ const allowedLicenses = [
48
const bundleDependency = (
49
wrapperIndexPath,
50
extraOutputOptions = {},
51
- external = []
+ external = [],
52
) => ({
53
input: wrapperIndexPath,
54
output: {
@@ -74,7 +74,10 @@ const bundleDependency = (
74
failOnViolation: true,
75
},
76
77
- file: path.join(path.dirname(wrapperIndexPath), 'THIRD_PARTY_NOTICES'),
+ file: path.join(
78
+ path.dirname(wrapperIndexPath),
79
+ 'THIRD_PARTY_NOTICES',
80
+ ),
81
template(dependencies) {
82
const stringified_dependencies = dependencies.map(dependency => {
83
let arr = [];
@@ -113,6 +116,6 @@ export default [
113
116
{
114
117
inlineDynamicImports: true,
115
118
- ['./bidi.js', '../bidi/bidi.js']
119
+ ['./bidi.js', '../bidi/bidi.js'],
120
),
121
];
0 commit comments