Skip to content

Commit

Permalink
Merge branch 'master' into bugfix/page-title-hours-minutes
Browse files Browse the repository at this point in the history
  • Loading branch information
valscion committed Oct 17, 2019
2 parents f614bd1 + c95df99 commit 3faca9d
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 5 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Expand Up @@ -14,9 +14,20 @@ _Note: Gaps between patch versions are faulty, broken or test releases._

<!-- Add changelog entries for new changes under this section -->

* **Bug Fix**
* **Bug Fix**
* Add leading zero to hour & minute on `<title />` when needed ([#314](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/314) by [@mhxbe](https://github.com/mhxbe))

## 3.6.0

* **Improvement**
* Support webpack builds where `output.globalObject` is set to `'self'` ([#323](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/323) by [@lemonmade](https://github.com/lemonmade))
* Improve readability of tooltips ([#320](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/320) by [@lorenzos](https://github.com/lorenzos))

## 3.5.2

* **Bug Fix**
* Fix sidebar not showing visibility status of chunks hidden via popup menu (issue [#316](https://github.com/webpack-contrib/webpack-bundle-analyzer/issues/316) by [@gaokun](https://github.com/gaokun), fixed in [#317](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/317) by [@bregenspan](https://github.com/bregenspan))

## 3.5.1

* **Bug Fix**
Expand Down
2 changes: 2 additions & 0 deletions client/components/CheckboxList.jsx
Expand Up @@ -33,6 +33,8 @@ export default class CheckboxList extends PureComponent {
this.setState({checkedItems});
this.informAboutChange(checkedItems);
}
} else if (newProps.checkedItems !== this.props.checkedItems) {
this.setState({checkedItems: newProps.checkedItems});
}
}

Expand Down
2 changes: 1 addition & 1 deletion client/components/Tooltip.css
Expand Up @@ -5,7 +5,7 @@
border-radius: 4px;
background: #fff;
border: 1px solid #aaa;
opacity: 0.7;
opacity: 0.9;
white-space: nowrap;
visibility: visible;
transition: opacity .2s ease, visibility .2s ease;
Expand Down
2 changes: 1 addition & 1 deletion client/viewer.css
@@ -1,5 +1,5 @@
:root {
--main-font: normal 11px Verdana;
--main-font: normal 11px Verdana, sans-serif;
}

:global html,
Expand Down
2 changes: 1 addition & 1 deletion 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
@@ -1,6 +1,6 @@
{
"name": "webpack-bundle-analyzer",
"version": "3.5.1",
"version": "3.6.0",
"description": "Webpack plugin and CLI utility that represents bundle content as convenient interactive zoomable treemap",
"author": "Yury Grunin <grunin.ya@ya.ru>",
"license": "MIT",
Expand Down
2 changes: 2 additions & 0 deletions src/parseUtils.js
Expand Up @@ -185,6 +185,8 @@ function isAsyncChunkPushExpression(node) {
callee.object.left.object &&
(
callee.object.left.object.name === 'window' ||
// `self` is a common output.globalObject value used to support both workers and browsers
callee.object.left.object.name === 'self' ||
// Webpack 4 uses `this` instead of `window`
callee.object.left.object.type === 'ThisExpression'
) &&
Expand Down
@@ -0,0 +1 @@
(self.webpackJsonp=self.webpackJsonp||[]).push([[27],{1:function(e,n,t){console.log("Chuck Norris")}}]);
@@ -0,0 +1,5 @@
{
"modules": {
"1": "function(e,n,t){console.log(\"Chuck Norris\")}"
}
}

0 comments on commit 3faca9d

Please sign in to comment.