Skip to content

Commit

Permalink
Merge pull request #91 from emulsify-ds/develop
Browse files Browse the repository at this point in the history
fix: only enable minify babel-loader preset
  • Loading branch information
callinmullaney authored Nov 8, 2024
2 parents fbca781 + ff5939c commit b3fdd6d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 13 deletions.
11 changes: 1 addition & 10 deletions config/babel.config.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,7 @@
module.exports = (api) => {
api.cache(true);

const presets = [
[
'@babel/preset-env',
{
useBuiltIns: 'entry',
corejs: 3,
},
],
['minify', { builtIns: false }],
];
const presets = [['minify', { builtIns: false }]];

const comments = false;

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@emulsify/core",
"version": "2.4.1",
"version": "2.4.2",
"description": "Bundled tooling for Storybook development + Webpack Build",
"keywords": [
"component library",
Expand Down

0 comments on commit b3fdd6d

Please sign in to comment.