├── .dependabot └── config.yml ├── .gitignore ├── .npmrc ├── .nvmrc ├── .travis.yml ├── .typo-ci.yml ├── .vscode └── launch.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── babel.config.js ├── bsconfig.json ├── jest.config.js ├── package.json ├── playground ├── .gitignore ├── article │ ├── a │ │ ├── .babelrc │ │ ├── .npmrc │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── api.js │ │ │ ├── app.css │ │ │ ├── app.jsx │ │ │ ├── article.css │ │ │ ├── article.jsx │ │ │ └── index.js │ │ └── webpack.config.js │ ├── b │ │ ├── .babelrc │ │ ├── .npmrc │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── api.js │ │ │ ├── app.css │ │ │ ├── app.jsx │ │ │ ├── article.css │ │ │ ├── article.jsx │ │ │ └── index.js │ │ └── webpack.config.js │ ├── c │ │ ├── .babelrc │ │ ├── .npmrc │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── api.js │ │ │ ├── app.css │ │ │ ├── app.jsx │ │ │ ├── article.css │ │ │ ├── article.jsx │ │ │ └── index.js │ │ └── webpack.config.js │ ├── d │ │ ├── .babelrc │ │ ├── .npmrc │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── api.js │ │ │ ├── app.css │ │ │ ├── app.jsx │ │ │ ├── article.css │ │ │ ├── article.jsx │ │ │ └── index.js │ │ └── webpack.config.js │ ├── e │ │ ├── .babelrc │ │ ├── .npmrc │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── api.js │ │ │ ├── app.css │ │ │ ├── app.jsx │ │ │ ├── article.css │ │ │ ├── article.jsx │ │ │ └── index.js │ │ └── webpack.config.js │ ├── f │ │ ├── .babelrc │ │ ├── .npmrc │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── api.js │ │ │ ├── app.css │ │ │ ├── app.jsx │ │ │ ├── article.css │ │ │ ├── article.jsx │ │ │ └── index.js │ │ └── webpack.config.js │ ├── g │ │ ├── .babelrc │ │ ├── .npmrc │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── api.js │ │ │ ├── app.css │ │ │ ├── app.jsx │ │ │ ├── article.css │ │ │ ├── article.jsx │ │ │ └── index.js │ │ └── webpack.config.js │ └── h │ │ ├── .babelrc │ │ ├── .npmrc │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ ├── api.js │ │ ├── app.css │ │ ├── app.jsx │ │ ├── article.css │ │ ├── article.jsx │ │ └── index.js │ │ └── webpack.config.js ├── babel │ ├── a │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── index.js │ │ └── webpack.config.js │ ├── b │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── index.js │ │ └── webpack.config.js │ ├── c │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── index.js │ │ └── webpack.config.js │ ├── d │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── index.js │ │ └── webpack.config.js │ └── e │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ └── index.js │ │ └── webpack.config.js ├── create-react-app │ ├── a │ │ ├── .gitignore │ │ ├── README.md │ │ ├── config │ │ │ ├── env.js │ │ │ ├── getHttpsConfig.js │ │ │ ├── jest │ │ │ │ ├── cssTransform.js │ │ │ │ └── fileTransform.js │ │ │ ├── modules.js │ │ │ ├── paths.js │ │ │ ├── pnpTs.js │ │ │ ├── webpack.config.js │ │ │ └── webpackDevServer.config.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── logo192.png │ │ │ ├── logo512.png │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ ├── scripts │ │ │ ├── build.js │ │ │ └── start.js │ │ └── src │ │ │ ├── App.css │ │ │ ├── App.js │ │ │ ├── index.css │ │ │ ├── index.js │ │ │ ├── logo.svg │ │ │ ├── serviceWorker.js │ │ │ └── setupTests.js │ └── b │ │ ├── .gitignore │ │ ├── README.md │ │ ├── config │ │ ├── env.js │ │ ├── getHttpsConfig.js │ │ ├── jest │ │ │ ├── cssTransform.js │ │ │ └── fileTransform.js │ │ ├── modules.js │ │ ├── paths.js │ │ ├── pnpTs.js │ │ ├── webpack.config.js │ │ └── webpackDevServer.config.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ ├── scripts │ │ ├── build.js │ │ └── start.js │ │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── index.css │ │ ├── index.js │ │ ├── logo.svg │ │ ├── serviceWorker.js │ │ └── setupTests.js ├── css │ ├── a │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── index.css │ │ │ └── index.js │ │ └── webpack.config.js │ ├── b │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── index.css │ │ │ └── index.js │ │ └── webpack.config.js │ ├── c │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── index.css │ │ │ └── index.js │ │ └── webpack.config.js │ ├── d │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── index.css │ │ │ └── index.js │ │ └── webpack.config.js │ ├── e │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── index.css │ │ │ └── index.js │ │ └── webpack.config.js │ ├── f │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── index.css │ │ │ └── index.js │ │ └── webpack.config.js │ ├── g │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── index.css │ │ │ └── index.js │ │ └── webpack.config.js │ ├── h │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── index.css │ │ │ └── index.js │ │ └── webpack.config.js │ ├── i │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── index.css │ │ │ └── index.js │ │ └── webpack.config.js │ └── j │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ ├── index.css │ │ └── index.js │ │ └── webpack.config.js ├── enhanced │ ├── a │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── index.js │ │ └── webpack.config.js │ ├── b │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── index.js │ │ └── webpack.config.js │ ├── c │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── index.js │ │ └── webpack.config.js │ ├── d │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── index.js │ │ └── webpack.config.js │ └── e │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ └── index.js │ │ └── webpack.config.js ├── example │ ├── a │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app.js │ │ │ └── lib │ │ │ │ ├── api.js │ │ │ │ ├── render.js │ │ │ │ └── utils.js │ │ └── webpack.config.js │ ├── b │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app.js │ │ │ └── lib │ │ │ │ ├── api.js │ │ │ │ ├── render.js │ │ │ │ └── utils.js │ │ └── webpack.config.js │ ├── c │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app.js │ │ │ ├── lib.js │ │ │ └── lib │ │ │ │ ├── api.js │ │ │ │ ├── render.js │ │ │ │ └── utils.js │ │ └── webpack.config.js │ └── d │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ ├── app.js │ │ ├── lib.js │ │ └── lib │ │ │ ├── api.js │ │ │ ├── render.js │ │ │ └── utils.js │ │ └── webpack.config.js ├── minimal │ ├── a │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── index.js │ │ └── webpack.config.js │ ├── b │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── index.js │ │ └── webpack.config.js │ ├── c │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── a.js │ │ │ └── index.js │ │ └── webpack.config.js │ ├── d │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── b.js │ │ │ └── index.js │ │ └── webpack.config.js │ ├── e │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── b.js │ │ │ └── index.js │ │ └── webpack.config.js │ └── f │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ ├── b.js │ │ └── index.js │ │ └── webpack.config.js ├── named │ ├── a │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── index.js │ │ └── webpack.config.js │ ├── b │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── index.js │ │ └── webpack.config.js │ └── c │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ ├── bar.js │ │ ├── common.js │ │ ├── foo.js │ │ └── index.js │ │ └── webpack.config.js ├── play.sh ├── timeline │ ├── a │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── index.js │ │ └── webpack.config.js │ ├── b │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── index.js │ │ └── webpack.config.js │ ├── c │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── bar.js │ │ │ ├── foo.js │ │ │ └── index.js │ │ └── webpack.config.js │ ├── d │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── bar.js │ │ │ ├── foo.js │ │ │ └── index.js │ │ └── webpack.config.js │ ├── e │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── bar.js │ │ │ ├── foo.js │ │ │ └── index.js │ │ └── webpack.config.js │ ├── f │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── bar.js │ │ │ ├── foo.js │ │ │ └── index.js │ │ └── webpack.config.js │ ├── g │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── bar.js │ │ │ ├── common.js │ │ │ ├── foo.js │ │ │ └── index.js │ │ └── webpack.config.js │ ├── h │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── bar.js │ │ │ ├── common.js │ │ │ ├── foo.js │ │ │ └── index.js │ │ └── webpack.config.js │ └── i │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ ├── bar.js │ │ ├── common.js │ │ ├── foo.js │ │ └── index.js │ │ └── webpack.config.js ├── uglify │ ├── a │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── index.js │ │ └── webpack.config.js │ ├── b │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── index.js │ │ └── webpack.config.js │ └── c │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ └── index.js │ │ └── webpack.config.js └── upgrade-deps.sh ├── src ├── App │ ├── AddStats.re │ ├── AddStatsButton.re │ ├── App.re │ ├── Breadcrumbs.re │ ├── Button.re │ ├── Code.re │ ├── CodeDiff.re │ ├── ComparisonChooser.re │ ├── DoubleSwitch.re │ ├── Dropzone.re │ ├── EntryOverview.re │ ├── EntrySummary.re │ ├── EntryTree.re │ ├── EntryTreeMapper.re │ ├── FetchArea.re │ ├── L10N.re │ ├── Logo.re │ ├── NavigationLayout.re │ ├── NavigationPath.ml │ ├── NumericDiff.re │ ├── ReversedText.re │ ├── Sidebar.re │ ├── Size.re │ ├── Snackbar.re │ ├── SourceTreeSwitcher.re │ ├── State.ml │ ├── StringDiff.re │ ├── Tabs.re │ ├── Theme.re │ ├── Timeline.re │ ├── TimelineTooltip.re │ ├── ToggleTimeline.re │ ├── Tour │ │ ├── AppTour.re │ │ ├── AppTour__Step1.re │ │ ├── AppTour__Step10.re │ │ ├── AppTour__Step11.re │ │ ├── AppTour__Step12.re │ │ ├── AppTour__Step13.re │ │ ├── AppTour__Step14.re │ │ ├── AppTour__Step15.re │ │ ├── AppTour__Step16.re │ │ ├── AppTour__Step17.re │ │ ├── AppTour__Step18.re │ │ ├── AppTour__Step19.re │ │ ├── AppTour__Step2.re │ │ ├── AppTour__Step20.re │ │ ├── AppTour__Step21.re │ │ ├── AppTour__Step22.re │ │ ├── AppTour__Step23.re │ │ ├── AppTour__Step24.re │ │ ├── AppTour__Step25.re │ │ ├── AppTour__Step26.re │ │ ├── AppTour__Step27.re │ │ ├── AppTour__Step28.re │ │ ├── AppTour__Step29.re │ │ ├── AppTour__Step3.re │ │ ├── AppTour__Step30.re │ │ ├── AppTour__Step31.re │ │ ├── AppTour__Step32.re │ │ ├── AppTour__Step33.re │ │ ├── AppTour__Step34.re │ │ ├── AppTour__Step35.re │ │ ├── AppTour__Step4.re │ │ ├── AppTour__Step5.re │ │ ├── AppTour__Step6.re │ │ ├── AppTour__Step7.re │ │ ├── AppTour__Step8.re │ │ └── AppTour__Step9.re │ ├── UrlState.ml │ └── WelcomeScreen.re ├── Index.re ├── Stats │ ├── CompareEntry.ml │ ├── CompareKind.ml │ ├── CompareStats.ml │ ├── Diff.ml │ ├── Entry.ml │ ├── JsDiff.ml │ ├── ModifiedEntry.ml │ ├── ModuleList.ml │ ├── ModulePath.ml │ ├── Reasons.ml │ └── SourceTree.ml ├── Utils.ml ├── Webpack │ ├── WebpackAsset.ml │ ├── WebpackAssetsGroup.ml │ ├── WebpackChild.ml │ ├── WebpackChunk.ml │ ├── WebpackEntrypoint.ml │ ├── WebpackModule.ml │ ├── WebpackOrigin.ml │ ├── WebpackProfile.ml │ ├── WebpackReason.ml │ └── WebpackStats.ml ├── __tests__ │ ├── App_test.re │ ├── CompareEntry_test.re │ ├── CompareStats_test.re │ ├── EntryTreeMapper_test.re │ ├── Entry_test.re │ ├── JsDiff_test.re │ ├── ModifiedEntry_test.re │ ├── ModuleList__test.re │ ├── NavigationPath_test.re │ ├── SourceTree__test.re │ └── Utils_test.re ├── data.re ├── data │ ├── css-modules │ │ ├── branch.json │ │ └── master.json │ ├── enhanced │ │ ├── a.json │ │ ├── b.json │ │ ├── c.json │ │ ├── d.json │ │ └── e.json │ ├── example │ │ ├── a.json │ │ ├── b.json │ │ ├── c.json │ │ └── d.json │ ├── no-diff │ │ ├── branch.json │ │ └── master.json │ ├── null-index │ │ ├── branch.json │ │ └── master.json │ ├── si │ │ ├── branch.json │ │ └── master.json │ ├── small │ │ ├── a.json │ │ ├── b.json │ │ ├── c.json │ │ ├── d.json │ │ └── e.json │ ├── timeline │ │ ├── a.json │ │ ├── b.json │ │ ├── c.json │ │ ├── d.json │ │ ├── e.json │ │ ├── f.json │ │ ├── g.json │ │ ├── h.json │ │ └── i.json │ └── webpack3 │ │ ├── 0.87.1.json │ │ └── 0.87.2.json ├── dev.html └── index.html ├── upgrade.sh └── webpack.config.js /.dependabot/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/.dependabot/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | save-exact=true 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 14 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/.travis.yml -------------------------------------------------------------------------------- /.typo-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/.typo-ci.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/babel.config.js -------------------------------------------------------------------------------- /bsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/bsconfig.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/package.json -------------------------------------------------------------------------------- /playground/.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | ?.json -------------------------------------------------------------------------------- /playground/article/a/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/a/.babelrc -------------------------------------------------------------------------------- /playground/article/a/.npmrc: -------------------------------------------------------------------------------- 1 | save-exact=true 2 | -------------------------------------------------------------------------------- /playground/article/a/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/a/README.md -------------------------------------------------------------------------------- /playground/article/a/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/a/package-lock.json -------------------------------------------------------------------------------- /playground/article/a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/a/package.json -------------------------------------------------------------------------------- /playground/article/a/src/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/a/src/api.js -------------------------------------------------------------------------------- /playground/article/a/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/a/src/app.css -------------------------------------------------------------------------------- /playground/article/a/src/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/a/src/app.jsx -------------------------------------------------------------------------------- /playground/article/a/src/article.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/a/src/article.css -------------------------------------------------------------------------------- /playground/article/a/src/article.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/a/src/article.jsx -------------------------------------------------------------------------------- /playground/article/a/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/a/src/index.js -------------------------------------------------------------------------------- /playground/article/a/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/a/webpack.config.js -------------------------------------------------------------------------------- /playground/article/b/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/b/.babelrc -------------------------------------------------------------------------------- /playground/article/b/.npmrc: -------------------------------------------------------------------------------- 1 | save-exact=true 2 | -------------------------------------------------------------------------------- /playground/article/b/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/b/README.md -------------------------------------------------------------------------------- /playground/article/b/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/b/package-lock.json -------------------------------------------------------------------------------- /playground/article/b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/b/package.json -------------------------------------------------------------------------------- /playground/article/b/src/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/b/src/api.js -------------------------------------------------------------------------------- /playground/article/b/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/b/src/app.css -------------------------------------------------------------------------------- /playground/article/b/src/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/b/src/app.jsx -------------------------------------------------------------------------------- /playground/article/b/src/article.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/b/src/article.css -------------------------------------------------------------------------------- /playground/article/b/src/article.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/b/src/article.jsx -------------------------------------------------------------------------------- /playground/article/b/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/b/src/index.js -------------------------------------------------------------------------------- /playground/article/b/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/b/webpack.config.js -------------------------------------------------------------------------------- /playground/article/c/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/c/.babelrc -------------------------------------------------------------------------------- /playground/article/c/.npmrc: -------------------------------------------------------------------------------- 1 | save-exact=true 2 | -------------------------------------------------------------------------------- /playground/article/c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/c/README.md -------------------------------------------------------------------------------- /playground/article/c/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/c/package-lock.json -------------------------------------------------------------------------------- /playground/article/c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/c/package.json -------------------------------------------------------------------------------- /playground/article/c/src/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/c/src/api.js -------------------------------------------------------------------------------- /playground/article/c/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/c/src/app.css -------------------------------------------------------------------------------- /playground/article/c/src/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/c/src/app.jsx -------------------------------------------------------------------------------- /playground/article/c/src/article.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/c/src/article.css -------------------------------------------------------------------------------- /playground/article/c/src/article.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/c/src/article.jsx -------------------------------------------------------------------------------- /playground/article/c/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/c/src/index.js -------------------------------------------------------------------------------- /playground/article/c/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/c/webpack.config.js -------------------------------------------------------------------------------- /playground/article/d/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/d/.babelrc -------------------------------------------------------------------------------- /playground/article/d/.npmrc: -------------------------------------------------------------------------------- 1 | save-exact=true 2 | -------------------------------------------------------------------------------- /playground/article/d/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/d/README.md -------------------------------------------------------------------------------- /playground/article/d/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/d/package-lock.json -------------------------------------------------------------------------------- /playground/article/d/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/d/package.json -------------------------------------------------------------------------------- /playground/article/d/src/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/d/src/api.js -------------------------------------------------------------------------------- /playground/article/d/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/d/src/app.css -------------------------------------------------------------------------------- /playground/article/d/src/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/d/src/app.jsx -------------------------------------------------------------------------------- /playground/article/d/src/article.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/d/src/article.css -------------------------------------------------------------------------------- /playground/article/d/src/article.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/d/src/article.jsx -------------------------------------------------------------------------------- /playground/article/d/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/d/src/index.js -------------------------------------------------------------------------------- /playground/article/d/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/d/webpack.config.js -------------------------------------------------------------------------------- /playground/article/e/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/e/.babelrc -------------------------------------------------------------------------------- /playground/article/e/.npmrc: -------------------------------------------------------------------------------- 1 | save-exact=true 2 | -------------------------------------------------------------------------------- /playground/article/e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/e/README.md -------------------------------------------------------------------------------- /playground/article/e/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/e/package-lock.json -------------------------------------------------------------------------------- /playground/article/e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/e/package.json -------------------------------------------------------------------------------- /playground/article/e/src/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/e/src/api.js -------------------------------------------------------------------------------- /playground/article/e/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/e/src/app.css -------------------------------------------------------------------------------- /playground/article/e/src/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/e/src/app.jsx -------------------------------------------------------------------------------- /playground/article/e/src/article.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/e/src/article.css -------------------------------------------------------------------------------- /playground/article/e/src/article.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/e/src/article.jsx -------------------------------------------------------------------------------- /playground/article/e/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/e/src/index.js -------------------------------------------------------------------------------- /playground/article/e/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/e/webpack.config.js -------------------------------------------------------------------------------- /playground/article/f/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/f/.babelrc -------------------------------------------------------------------------------- /playground/article/f/.npmrc: -------------------------------------------------------------------------------- 1 | save-exact=true 2 | -------------------------------------------------------------------------------- /playground/article/f/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/f/README.md -------------------------------------------------------------------------------- /playground/article/f/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/f/package-lock.json -------------------------------------------------------------------------------- /playground/article/f/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/f/package.json -------------------------------------------------------------------------------- /playground/article/f/src/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/f/src/api.js -------------------------------------------------------------------------------- /playground/article/f/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/f/src/app.css -------------------------------------------------------------------------------- /playground/article/f/src/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/f/src/app.jsx -------------------------------------------------------------------------------- /playground/article/f/src/article.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/f/src/article.css -------------------------------------------------------------------------------- /playground/article/f/src/article.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/f/src/article.jsx -------------------------------------------------------------------------------- /playground/article/f/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/f/src/index.js -------------------------------------------------------------------------------- /playground/article/f/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/f/webpack.config.js -------------------------------------------------------------------------------- /playground/article/g/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/g/.babelrc -------------------------------------------------------------------------------- /playground/article/g/.npmrc: -------------------------------------------------------------------------------- 1 | save-exact=true 2 | -------------------------------------------------------------------------------- /playground/article/g/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/g/README.md -------------------------------------------------------------------------------- /playground/article/g/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/g/package-lock.json -------------------------------------------------------------------------------- /playground/article/g/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/g/package.json -------------------------------------------------------------------------------- /playground/article/g/src/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/g/src/api.js -------------------------------------------------------------------------------- /playground/article/g/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/g/src/app.css -------------------------------------------------------------------------------- /playground/article/g/src/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/g/src/app.jsx -------------------------------------------------------------------------------- /playground/article/g/src/article.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/g/src/article.css -------------------------------------------------------------------------------- /playground/article/g/src/article.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/g/src/article.jsx -------------------------------------------------------------------------------- /playground/article/g/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/g/src/index.js -------------------------------------------------------------------------------- /playground/article/g/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/g/webpack.config.js -------------------------------------------------------------------------------- /playground/article/h/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/h/.babelrc -------------------------------------------------------------------------------- /playground/article/h/.npmrc: -------------------------------------------------------------------------------- 1 | save-exact=true 2 | -------------------------------------------------------------------------------- /playground/article/h/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/h/README.md -------------------------------------------------------------------------------- /playground/article/h/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/h/package-lock.json -------------------------------------------------------------------------------- /playground/article/h/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/h/package.json -------------------------------------------------------------------------------- /playground/article/h/src/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/h/src/api.js -------------------------------------------------------------------------------- /playground/article/h/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/h/src/app.css -------------------------------------------------------------------------------- /playground/article/h/src/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/h/src/app.jsx -------------------------------------------------------------------------------- /playground/article/h/src/article.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/h/src/article.css -------------------------------------------------------------------------------- /playground/article/h/src/article.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/h/src/article.jsx -------------------------------------------------------------------------------- /playground/article/h/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/h/src/index.js -------------------------------------------------------------------------------- /playground/article/h/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/article/h/webpack.config.js -------------------------------------------------------------------------------- /playground/babel/a/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/babel/a/README.md -------------------------------------------------------------------------------- /playground/babel/a/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/babel/a/package-lock.json -------------------------------------------------------------------------------- /playground/babel/a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/babel/a/package.json -------------------------------------------------------------------------------- /playground/babel/a/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/babel/a/src/index.js -------------------------------------------------------------------------------- /playground/babel/a/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/babel/a/webpack.config.js -------------------------------------------------------------------------------- /playground/babel/b/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/babel/b/README.md -------------------------------------------------------------------------------- /playground/babel/b/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/babel/b/package-lock.json -------------------------------------------------------------------------------- /playground/babel/b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/babel/b/package.json -------------------------------------------------------------------------------- /playground/babel/b/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/babel/b/src/index.js -------------------------------------------------------------------------------- /playground/babel/b/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/babel/b/webpack.config.js -------------------------------------------------------------------------------- /playground/babel/c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/babel/c/README.md -------------------------------------------------------------------------------- /playground/babel/c/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/babel/c/package-lock.json -------------------------------------------------------------------------------- /playground/babel/c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/babel/c/package.json -------------------------------------------------------------------------------- /playground/babel/c/src/index.js: -------------------------------------------------------------------------------- 1 | export default function (a, b = 1, ...c) { 2 | return [a, b, c]; 3 | } -------------------------------------------------------------------------------- /playground/babel/c/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/babel/c/webpack.config.js -------------------------------------------------------------------------------- /playground/babel/d/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/babel/d/README.md -------------------------------------------------------------------------------- /playground/babel/d/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/babel/d/package-lock.json -------------------------------------------------------------------------------- /playground/babel/d/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/babel/d/package.json -------------------------------------------------------------------------------- /playground/babel/d/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/babel/d/src/index.js -------------------------------------------------------------------------------- /playground/babel/d/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/babel/d/webpack.config.js -------------------------------------------------------------------------------- /playground/babel/e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/babel/e/README.md -------------------------------------------------------------------------------- /playground/babel/e/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/babel/e/package-lock.json -------------------------------------------------------------------------------- /playground/babel/e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/babel/e/package.json -------------------------------------------------------------------------------- /playground/babel/e/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/babel/e/src/index.js -------------------------------------------------------------------------------- /playground/babel/e/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/babel/e/webpack.config.js -------------------------------------------------------------------------------- /playground/create-react-app/a/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/a/.gitignore -------------------------------------------------------------------------------- /playground/create-react-app/a/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/a/README.md -------------------------------------------------------------------------------- /playground/create-react-app/a/config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/a/config/env.js -------------------------------------------------------------------------------- /playground/create-react-app/a/config/getHttpsConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/a/config/getHttpsConfig.js -------------------------------------------------------------------------------- /playground/create-react-app/a/config/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/a/config/jest/cssTransform.js -------------------------------------------------------------------------------- /playground/create-react-app/a/config/jest/fileTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/a/config/jest/fileTransform.js -------------------------------------------------------------------------------- /playground/create-react-app/a/config/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/a/config/modules.js -------------------------------------------------------------------------------- /playground/create-react-app/a/config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/a/config/paths.js -------------------------------------------------------------------------------- /playground/create-react-app/a/config/pnpTs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/a/config/pnpTs.js -------------------------------------------------------------------------------- /playground/create-react-app/a/config/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/a/config/webpack.config.js -------------------------------------------------------------------------------- /playground/create-react-app/a/config/webpackDevServer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/a/config/webpackDevServer.config.js -------------------------------------------------------------------------------- /playground/create-react-app/a/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/a/package-lock.json -------------------------------------------------------------------------------- /playground/create-react-app/a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/a/package.json -------------------------------------------------------------------------------- /playground/create-react-app/a/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/a/public/favicon.ico -------------------------------------------------------------------------------- /playground/create-react-app/a/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/a/public/index.html -------------------------------------------------------------------------------- /playground/create-react-app/a/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/a/public/logo192.png -------------------------------------------------------------------------------- /playground/create-react-app/a/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/a/public/logo512.png -------------------------------------------------------------------------------- /playground/create-react-app/a/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/a/public/manifest.json -------------------------------------------------------------------------------- /playground/create-react-app/a/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/a/public/robots.txt -------------------------------------------------------------------------------- /playground/create-react-app/a/scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/a/scripts/build.js -------------------------------------------------------------------------------- /playground/create-react-app/a/scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/a/scripts/start.js -------------------------------------------------------------------------------- /playground/create-react-app/a/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/a/src/App.css -------------------------------------------------------------------------------- /playground/create-react-app/a/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/a/src/App.js -------------------------------------------------------------------------------- /playground/create-react-app/a/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/a/src/index.css -------------------------------------------------------------------------------- /playground/create-react-app/a/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/a/src/index.js -------------------------------------------------------------------------------- /playground/create-react-app/a/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/a/src/logo.svg -------------------------------------------------------------------------------- /playground/create-react-app/a/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/a/src/serviceWorker.js -------------------------------------------------------------------------------- /playground/create-react-app/a/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/a/src/setupTests.js -------------------------------------------------------------------------------- /playground/create-react-app/b/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/b/.gitignore -------------------------------------------------------------------------------- /playground/create-react-app/b/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/b/README.md -------------------------------------------------------------------------------- /playground/create-react-app/b/config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/b/config/env.js -------------------------------------------------------------------------------- /playground/create-react-app/b/config/getHttpsConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/b/config/getHttpsConfig.js -------------------------------------------------------------------------------- /playground/create-react-app/b/config/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/b/config/jest/cssTransform.js -------------------------------------------------------------------------------- /playground/create-react-app/b/config/jest/fileTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/b/config/jest/fileTransform.js -------------------------------------------------------------------------------- /playground/create-react-app/b/config/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/b/config/modules.js -------------------------------------------------------------------------------- /playground/create-react-app/b/config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/b/config/paths.js -------------------------------------------------------------------------------- /playground/create-react-app/b/config/pnpTs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/b/config/pnpTs.js -------------------------------------------------------------------------------- /playground/create-react-app/b/config/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/b/config/webpack.config.js -------------------------------------------------------------------------------- /playground/create-react-app/b/config/webpackDevServer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/b/config/webpackDevServer.config.js -------------------------------------------------------------------------------- /playground/create-react-app/b/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/b/package-lock.json -------------------------------------------------------------------------------- /playground/create-react-app/b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/b/package.json -------------------------------------------------------------------------------- /playground/create-react-app/b/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/b/public/favicon.ico -------------------------------------------------------------------------------- /playground/create-react-app/b/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/b/public/index.html -------------------------------------------------------------------------------- /playground/create-react-app/b/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/b/public/logo192.png -------------------------------------------------------------------------------- /playground/create-react-app/b/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/b/public/logo512.png -------------------------------------------------------------------------------- /playground/create-react-app/b/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/b/public/manifest.json -------------------------------------------------------------------------------- /playground/create-react-app/b/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/b/public/robots.txt -------------------------------------------------------------------------------- /playground/create-react-app/b/scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/b/scripts/build.js -------------------------------------------------------------------------------- /playground/create-react-app/b/scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/b/scripts/start.js -------------------------------------------------------------------------------- /playground/create-react-app/b/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/b/src/App.css -------------------------------------------------------------------------------- /playground/create-react-app/b/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/b/src/App.js -------------------------------------------------------------------------------- /playground/create-react-app/b/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/b/src/index.css -------------------------------------------------------------------------------- /playground/create-react-app/b/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/b/src/index.js -------------------------------------------------------------------------------- /playground/create-react-app/b/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/b/src/logo.svg -------------------------------------------------------------------------------- /playground/create-react-app/b/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/b/src/serviceWorker.js -------------------------------------------------------------------------------- /playground/create-react-app/b/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/create-react-app/b/src/setupTests.js -------------------------------------------------------------------------------- /playground/css/a/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/a/README.md -------------------------------------------------------------------------------- /playground/css/a/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/a/package-lock.json -------------------------------------------------------------------------------- /playground/css/a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/a/package.json -------------------------------------------------------------------------------- /playground/css/a/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/a/src/index.css -------------------------------------------------------------------------------- /playground/css/a/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/a/src/index.js -------------------------------------------------------------------------------- /playground/css/a/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/a/webpack.config.js -------------------------------------------------------------------------------- /playground/css/b/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/b/README.md -------------------------------------------------------------------------------- /playground/css/b/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/b/package-lock.json -------------------------------------------------------------------------------- /playground/css/b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/b/package.json -------------------------------------------------------------------------------- /playground/css/b/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/b/src/index.css -------------------------------------------------------------------------------- /playground/css/b/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/b/src/index.js -------------------------------------------------------------------------------- /playground/css/b/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/b/webpack.config.js -------------------------------------------------------------------------------- /playground/css/c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/c/README.md -------------------------------------------------------------------------------- /playground/css/c/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/c/package-lock.json -------------------------------------------------------------------------------- /playground/css/c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/c/package.json -------------------------------------------------------------------------------- /playground/css/c/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/c/src/index.css -------------------------------------------------------------------------------- /playground/css/c/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/c/src/index.js -------------------------------------------------------------------------------- /playground/css/c/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/c/webpack.config.js -------------------------------------------------------------------------------- /playground/css/d/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/d/README.md -------------------------------------------------------------------------------- /playground/css/d/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/d/package-lock.json -------------------------------------------------------------------------------- /playground/css/d/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/d/package.json -------------------------------------------------------------------------------- /playground/css/d/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/d/src/index.css -------------------------------------------------------------------------------- /playground/css/d/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/d/src/index.js -------------------------------------------------------------------------------- /playground/css/d/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/d/webpack.config.js -------------------------------------------------------------------------------- /playground/css/e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/e/README.md -------------------------------------------------------------------------------- /playground/css/e/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/e/package-lock.json -------------------------------------------------------------------------------- /playground/css/e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/e/package.json -------------------------------------------------------------------------------- /playground/css/e/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/e/src/index.css -------------------------------------------------------------------------------- /playground/css/e/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/e/src/index.js -------------------------------------------------------------------------------- /playground/css/e/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/e/webpack.config.js -------------------------------------------------------------------------------- /playground/css/f/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/f/README.md -------------------------------------------------------------------------------- /playground/css/f/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/f/package-lock.json -------------------------------------------------------------------------------- /playground/css/f/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/f/package.json -------------------------------------------------------------------------------- /playground/css/f/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/f/src/index.css -------------------------------------------------------------------------------- /playground/css/f/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/f/src/index.js -------------------------------------------------------------------------------- /playground/css/f/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/f/webpack.config.js -------------------------------------------------------------------------------- /playground/css/g/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/g/README.md -------------------------------------------------------------------------------- /playground/css/g/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/g/package-lock.json -------------------------------------------------------------------------------- /playground/css/g/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/g/package.json -------------------------------------------------------------------------------- /playground/css/g/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/g/src/index.css -------------------------------------------------------------------------------- /playground/css/g/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/g/src/index.js -------------------------------------------------------------------------------- /playground/css/g/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/g/webpack.config.js -------------------------------------------------------------------------------- /playground/css/h/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/h/README.md -------------------------------------------------------------------------------- /playground/css/h/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/h/package-lock.json -------------------------------------------------------------------------------- /playground/css/h/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/h/package.json -------------------------------------------------------------------------------- /playground/css/h/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/h/src/index.css -------------------------------------------------------------------------------- /playground/css/h/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/h/src/index.js -------------------------------------------------------------------------------- /playground/css/h/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/h/webpack.config.js -------------------------------------------------------------------------------- /playground/css/i/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/i/README.md -------------------------------------------------------------------------------- /playground/css/i/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/i/package-lock.json -------------------------------------------------------------------------------- /playground/css/i/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/i/package.json -------------------------------------------------------------------------------- /playground/css/i/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/i/src/index.css -------------------------------------------------------------------------------- /playground/css/i/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/i/src/index.js -------------------------------------------------------------------------------- /playground/css/i/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/i/webpack.config.js -------------------------------------------------------------------------------- /playground/css/j/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/j/README.md -------------------------------------------------------------------------------- /playground/css/j/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/j/package-lock.json -------------------------------------------------------------------------------- /playground/css/j/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/j/package.json -------------------------------------------------------------------------------- /playground/css/j/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/j/src/index.css -------------------------------------------------------------------------------- /playground/css/j/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/j/src/index.js -------------------------------------------------------------------------------- /playground/css/j/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/css/j/webpack.config.js -------------------------------------------------------------------------------- /playground/enhanced/a/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/enhanced/a/README.md -------------------------------------------------------------------------------- /playground/enhanced/a/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/enhanced/a/package-lock.json -------------------------------------------------------------------------------- /playground/enhanced/a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/enhanced/a/package.json -------------------------------------------------------------------------------- /playground/enhanced/a/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/enhanced/a/src/index.js -------------------------------------------------------------------------------- /playground/enhanced/a/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/enhanced/a/webpack.config.js -------------------------------------------------------------------------------- /playground/enhanced/b/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/enhanced/b/README.md -------------------------------------------------------------------------------- /playground/enhanced/b/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/enhanced/b/package-lock.json -------------------------------------------------------------------------------- /playground/enhanced/b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/enhanced/b/package.json -------------------------------------------------------------------------------- /playground/enhanced/b/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/enhanced/b/src/index.js -------------------------------------------------------------------------------- /playground/enhanced/b/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/enhanced/b/webpack.config.js -------------------------------------------------------------------------------- /playground/enhanced/c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/enhanced/c/README.md -------------------------------------------------------------------------------- /playground/enhanced/c/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/enhanced/c/package-lock.json -------------------------------------------------------------------------------- /playground/enhanced/c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/enhanced/c/package.json -------------------------------------------------------------------------------- /playground/enhanced/c/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/enhanced/c/src/index.js -------------------------------------------------------------------------------- /playground/enhanced/c/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/enhanced/c/webpack.config.js -------------------------------------------------------------------------------- /playground/enhanced/d/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/enhanced/d/README.md -------------------------------------------------------------------------------- /playground/enhanced/d/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/enhanced/d/package-lock.json -------------------------------------------------------------------------------- /playground/enhanced/d/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/enhanced/d/package.json -------------------------------------------------------------------------------- /playground/enhanced/d/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/enhanced/d/src/index.js -------------------------------------------------------------------------------- /playground/enhanced/d/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/enhanced/d/webpack.config.js -------------------------------------------------------------------------------- /playground/enhanced/e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/enhanced/e/README.md -------------------------------------------------------------------------------- /playground/enhanced/e/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/enhanced/e/package-lock.json -------------------------------------------------------------------------------- /playground/enhanced/e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/enhanced/e/package.json -------------------------------------------------------------------------------- /playground/enhanced/e/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/enhanced/e/src/index.js -------------------------------------------------------------------------------- /playground/enhanced/e/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/enhanced/e/webpack.config.js -------------------------------------------------------------------------------- /playground/example/a/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/example/a/README.md -------------------------------------------------------------------------------- /playground/example/a/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/example/a/package-lock.json -------------------------------------------------------------------------------- /playground/example/a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/example/a/package.json -------------------------------------------------------------------------------- /playground/example/a/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/example/a/src/app.js -------------------------------------------------------------------------------- /playground/example/a/src/lib/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/example/a/src/lib/api.js -------------------------------------------------------------------------------- /playground/example/a/src/lib/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/example/a/src/lib/render.js -------------------------------------------------------------------------------- /playground/example/a/src/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/example/a/src/lib/utils.js -------------------------------------------------------------------------------- /playground/example/a/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/example/a/webpack.config.js -------------------------------------------------------------------------------- /playground/example/b/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/example/b/README.md -------------------------------------------------------------------------------- /playground/example/b/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/example/b/package-lock.json -------------------------------------------------------------------------------- /playground/example/b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/example/b/package.json -------------------------------------------------------------------------------- /playground/example/b/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/example/b/src/app.js -------------------------------------------------------------------------------- /playground/example/b/src/lib/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/example/b/src/lib/api.js -------------------------------------------------------------------------------- /playground/example/b/src/lib/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/example/b/src/lib/render.js -------------------------------------------------------------------------------- /playground/example/b/src/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/example/b/src/lib/utils.js -------------------------------------------------------------------------------- /playground/example/b/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/example/b/webpack.config.js -------------------------------------------------------------------------------- /playground/example/c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/example/c/README.md -------------------------------------------------------------------------------- /playground/example/c/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/example/c/package-lock.json -------------------------------------------------------------------------------- /playground/example/c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/example/c/package.json -------------------------------------------------------------------------------- /playground/example/c/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/example/c/src/app.js -------------------------------------------------------------------------------- /playground/example/c/src/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/example/c/src/lib.js -------------------------------------------------------------------------------- /playground/example/c/src/lib/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/example/c/src/lib/api.js -------------------------------------------------------------------------------- /playground/example/c/src/lib/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/example/c/src/lib/render.js -------------------------------------------------------------------------------- /playground/example/c/src/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/example/c/src/lib/utils.js -------------------------------------------------------------------------------- /playground/example/c/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/example/c/webpack.config.js -------------------------------------------------------------------------------- /playground/example/d/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/example/d/README.md -------------------------------------------------------------------------------- /playground/example/d/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/example/d/package-lock.json -------------------------------------------------------------------------------- /playground/example/d/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/example/d/package.json -------------------------------------------------------------------------------- /playground/example/d/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/example/d/src/app.js -------------------------------------------------------------------------------- /playground/example/d/src/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/example/d/src/lib.js -------------------------------------------------------------------------------- /playground/example/d/src/lib/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/example/d/src/lib/api.js -------------------------------------------------------------------------------- /playground/example/d/src/lib/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/example/d/src/lib/render.js -------------------------------------------------------------------------------- /playground/example/d/src/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/example/d/src/lib/utils.js -------------------------------------------------------------------------------- /playground/example/d/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/example/d/webpack.config.js -------------------------------------------------------------------------------- /playground/minimal/a/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/minimal/a/README.md -------------------------------------------------------------------------------- /playground/minimal/a/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/minimal/a/package-lock.json -------------------------------------------------------------------------------- /playground/minimal/a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/minimal/a/package.json -------------------------------------------------------------------------------- /playground/minimal/a/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /playground/minimal/a/webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | entry: './src/index.js', 3 | }; -------------------------------------------------------------------------------- /playground/minimal/b/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/minimal/b/README.md -------------------------------------------------------------------------------- /playground/minimal/b/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/minimal/b/package-lock.json -------------------------------------------------------------------------------- /playground/minimal/b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/minimal/b/package.json -------------------------------------------------------------------------------- /playground/minimal/b/src/index.js: -------------------------------------------------------------------------------- 1 | document.body.innerHTML = 'Hello world!'; -------------------------------------------------------------------------------- /playground/minimal/b/webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | entry: './src/index.js', 3 | }; -------------------------------------------------------------------------------- /playground/minimal/c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/minimal/c/README.md -------------------------------------------------------------------------------- /playground/minimal/c/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/minimal/c/package-lock.json -------------------------------------------------------------------------------- /playground/minimal/c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/minimal/c/package.json -------------------------------------------------------------------------------- /playground/minimal/c/src/a.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /playground/minimal/c/src/index.js: -------------------------------------------------------------------------------- 1 | import './a'; -------------------------------------------------------------------------------- /playground/minimal/c/webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | entry: './src/index.js', 3 | }; -------------------------------------------------------------------------------- /playground/minimal/d/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/minimal/d/README.md -------------------------------------------------------------------------------- /playground/minimal/d/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/minimal/d/package-lock.json -------------------------------------------------------------------------------- /playground/minimal/d/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/minimal/d/package.json -------------------------------------------------------------------------------- /playground/minimal/d/src/b.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /playground/minimal/d/src/index.js: -------------------------------------------------------------------------------- 1 | import './b'; -------------------------------------------------------------------------------- /playground/minimal/d/webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | entry: './src/index.js', 3 | }; -------------------------------------------------------------------------------- /playground/minimal/e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/minimal/e/README.md -------------------------------------------------------------------------------- /playground/minimal/e/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/minimal/e/package-lock.json -------------------------------------------------------------------------------- /playground/minimal/e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/minimal/e/package.json -------------------------------------------------------------------------------- /playground/minimal/e/src/b.js: -------------------------------------------------------------------------------- 1 | document.body.innerHTML = 'Hello world!'; -------------------------------------------------------------------------------- /playground/minimal/e/src/index.js: -------------------------------------------------------------------------------- 1 | import './b'; -------------------------------------------------------------------------------- /playground/minimal/e/webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | entry: './src/index.js', 3 | }; -------------------------------------------------------------------------------- /playground/minimal/f/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/minimal/f/README.md -------------------------------------------------------------------------------- /playground/minimal/f/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/minimal/f/package-lock.json -------------------------------------------------------------------------------- /playground/minimal/f/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/minimal/f/package.json -------------------------------------------------------------------------------- /playground/minimal/f/src/b.js: -------------------------------------------------------------------------------- 1 | document.body.innerHTML = 'Hello world!'; -------------------------------------------------------------------------------- /playground/minimal/f/src/index.js: -------------------------------------------------------------------------------- 1 | import './b'; -------------------------------------------------------------------------------- /playground/minimal/f/webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | entry: './src/index.js', 3 | }; -------------------------------------------------------------------------------- /playground/named/a/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/named/a/README.md -------------------------------------------------------------------------------- /playground/named/a/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/named/a/package-lock.json -------------------------------------------------------------------------------- /playground/named/a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/named/a/package.json -------------------------------------------------------------------------------- /playground/named/a/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /playground/named/a/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/named/a/webpack.config.js -------------------------------------------------------------------------------- /playground/named/b/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/named/b/README.md -------------------------------------------------------------------------------- /playground/named/b/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/named/b/package-lock.json -------------------------------------------------------------------------------- /playground/named/b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/named/b/package.json -------------------------------------------------------------------------------- /playground/named/b/src/index.js: -------------------------------------------------------------------------------- 1 | document.body.innerHTML = 'Hello world!'; -------------------------------------------------------------------------------- /playground/named/b/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/named/b/webpack.config.js -------------------------------------------------------------------------------- /playground/named/c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/named/c/README.md -------------------------------------------------------------------------------- /playground/named/c/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/named/c/package-lock.json -------------------------------------------------------------------------------- /playground/named/c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/named/c/package.json -------------------------------------------------------------------------------- /playground/named/c/src/bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/named/c/src/bar.js -------------------------------------------------------------------------------- /playground/named/c/src/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/named/c/src/common.js -------------------------------------------------------------------------------- /playground/named/c/src/foo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/named/c/src/foo.js -------------------------------------------------------------------------------- /playground/named/c/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/named/c/src/index.js -------------------------------------------------------------------------------- /playground/named/c/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/named/c/webpack.config.js -------------------------------------------------------------------------------- /playground/play.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/play.sh -------------------------------------------------------------------------------- /playground/timeline/a/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/a/README.md -------------------------------------------------------------------------------- /playground/timeline/a/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/a/package-lock.json -------------------------------------------------------------------------------- /playground/timeline/a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/a/package.json -------------------------------------------------------------------------------- /playground/timeline/a/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /playground/timeline/a/webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | entry: './src/index.js', 3 | }; -------------------------------------------------------------------------------- /playground/timeline/b/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/b/README.md -------------------------------------------------------------------------------- /playground/timeline/b/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/b/package-lock.json -------------------------------------------------------------------------------- /playground/timeline/b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/b/package.json -------------------------------------------------------------------------------- /playground/timeline/b/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/b/src/index.js -------------------------------------------------------------------------------- /playground/timeline/b/webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | entry: './src/index.js', 3 | }; -------------------------------------------------------------------------------- /playground/timeline/c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/c/README.md -------------------------------------------------------------------------------- /playground/timeline/c/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/c/package-lock.json -------------------------------------------------------------------------------- /playground/timeline/c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/c/package.json -------------------------------------------------------------------------------- /playground/timeline/c/src/bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/c/src/bar.js -------------------------------------------------------------------------------- /playground/timeline/c/src/foo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/c/src/foo.js -------------------------------------------------------------------------------- /playground/timeline/c/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/c/src/index.js -------------------------------------------------------------------------------- /playground/timeline/c/webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | entry: './src/index.js', 3 | }; -------------------------------------------------------------------------------- /playground/timeline/d/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/d/README.md -------------------------------------------------------------------------------- /playground/timeline/d/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/d/package-lock.json -------------------------------------------------------------------------------- /playground/timeline/d/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/d/package.json -------------------------------------------------------------------------------- /playground/timeline/d/src/bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/d/src/bar.js -------------------------------------------------------------------------------- /playground/timeline/d/src/foo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/d/src/foo.js -------------------------------------------------------------------------------- /playground/timeline/d/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/d/src/index.js -------------------------------------------------------------------------------- /playground/timeline/d/webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | entry: './src/index.js', 3 | }; -------------------------------------------------------------------------------- /playground/timeline/e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/e/README.md -------------------------------------------------------------------------------- /playground/timeline/e/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/e/package-lock.json -------------------------------------------------------------------------------- /playground/timeline/e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/e/package.json -------------------------------------------------------------------------------- /playground/timeline/e/src/bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/e/src/bar.js -------------------------------------------------------------------------------- /playground/timeline/e/src/foo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/e/src/foo.js -------------------------------------------------------------------------------- /playground/timeline/e/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/e/src/index.js -------------------------------------------------------------------------------- /playground/timeline/e/webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | entry: './src/index.js', 3 | }; -------------------------------------------------------------------------------- /playground/timeline/f/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/f/README.md -------------------------------------------------------------------------------- /playground/timeline/f/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/f/package-lock.json -------------------------------------------------------------------------------- /playground/timeline/f/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/f/package.json -------------------------------------------------------------------------------- /playground/timeline/f/src/bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/f/src/bar.js -------------------------------------------------------------------------------- /playground/timeline/f/src/foo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/f/src/foo.js -------------------------------------------------------------------------------- /playground/timeline/f/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/f/src/index.js -------------------------------------------------------------------------------- /playground/timeline/f/webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | entry: './src/index.js', 3 | }; -------------------------------------------------------------------------------- /playground/timeline/g/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/g/README.md -------------------------------------------------------------------------------- /playground/timeline/g/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/g/package-lock.json -------------------------------------------------------------------------------- /playground/timeline/g/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/g/package.json -------------------------------------------------------------------------------- /playground/timeline/g/src/bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/g/src/bar.js -------------------------------------------------------------------------------- /playground/timeline/g/src/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/g/src/common.js -------------------------------------------------------------------------------- /playground/timeline/g/src/foo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/g/src/foo.js -------------------------------------------------------------------------------- /playground/timeline/g/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/g/src/index.js -------------------------------------------------------------------------------- /playground/timeline/g/webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | entry: './src/index.js', 3 | }; -------------------------------------------------------------------------------- /playground/timeline/h/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/h/README.md -------------------------------------------------------------------------------- /playground/timeline/h/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/h/package-lock.json -------------------------------------------------------------------------------- /playground/timeline/h/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/h/package.json -------------------------------------------------------------------------------- /playground/timeline/h/src/bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/h/src/bar.js -------------------------------------------------------------------------------- /playground/timeline/h/src/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/h/src/common.js -------------------------------------------------------------------------------- /playground/timeline/h/src/foo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/h/src/foo.js -------------------------------------------------------------------------------- /playground/timeline/h/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/h/src/index.js -------------------------------------------------------------------------------- /playground/timeline/h/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/h/webpack.config.js -------------------------------------------------------------------------------- /playground/timeline/i/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/i/README.md -------------------------------------------------------------------------------- /playground/timeline/i/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/i/package-lock.json -------------------------------------------------------------------------------- /playground/timeline/i/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/i/package.json -------------------------------------------------------------------------------- /playground/timeline/i/src/bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/i/src/bar.js -------------------------------------------------------------------------------- /playground/timeline/i/src/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/i/src/common.js -------------------------------------------------------------------------------- /playground/timeline/i/src/foo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/i/src/foo.js -------------------------------------------------------------------------------- /playground/timeline/i/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/i/src/index.js -------------------------------------------------------------------------------- /playground/timeline/i/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/timeline/i/webpack.config.js -------------------------------------------------------------------------------- /playground/uglify/a/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/uglify/a/README.md -------------------------------------------------------------------------------- /playground/uglify/a/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/uglify/a/package-lock.json -------------------------------------------------------------------------------- /playground/uglify/a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/uglify/a/package.json -------------------------------------------------------------------------------- /playground/uglify/a/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/uglify/a/src/index.js -------------------------------------------------------------------------------- /playground/uglify/a/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/uglify/a/webpack.config.js -------------------------------------------------------------------------------- /playground/uglify/b/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/uglify/b/README.md -------------------------------------------------------------------------------- /playground/uglify/b/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/uglify/b/package-lock.json -------------------------------------------------------------------------------- /playground/uglify/b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/uglify/b/package.json -------------------------------------------------------------------------------- /playground/uglify/b/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/uglify/b/src/index.js -------------------------------------------------------------------------------- /playground/uglify/b/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/uglify/b/webpack.config.js -------------------------------------------------------------------------------- /playground/uglify/c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/uglify/c/README.md -------------------------------------------------------------------------------- /playground/uglify/c/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/uglify/c/package-lock.json -------------------------------------------------------------------------------- /playground/uglify/c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/uglify/c/package.json -------------------------------------------------------------------------------- /playground/uglify/c/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/uglify/c/src/index.js -------------------------------------------------------------------------------- /playground/uglify/c/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/uglify/c/webpack.config.js -------------------------------------------------------------------------------- /playground/upgrade-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/playground/upgrade-deps.sh -------------------------------------------------------------------------------- /src/App/AddStats.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/AddStats.re -------------------------------------------------------------------------------- /src/App/AddStatsButton.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/AddStatsButton.re -------------------------------------------------------------------------------- /src/App/App.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/App.re -------------------------------------------------------------------------------- /src/App/Breadcrumbs.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Breadcrumbs.re -------------------------------------------------------------------------------- /src/App/Button.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Button.re -------------------------------------------------------------------------------- /src/App/Code.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Code.re -------------------------------------------------------------------------------- /src/App/CodeDiff.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/CodeDiff.re -------------------------------------------------------------------------------- /src/App/ComparisonChooser.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/ComparisonChooser.re -------------------------------------------------------------------------------- /src/App/DoubleSwitch.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/DoubleSwitch.re -------------------------------------------------------------------------------- /src/App/Dropzone.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Dropzone.re -------------------------------------------------------------------------------- /src/App/EntryOverview.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/EntryOverview.re -------------------------------------------------------------------------------- /src/App/EntrySummary.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/EntrySummary.re -------------------------------------------------------------------------------- /src/App/EntryTree.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/EntryTree.re -------------------------------------------------------------------------------- /src/App/EntryTreeMapper.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/EntryTreeMapper.re -------------------------------------------------------------------------------- /src/App/FetchArea.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/FetchArea.re -------------------------------------------------------------------------------- /src/App/L10N.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/L10N.re -------------------------------------------------------------------------------- /src/App/Logo.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Logo.re -------------------------------------------------------------------------------- /src/App/NavigationLayout.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/NavigationLayout.re -------------------------------------------------------------------------------- /src/App/NavigationPath.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/NavigationPath.ml -------------------------------------------------------------------------------- /src/App/NumericDiff.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/NumericDiff.re -------------------------------------------------------------------------------- /src/App/ReversedText.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/ReversedText.re -------------------------------------------------------------------------------- /src/App/Sidebar.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Sidebar.re -------------------------------------------------------------------------------- /src/App/Size.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Size.re -------------------------------------------------------------------------------- /src/App/Snackbar.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Snackbar.re -------------------------------------------------------------------------------- /src/App/SourceTreeSwitcher.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/SourceTreeSwitcher.re -------------------------------------------------------------------------------- /src/App/State.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/State.ml -------------------------------------------------------------------------------- /src/App/StringDiff.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/StringDiff.re -------------------------------------------------------------------------------- /src/App/Tabs.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tabs.re -------------------------------------------------------------------------------- /src/App/Theme.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Theme.re -------------------------------------------------------------------------------- /src/App/Timeline.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Timeline.re -------------------------------------------------------------------------------- /src/App/TimelineTooltip.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/TimelineTooltip.re -------------------------------------------------------------------------------- /src/App/ToggleTimeline.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/ToggleTimeline.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step1.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step1.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step10.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step10.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step11.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step11.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step12.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step12.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step13.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step13.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step14.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step14.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step15.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step15.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step16.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step16.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step17.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step17.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step18.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step18.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step19.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step19.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step2.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step2.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step20.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step20.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step21.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step21.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step22.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step22.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step23.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step23.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step24.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step24.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step25.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step25.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step26.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step26.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step27.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step27.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step28.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step28.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step29.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step29.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step3.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step3.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step30.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step30.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step31.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step31.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step32.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step32.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step33.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step33.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step34.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step34.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step35.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step35.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step4.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step4.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step5.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step5.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step6.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step6.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step7.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step7.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step8.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step8.re -------------------------------------------------------------------------------- /src/App/Tour/AppTour__Step9.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/Tour/AppTour__Step9.re -------------------------------------------------------------------------------- /src/App/UrlState.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/UrlState.ml -------------------------------------------------------------------------------- /src/App/WelcomeScreen.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/App/WelcomeScreen.re -------------------------------------------------------------------------------- /src/Index.re: -------------------------------------------------------------------------------- 1 | ReactDOMRe.renderToElementWithId(, "app"); -------------------------------------------------------------------------------- /src/Stats/CompareEntry.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/Stats/CompareEntry.ml -------------------------------------------------------------------------------- /src/Stats/CompareKind.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/Stats/CompareKind.ml -------------------------------------------------------------------------------- /src/Stats/CompareStats.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/Stats/CompareStats.ml -------------------------------------------------------------------------------- /src/Stats/Diff.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/Stats/Diff.ml -------------------------------------------------------------------------------- /src/Stats/Entry.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/Stats/Entry.ml -------------------------------------------------------------------------------- /src/Stats/JsDiff.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/Stats/JsDiff.ml -------------------------------------------------------------------------------- /src/Stats/ModifiedEntry.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/Stats/ModifiedEntry.ml -------------------------------------------------------------------------------- /src/Stats/ModuleList.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/Stats/ModuleList.ml -------------------------------------------------------------------------------- /src/Stats/ModulePath.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/Stats/ModulePath.ml -------------------------------------------------------------------------------- /src/Stats/Reasons.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/Stats/Reasons.ml -------------------------------------------------------------------------------- /src/Stats/SourceTree.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/Stats/SourceTree.ml -------------------------------------------------------------------------------- /src/Utils.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/Utils.ml -------------------------------------------------------------------------------- /src/Webpack/WebpackAsset.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/Webpack/WebpackAsset.ml -------------------------------------------------------------------------------- /src/Webpack/WebpackAssetsGroup.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/Webpack/WebpackAssetsGroup.ml -------------------------------------------------------------------------------- /src/Webpack/WebpackChild.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/Webpack/WebpackChild.ml -------------------------------------------------------------------------------- /src/Webpack/WebpackChunk.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/Webpack/WebpackChunk.ml -------------------------------------------------------------------------------- /src/Webpack/WebpackEntrypoint.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/Webpack/WebpackEntrypoint.ml -------------------------------------------------------------------------------- /src/Webpack/WebpackModule.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/Webpack/WebpackModule.ml -------------------------------------------------------------------------------- /src/Webpack/WebpackOrigin.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/Webpack/WebpackOrigin.ml -------------------------------------------------------------------------------- /src/Webpack/WebpackProfile.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/Webpack/WebpackProfile.ml -------------------------------------------------------------------------------- /src/Webpack/WebpackReason.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/Webpack/WebpackReason.ml -------------------------------------------------------------------------------- /src/Webpack/WebpackStats.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/Webpack/WebpackStats.ml -------------------------------------------------------------------------------- /src/__tests__/App_test.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/__tests__/App_test.re -------------------------------------------------------------------------------- /src/__tests__/CompareEntry_test.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/__tests__/CompareEntry_test.re -------------------------------------------------------------------------------- /src/__tests__/CompareStats_test.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/__tests__/CompareStats_test.re -------------------------------------------------------------------------------- /src/__tests__/EntryTreeMapper_test.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/__tests__/EntryTreeMapper_test.re -------------------------------------------------------------------------------- /src/__tests__/Entry_test.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/__tests__/Entry_test.re -------------------------------------------------------------------------------- /src/__tests__/JsDiff_test.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/__tests__/JsDiff_test.re -------------------------------------------------------------------------------- /src/__tests__/ModifiedEntry_test.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/__tests__/ModifiedEntry_test.re -------------------------------------------------------------------------------- /src/__tests__/ModuleList__test.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/__tests__/ModuleList__test.re -------------------------------------------------------------------------------- /src/__tests__/NavigationPath_test.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/__tests__/NavigationPath_test.re -------------------------------------------------------------------------------- /src/__tests__/SourceTree__test.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/__tests__/SourceTree__test.re -------------------------------------------------------------------------------- /src/__tests__/Utils_test.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/__tests__/Utils_test.re -------------------------------------------------------------------------------- /src/data.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/data.re -------------------------------------------------------------------------------- /src/data/css-modules/branch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/data/css-modules/branch.json -------------------------------------------------------------------------------- /src/data/css-modules/master.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/data/css-modules/master.json -------------------------------------------------------------------------------- /src/data/enhanced/a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/data/enhanced/a.json -------------------------------------------------------------------------------- /src/data/enhanced/b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/data/enhanced/b.json -------------------------------------------------------------------------------- /src/data/enhanced/c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/data/enhanced/c.json -------------------------------------------------------------------------------- /src/data/enhanced/d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/data/enhanced/d.json -------------------------------------------------------------------------------- /src/data/enhanced/e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/data/enhanced/e.json -------------------------------------------------------------------------------- /src/data/example/a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/data/example/a.json -------------------------------------------------------------------------------- /src/data/example/b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/data/example/b.json -------------------------------------------------------------------------------- /src/data/example/c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/data/example/c.json -------------------------------------------------------------------------------- /src/data/example/d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/data/example/d.json -------------------------------------------------------------------------------- /src/data/no-diff/branch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/data/no-diff/branch.json -------------------------------------------------------------------------------- /src/data/no-diff/master.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/data/no-diff/master.json -------------------------------------------------------------------------------- /src/data/null-index/branch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/data/null-index/branch.json -------------------------------------------------------------------------------- /src/data/null-index/master.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/data/null-index/master.json -------------------------------------------------------------------------------- /src/data/si/branch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/data/si/branch.json -------------------------------------------------------------------------------- /src/data/si/master.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/data/si/master.json -------------------------------------------------------------------------------- /src/data/small/a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/data/small/a.json -------------------------------------------------------------------------------- /src/data/small/b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/data/small/b.json -------------------------------------------------------------------------------- /src/data/small/c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/data/small/c.json -------------------------------------------------------------------------------- /src/data/small/d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/data/small/d.json -------------------------------------------------------------------------------- /src/data/small/e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/data/small/e.json -------------------------------------------------------------------------------- /src/data/timeline/a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/data/timeline/a.json -------------------------------------------------------------------------------- /src/data/timeline/b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/data/timeline/b.json -------------------------------------------------------------------------------- /src/data/timeline/c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/data/timeline/c.json -------------------------------------------------------------------------------- /src/data/timeline/d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/data/timeline/d.json -------------------------------------------------------------------------------- /src/data/timeline/e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/data/timeline/e.json -------------------------------------------------------------------------------- /src/data/timeline/f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/data/timeline/f.json -------------------------------------------------------------------------------- /src/data/timeline/g.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/data/timeline/g.json -------------------------------------------------------------------------------- /src/data/timeline/h.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/data/timeline/h.json -------------------------------------------------------------------------------- /src/data/timeline/i.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/data/timeline/i.json -------------------------------------------------------------------------------- /src/data/webpack3/0.87.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/data/webpack3/0.87.1.json -------------------------------------------------------------------------------- /src/data/webpack3/0.87.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/data/webpack3/0.87.2.json -------------------------------------------------------------------------------- /src/dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/dev.html -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/src/index.html -------------------------------------------------------------------------------- /upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/upgrade.sh -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/webpack-stats-explorer/HEAD/webpack.config.js --------------------------------------------------------------------------------