Skip to content
This repository has been archived by the owner on Jun 8, 2023. It is now read-only.

Commit

Permalink
Fix eslint error - Missing trailing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
TuckerWhitehouse committed Aug 18, 2020
1 parent a6bedf4 commit 419e115
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function getPlugins(file, cwd, babelOptions) {
babelrc: true,
filename: file,
cwd,
...babelOptions
...babelOptions,
});

return result.plugins.filter(plugin => plugin.key === 'module-resolver');
Expand Down Expand Up @@ -102,7 +102,7 @@ exports.resolve = (source, file, opts) => {
alias: options.alias || {},
resolvePath: options.resolvePath,
extensions: options.extensions || defaultExtensions,
babelOptions: options.babelOptions || {}
babelOptions: options.babelOptions || {},
},
);

Expand Down

0 comments on commit 419e115

Please sign in to comment.