Skip to content

Commit

Permalink
fix: v2.11.6
Browse files Browse the repository at this point in the history
  • Loading branch information
FezVrasta committed Aug 11, 2022
1 parent 9936df3 commit e764f2c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .config/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { terser } from 'rollup-plugin-terser';
import visualizer from 'rollup-plugin-visualizer';
import license from 'rollup-plugin-license';
import flowEntry from 'rollup-plugin-flow-entry';
import compiler from '@ampproject/rollup-plugin-closure-compiler';
//import compiler from '@ampproject/rollup-plugin-closure-compiler';
import pkg from '../package.json';

const getFileName = (input) => input.split('/')[1].split('.')[0];
Expand All @@ -28,7 +28,7 @@ const configs = bundles
}),
babel({ babelHelpers: 'bundled' }),
// The two minifiers together seem to procude a smaller bundle 🤷‍♂️
minify && compiler(),
// minify && compiler(),
minify && terser(),
license({ banner: `@popperjs/core v${pkg.version} - MIT License` }),
flow && flowEntry({ types: `lib/${getFileName(input)}.js` }),
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@popperjs/core",
"version": "2.11.4",
"version": "2.11.6",
"description": "Tooltip and Popover Positioning Engine",
"main": "dist/cjs/popper.js",
"main:umd": "dist/umd/popper.js",
Expand Down

0 comments on commit e764f2c

Please sign in to comment.