diff --git a/index.js b/index.js index 4f1532cc..4dfe087a 100644 --- a/index.js +++ b/index.js @@ -40,7 +40,7 @@ const languagesById = fromPairs( [id, ...(language.alias || [])].map((label) => [label, Object.assign({ label }, language )]) ) ); -const featuresById = mapValues(FEATURES, (feature, key) => (Object.assign({ label: key }, feature ))); +const featuresById = mapValues(FEATURES, (feature, key) => Object.assign({ label: key }, feature )); class MonacoWebpackPlugin { constructor(options = {}) {