├── .dependabot └── config.yml ├── .editorconfig ├── .ember-cli ├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc.js ├── .watchmanconfig ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── RELEASE.md ├── create-config.js ├── docs ├── demo.html └── screen.png ├── ember-cli-build.js ├── index.js ├── lib ├── inject-livereload.js └── output │ ├── computing │ └── index.html │ └── no-stats │ └── index.html ├── node-tests ├── acceptance-test.js └── inject-livereload-test.js ├── package.json ├── testem.js ├── tests ├── dummy │ ├── app │ │ ├── app.js │ │ ├── components │ │ │ └── .gitkeep │ │ ├── controllers │ │ │ └── .gitkeep │ │ ├── helpers │ │ │ └── .gitkeep │ │ ├── index.html │ │ ├── models │ │ │ └── .gitkeep │ │ ├── router.js │ │ ├── routes │ │ │ └── .gitkeep │ │ ├── styles │ │ │ └── app.css │ │ └── templates │ │ │ └── application.hbs │ ├── config │ │ ├── ember-cli-update.json │ │ ├── ember-try.js │ │ ├── environment.js │ │ ├── optional-features.json │ │ └── targets.js │ └── public │ │ └── robots.txt ├── helpers │ └── index.js ├── index.html ├── integration │ └── .gitkeep ├── test-helper.js └── unit │ └── .gitkeep └── yarn.lock /.dependabot/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/.dependabot/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.ember-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/.ember-cli -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | singleQuote: true, 5 | }; 6 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/RELEASE.md -------------------------------------------------------------------------------- /create-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/create-config.js -------------------------------------------------------------------------------- /docs/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/docs/demo.html -------------------------------------------------------------------------------- /docs/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/docs/screen.png -------------------------------------------------------------------------------- /ember-cli-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/ember-cli-build.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/index.js -------------------------------------------------------------------------------- /lib/inject-livereload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/lib/inject-livereload.js -------------------------------------------------------------------------------- /lib/output/computing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/lib/output/computing/index.html -------------------------------------------------------------------------------- /lib/output/no-stats/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/lib/output/no-stats/index.html -------------------------------------------------------------------------------- /node-tests/acceptance-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/node-tests/acceptance-test.js -------------------------------------------------------------------------------- /node-tests/inject-livereload-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/node-tests/inject-livereload-test.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/package.json -------------------------------------------------------------------------------- /testem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/testem.js -------------------------------------------------------------------------------- /tests/dummy/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/tests/dummy/app/app.js -------------------------------------------------------------------------------- /tests/dummy/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/tests/dummy/app/index.html -------------------------------------------------------------------------------- /tests/dummy/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/tests/dummy/app/router.js -------------------------------------------------------------------------------- /tests/dummy/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/tests/dummy/app/styles/app.css -------------------------------------------------------------------------------- /tests/dummy/app/templates/application.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/tests/dummy/app/templates/application.hbs -------------------------------------------------------------------------------- /tests/dummy/config/ember-cli-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/tests/dummy/config/ember-cli-update.json -------------------------------------------------------------------------------- /tests/dummy/config/ember-try.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/tests/dummy/config/ember-try.js -------------------------------------------------------------------------------- /tests/dummy/config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/tests/dummy/config/environment.js -------------------------------------------------------------------------------- /tests/dummy/config/optional-features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/tests/dummy/config/optional-features.json -------------------------------------------------------------------------------- /tests/dummy/config/targets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/tests/dummy/config/targets.js -------------------------------------------------------------------------------- /tests/dummy/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /tests/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/tests/helpers/index.js -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/tests/index.html -------------------------------------------------------------------------------- /tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/tests/test-helper.js -------------------------------------------------------------------------------- /tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonihmig/ember-cli-bundle-analyzer/HEAD/yarn.lock --------------------------------------------------------------------------------