├── fixtures ├── ember-quickstart │ ├── vendor │ │ └── .gitkeep │ ├── app │ │ ├── helpers │ │ │ └── .gitkeep │ │ ├── models │ │ │ └── .gitkeep │ │ ├── routes │ │ │ └── .gitkeep │ │ ├── styles │ │ │ └── app.css │ │ ├── components │ │ │ └── .gitkeep │ │ ├── controllers │ │ │ └── .gitkeep │ │ ├── templates │ │ │ ├── components │ │ │ │ └── .gitkeep │ │ │ └── application.hbs │ │ ├── resolver.js │ │ ├── router.js │ │ └── app.js │ ├── tests │ │ ├── helpers │ │ │ └── .gitkeep │ │ ├── unit │ │ │ └── .gitkeep │ │ ├── integration │ │ │ └── .gitkeep │ │ └── test-helper.js │ ├── .yarnrc │ ├── .watchmanconfig │ ├── public │ │ └── robots.txt │ ├── .ember-cli │ ├── config │ │ └── targets.js │ ├── .travis.yml │ ├── .gitignore │ ├── .editorconfig │ ├── testem.js │ └── .eslintrc.js ├── angular-quickstart │ ├── src │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.ts │ │ │ └── app.module.ts │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── styles.css │ │ ├── favicon.ico │ │ ├── typings.d.ts │ │ ├── tsconfig.app.json │ │ ├── index.html │ │ ├── tsconfig.spec.json │ │ ├── main.ts │ │ └── test.ts │ ├── .yarnrc │ ├── e2e │ │ ├── app.po.ts │ │ ├── tsconfig.e2e.json │ │ └── app.e2e-spec.ts │ ├── .editorconfig │ ├── tsconfig.json │ └── .gitignore ├── react-app │ ├── .yarnrc │ ├── src │ │ ├── index.css │ │ ├── index.js │ │ ├── App.test.js │ │ ├── App.css │ │ └── App.js │ ├── public │ │ ├── favicon.ico │ │ └── manifest.json │ ├── .gitignore │ └── package.json ├── alotta-files │ └── .yarnrc └── medium-size-app │ └── .yarnrc ├── .gitignore ├── results ├── npm │ ├── 4.4.4 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 4.2.0 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 4.3.0 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 4.4.1 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 4.5.0 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 4.6.1 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 5.0.3 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 5.0.4 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 5.1.0 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 5.2.0 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 5.5.1 │ │ ├── alotta-files.yaml │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ ├── ember-quickstart.yaml │ │ └── medium-size-app.yaml │ ├── 6.3.0 │ │ ├── alotta-files.yaml │ │ ├── medium-size-app.yaml │ │ ├── angular-quickstart.yaml │ │ ├── ember-quickstart.yaml │ │ └── react-app.yaml │ ├── 6.11.3 │ │ ├── react-app.yaml │ │ ├── alotta-files.yaml │ │ ├── angular-quickstart.yaml │ │ ├── ember-quickstart.yaml │ │ └── medium-size-app.yaml │ ├── 5.4.2 │ │ ├── react-app.yaml │ │ ├── alotta-files.yaml │ │ ├── angular-quickstart.yaml │ │ ├── medium-size-app.yaml │ │ └── ember-quickstart.yaml │ ├── 5.4.1 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 5.3.0 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 5.4.0 │ │ ├── angular-quickstart.yaml │ │ ├── react-app.yaml │ │ └── ember-quickstart.yaml │ ├── 5.6.0 │ │ ├── react-app.yaml │ │ ├── alotta-files.yaml │ │ ├── ember-quickstart.yaml │ │ ├── medium-size-app.yaml │ │ └── angular-quickstart.yaml │ ├── 5.7.1 │ │ ├── react-app.yaml │ │ ├── alotta-files.yaml │ │ ├── medium-size-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 6.1.0 │ │ ├── react-app.yaml │ │ ├── alotta-files.yaml │ │ ├── medium-size-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 6.13.6 │ │ ├── alotta-files.yaml │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ ├── ember-quickstart.yaml │ │ └── medium-size-app.yaml │ ├── 5.8.0 │ │ ├── alotta-files.yaml │ │ └── react-app.yaml │ ├── 6.4.1 │ │ ├── alotta-files.yaml │ │ ├── ember-quickstart.yaml │ │ └── react-app.yaml │ └── 6.5.0 │ │ ├── alotta-files.yaml │ │ └── react-app.yaml ├── pnpm │ ├── 0.64.2 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 1.3.0 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 0.57.0 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 0.57.2 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 0.58.0 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 0.59.0 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 0.60.2 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 0.62.1 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 0.64.4 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 0.65.0 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 0.65.4 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 0.66.4 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 0.68.0 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 0.69.0 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 0.70.0 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 0.75.0 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 1.2.0 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 1.3.4 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 1.7.0 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 0.74.3 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 1.15.0 │ │ ├── alotta-files.yaml │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ ├── ember-quickstart.yaml │ │ └── medium-size-app.yaml │ ├── 1.23.2 │ │ ├── react-app.yaml │ │ ├── alotta-files.yaml │ │ ├── angular-quickstart.yaml │ │ ├── medium-size-app.yaml │ │ └── ember-quickstart.yaml │ ├── 2.13.0 │ │ ├── alotta-files.yaml │ │ ├── angular-quickstart.yaml │ │ ├── medium-size-app.yaml │ │ ├── ember-quickstart.yaml │ │ └── react-app.yaml │ ├── 4.0.0-7 │ │ ├── react-app.yaml │ │ ├── alotta-files.yaml │ │ ├── ember-quickstart.yaml │ │ ├── medium-size-app.yaml │ │ └── angular-quickstart.yaml │ ├── 1.16.3 │ │ ├── react-app.yaml │ │ ├── alotta-files.yaml │ │ ├── angular-quickstart.yaml │ │ ├── ember-quickstart.yaml │ │ └── medium-size-app.yaml │ ├── 1.9.0 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 1.10.2 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 1.11.0 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 1.12.0 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 1.13.0 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 1.14.5 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 1.17.0 │ │ ├── react-app.yaml │ │ ├── alotta-files.yaml │ │ ├── angular-quickstart.yaml │ │ ├── ember-quickstart.yaml │ │ └── medium-size-app.yaml │ ├── 1.23.0 │ │ ├── react-app.yaml │ │ ├── alotta-files.yaml │ │ ├── angular-quickstart.yaml │ │ ├── ember-quickstart.yaml │ │ └── medium-size-app.yaml │ ├── 1.7.1 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 1.8.0 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 1.8.2 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 2.8.0 │ │ ├── react-app.yaml │ │ ├── alotta-files.yaml │ │ ├── angular-quickstart.yaml │ │ ├── ember-quickstart.yaml │ │ └── medium-size-app.yaml │ ├── 1.33.0 │ │ ├── react-app.yaml │ │ ├── alotta-files.yaml │ │ ├── medium-size-app.yaml │ │ ├── ember-quickstart.yaml │ │ └── angular-quickstart.yaml │ ├── 1.36.1 │ │ ├── react-app.yaml │ │ ├── alotta-files.yaml │ │ ├── medium-size-app.yaml │ │ ├── ember-quickstart.yaml │ │ └── angular-quickstart.yaml │ ├── 3.0.0 │ │ ├── react-app.yaml │ │ ├── alotta-files.yaml │ │ ├── ember-quickstart.yaml │ │ ├── medium-size-app.yaml │ │ └── angular-quickstart.yaml │ ├── 2.7.0 │ │ ├── alotta-files.yaml │ │ ├── ember-quickstart.yaml │ │ ├── medium-size-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── react-app.yaml │ ├── 4.7.1 │ │ ├── alotta-files.yaml │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ ├── ember-quickstart.yaml │ │ └── medium-size-app.yaml │ ├── 5.0.0-alpha.3 │ │ └── ember-quickstart.yaml │ ├── 1.24.2 │ │ ├── react-app.yaml │ │ └── angular-quickstart.yaml │ ├── 2.15.0 │ │ ├── react-app.yaml │ │ ├── alotta-files.yaml │ │ └── medium-size-app.yaml │ ├── 2.17.0 │ │ ├── react-app.yaml │ │ ├── alotta-files.yaml │ │ ├── ember-quickstart.yaml │ │ └── medium-size-app.yaml │ ├── 2.22.0 │ │ ├── react-app.yaml │ │ ├── ember-quickstart.yaml │ │ ├── alotta-files.yaml │ │ └── medium-size-app.yaml │ ├── 1.38.0 │ │ └── react-app.yaml │ ├── 1.41.1 │ │ └── react-app.yaml │ ├── 2.24.0 │ │ ├── react-app.yaml │ │ ├── alotta-files.yaml │ │ ├── ember-quickstart.yaml │ │ └── medium-size-app.yaml │ └── 2.25.7 │ │ ├── react-app.yaml │ │ ├── alotta-files.yaml │ │ ├── ember-quickstart.yaml │ │ └── medium-size-app.yaml ├── yarn │ ├── 0.20.3 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 0.21.3 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 0.22.0 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 0.23.4 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 0.24.4 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 0.24.5 │ │ ├── react-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 1.1.0 │ │ ├── alotta-files.yaml │ │ ├── angular-quickstart.yaml │ │ ├── medium-size-app.yaml │ │ ├── react-app.yaml │ │ └── ember-quickstart.yaml │ ├── 1.9.4 │ │ ├── alotta-files.yaml │ │ ├── medium-size-app.yaml │ │ ├── angular-quickstart.yaml │ │ ├── ember-quickstart.yaml │ │ └── react-app.yaml │ ├── 1.19.0 │ │ ├── alotta-files.yaml │ │ ├── react-app.yaml │ │ ├── ember-quickstart.yaml │ │ ├── medium-size-app.yaml │ │ └── angular-quickstart.yaml │ ├── 1.2.0 │ │ ├── react-app.yaml │ │ ├── alotta-files.yaml │ │ ├── angular-quickstart.yaml │ │ ├── medium-size-app.yaml │ │ └── ember-quickstart.yaml │ ├── 0.27.5 │ │ ├── angular-quickstart.yaml │ │ ├── react-app.yaml │ │ └── ember-quickstart.yaml │ ├── 1.2.1 │ │ ├── angular-quickstart.yaml │ │ ├── alotta-files.yaml │ │ ├── medium-size-app.yaml │ │ ├── react-app.yaml │ │ └── ember-quickstart.yaml │ ├── 1.0.0 │ │ ├── angular-quickstart.yaml │ │ ├── react-app.yaml │ │ └── ember-quickstart.yaml │ ├── 1.0.2 │ │ ├── angular-quickstart.yaml │ │ ├── react-app.yaml │ │ └── ember-quickstart.yaml │ ├── 1.13.0 │ │ ├── react-app.yaml │ │ ├── alotta-files.yaml │ │ ├── medium-size-app.yaml │ │ ├── angular-quickstart.yaml │ │ └── ember-quickstart.yaml │ ├── 1.3.2 │ │ ├── react-app.yaml │ │ ├── alotta-files.yaml │ │ ├── ember-quickstart.yaml │ │ ├── medium-size-app.yaml │ │ └── angular-quickstart.yaml │ ├── 1.7.0 │ │ ├── react-app.yaml │ │ ├── alotta-files.yaml │ │ ├── ember-quickstart.yaml │ │ ├── medium-size-app.yaml │ │ └── angular-quickstart.yaml │ ├── 1.21.1 │ │ ├── react-app.yaml │ │ ├── alotta-files.yaml │ │ ├── angular-quickstart.yaml │ │ ├── ember-quickstart.yaml │ │ └── medium-size-app.yaml │ ├── 1.10.0 │ │ ├── react-app.yaml │ │ ├── alotta-files.yaml │ │ ├── ember-quickstart.yaml │ │ └── medium-size-app.yaml │ ├── 1.10.1 │ │ ├── react-app.yaml │ │ ├── ember-quickstart.yaml │ │ ├── alotta-files.yaml │ │ └── medium-size-app.yaml │ ├── 1.12.3 │ │ ├── react-app.yaml │ │ ├── alotta-files.yaml │ │ └── ember-quickstart.yaml │ └── 1.6.0 │ │ └── react-app.yaml └── yarn_pnp │ ├── 1.19.0 │ ├── react-app.yaml │ ├── alotta-files.yaml │ ├── ember-quickstart.yaml │ ├── medium-size-app.yaml │ └── angular-quickstart.yaml │ └── 1.21.1 │ ├── react-app.yaml │ ├── alotta-files.yaml │ ├── angular-quickstart.yaml │ ├── ember-quickstart.yaml │ └── medium-size-app.yaml └── .editorconfig /fixtures/ember-quickstart/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/angular-quickstart/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/ember-quickstart/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/ember-quickstart/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/ember-quickstart/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/ember-quickstart/app/styles/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/ember-quickstart/tests/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/ember-quickstart/tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/angular-quickstart/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/ember-quickstart/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/ember-quickstart/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/ember-quickstart/tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | npm-debug.log 2 | 3 | node_modules 4 | 5 | .tmp -------------------------------------------------------------------------------- /fixtures/ember-quickstart/app/templates/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/react-app/.yarnrc: -------------------------------------------------------------------------------- 1 | registry "https://registry.npmjs.org" 2 | -------------------------------------------------------------------------------- /fixtures/alotta-files/.yarnrc: -------------------------------------------------------------------------------- 1 | registry "https://registry.npmjs.org" 2 | -------------------------------------------------------------------------------- /results/npm/4.4.4/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 43682 2 | size: 96497335 3 | -------------------------------------------------------------------------------- /results/pnpm/0.64.2/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 11839 2 | size: 90988433 3 | -------------------------------------------------------------------------------- /fixtures/angular-quickstart/.yarnrc: -------------------------------------------------------------------------------- 1 | registry "https://registry.npmjs.org" 2 | -------------------------------------------------------------------------------- /fixtures/ember-quickstart/.yarnrc: -------------------------------------------------------------------------------- 1 | registry "https://registry.npmjs.org" 2 | -------------------------------------------------------------------------------- /fixtures/medium-size-app/.yarnrc: -------------------------------------------------------------------------------- 1 | registry "https://registry.npmjs.org" 2 | -------------------------------------------------------------------------------- /results/npm/4.4.4/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 31467 2 | size: 92207477 3 | -------------------------------------------------------------------------------- /results/npm/4.4.4/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 55221 2 | size: 111149923 3 | -------------------------------------------------------------------------------- /results/pnpm/0.64.2/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 10042 2 | size: 90585476 3 | -------------------------------------------------------------------------------- /results/pnpm/0.64.2/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 20455 2 | size: 107755594 3 | -------------------------------------------------------------------------------- /fixtures/ember-quickstart/.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /fixtures/ember-quickstart/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /fixtures/ember-quickstart/app/resolver.js: -------------------------------------------------------------------------------- 1 | import Resolver from 'ember-resolver'; 2 | 3 | export default Resolver; 4 | -------------------------------------------------------------------------------- /fixtures/react-app/src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | padding: 0; 4 | font-family: sans-serif; 5 | } 6 | -------------------------------------------------------------------------------- /fixtures/angular-quickstart/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /fixtures/angular-quickstart/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /results/pnpm/1.3.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 10211 2 | size: 97036864 3 | - time: 9961 4 | size: 97036864 5 | - time: 9983 6 | size: 97036864 7 | -------------------------------------------------------------------------------- /results/npm/4.2.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 36425 2 | size: 96362992 3 | - time: 38064 4 | size: 96362992 5 | - time: 39012 6 | size: 96362992 7 | -------------------------------------------------------------------------------- /results/npm/4.3.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 55855 2 | size: 96362992 3 | - time: 53300 4 | size: 96362992 5 | - time: 59146 6 | size: 96362992 7 | -------------------------------------------------------------------------------- /results/npm/4.4.1/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 47638 2 | size: 96363131 3 | - time: 43541 4 | size: 96363131 5 | - time: 43171 6 | size: 96363131 7 | -------------------------------------------------------------------------------- /results/npm/4.5.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 40206 2 | size: 96634127 3 | - time: 44632 4 | size: 96634127 5 | - time: 41848 6 | size: 96634127 7 | -------------------------------------------------------------------------------- /results/npm/4.6.1/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 40185 2 | size: 96650160 3 | - time: 43227 4 | size: 96650160 5 | - time: 44939 6 | size: 96650160 7 | -------------------------------------------------------------------------------- /results/npm/5.0.3/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 30960 2 | size: 139851077 3 | - time: 31166 4 | size: 139849156 5 | - time: 33514 6 | size: 139855733 7 | -------------------------------------------------------------------------------- /results/npm/5.0.4/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 32575 2 | size: 99166896 3 | - time: 35299 4 | size: 99166896 5 | - time: 35841 6 | size: 99166896 7 | -------------------------------------------------------------------------------- /results/npm/5.1.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 25441 2 | size: 99167068 3 | - time: 25480 4 | size: 99167068 5 | - time: 25995 6 | size: 99167068 7 | -------------------------------------------------------------------------------- /results/npm/5.2.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 31324 2 | size: 99167576 3 | - time: 27192 4 | size: 99167576 5 | - time: 27357 6 | size: 99167576 7 | -------------------------------------------------------------------------------- /results/pnpm/0.57.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 11062 2 | size: 90816940 3 | - time: 11229 4 | size: 90816940 5 | - time: 12161 6 | size: 90816940 7 | -------------------------------------------------------------------------------- /results/pnpm/0.57.2/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 11433 2 | size: 90836287 3 | - time: 11149 4 | size: 90836287 5 | - time: 14785 6 | size: 90836287 7 | -------------------------------------------------------------------------------- /results/pnpm/0.58.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 20635 2 | size: 90836287 3 | - time: 15331 4 | size: 90836287 5 | - time: 15951 6 | size: 90836287 7 | -------------------------------------------------------------------------------- /results/pnpm/0.59.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 10530 2 | size: 90836287 3 | - time: 12847 4 | size: 90836287 5 | - time: 13928 6 | size: 90836287 7 | -------------------------------------------------------------------------------- /results/pnpm/0.60.2/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 12670 2 | size: 90836426 3 | - time: 12775 4 | size: 90836426 5 | - time: 14083 6 | size: 90836426 7 | -------------------------------------------------------------------------------- /results/pnpm/0.62.1/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 12915 2 | size: 90835370 3 | - time: 16155 4 | size: 90835370 5 | - time: 14825 6 | size: 90835370 7 | -------------------------------------------------------------------------------- /results/pnpm/0.64.4/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 16257 2 | size: 91017063 3 | - time: 13596 4 | size: 91017063 5 | - time: 16907 6 | size: 91017063 7 | -------------------------------------------------------------------------------- /results/pnpm/0.65.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 14055 2 | size: 91017063 3 | - time: 13177 4 | size: 91017063 5 | - time: 14220 6 | size: 91017063 7 | -------------------------------------------------------------------------------- /results/pnpm/0.65.4/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 13788 2 | size: 96886446 3 | - time: 12670 4 | size: 96886446 5 | - time: 12066 6 | size: 96886446 7 | -------------------------------------------------------------------------------- /results/pnpm/0.66.4/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 13908 2 | size: 96878137 3 | - time: 11549 4 | size: 96878137 5 | - time: 12744 6 | size: 96878137 7 | -------------------------------------------------------------------------------- /results/pnpm/0.68.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 11383 2 | size: 96892229 3 | - time: 11521 4 | size: 96892229 5 | - time: 11968 6 | size: 96892229 7 | -------------------------------------------------------------------------------- /results/pnpm/0.69.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 11172 2 | size: 96926740 3 | - time: 14902 4 | size: 96926740 5 | - time: 13709 6 | size: 96926740 7 | -------------------------------------------------------------------------------- /results/pnpm/0.70.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 9624 2 | size: 216649018 3 | - time: 10046 4 | size: 216649018 5 | - time: 9928 6 | size: 216649018 7 | -------------------------------------------------------------------------------- /results/pnpm/0.75.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 20890 2 | size: 97036593 3 | - time: 10734 4 | size: 97036593 5 | - time: 11368 6 | size: 97036593 7 | -------------------------------------------------------------------------------- /results/pnpm/1.2.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 10422 2 | size: 97036864 3 | - time: 10592 4 | size: 97036864 5 | - time: 10436 6 | size: 97036864 7 | -------------------------------------------------------------------------------- /results/pnpm/1.3.4/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 10494 2 | size: 97037118 3 | - time: 10919 4 | size: 97037118 5 | - time: 10886 6 | size: 97037118 7 | -------------------------------------------------------------------------------- /results/pnpm/1.7.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 10248 2 | size: 97060795 3 | - time: 10335 4 | size: 97060795 5 | - time: 9876 6 | size: 97060795 7 | -------------------------------------------------------------------------------- /fixtures/react-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnpm/benchmarks-of-javascript-package-managers/HEAD/fixtures/react-app/public/favicon.ico -------------------------------------------------------------------------------- /results/npm/4.2.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 30887 2 | size: 91966739 3 | - time: 31887 4 | size: 91966739 5 | - time: 28780 6 | size: 91970835 7 | -------------------------------------------------------------------------------- /results/npm/4.3.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 34944 2 | size: 91991693 3 | - time: 33618 4 | size: 91991693 5 | - time: 31970 6 | size: 91991693 7 | -------------------------------------------------------------------------------- /results/npm/4.4.1/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 31492 2 | size: 92167354 3 | - time: 30996 4 | size: 92163258 5 | - time: 29902 6 | size: 92167354 7 | -------------------------------------------------------------------------------- /results/npm/4.5.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 34815 2 | size: 93702595 3 | - time: 40756 4 | size: 93706691 5 | - time: 32981 6 | size: 93702595 7 | -------------------------------------------------------------------------------- /results/npm/4.6.1/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 30910 2 | size: 97070841 3 | - time: 29221 4 | size: 97070841 5 | - time: 30543 6 | size: 97070841 7 | -------------------------------------------------------------------------------- /results/npm/5.0.4/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 14637 2 | size: 95408524 3 | - time: 16201 4 | size: 95412620 5 | - time: 14944 6 | size: 95412620 7 | -------------------------------------------------------------------------------- /results/npm/5.1.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 10310 2 | size: 95403216 3 | - time: 10106 4 | size: 95411408 5 | - time: 10271 6 | size: 95411408 7 | -------------------------------------------------------------------------------- /results/npm/5.2.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 11146 2 | size: 95403222 3 | - time: 13085 4 | size: 95403222 5 | - time: 11406 6 | size: 95407318 7 | -------------------------------------------------------------------------------- /results/pnpm/0.65.4/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 9747 2 | size: 96468650 3 | - time: 9509 4 | size: 96468650 5 | - time: 9906 6 | size: 96468650 7 | -------------------------------------------------------------------------------- /results/pnpm/0.68.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 9826 2 | size: 99808366 3 | - time: 9838 4 | size: 99808366 5 | - time: 9525 6 | size: 99808366 7 | -------------------------------------------------------------------------------- /results/pnpm/0.74.3/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 11128 2 | size: 219286197 3 | - time: 10973 4 | size: 219286197 5 | - time: 10969 6 | size: 219286197 7 | -------------------------------------------------------------------------------- /results/pnpm/1.3.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 9947 2 | size: 97581029 3 | - time: 10108 4 | size: 97581029 5 | - time: 9646 6 | size: 97581029 7 | -------------------------------------------------------------------------------- /results/pnpm/1.7.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 10012 2 | size: 97580293 3 | - time: 9877 4 | size: 97580293 5 | - time: 9975 6 | size: 97580293 7 | -------------------------------------------------------------------------------- /results/yarn/0.20.3/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 77733 2 | size: 299280402 3 | - time: 75756 4 | size: 299276306 5 | - time: 64276 6 | size: 293960122 7 | -------------------------------------------------------------------------------- /results/yarn/0.21.3/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 43747 2 | size: 159368493 3 | - time: 45745 4 | size: 158576401 5 | - time: 37770 6 | size: 158094809 7 | -------------------------------------------------------------------------------- /results/yarn/0.22.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 38181 2 | size: 158071316 3 | - time: 42428 4 | size: 158237276 5 | - time: 36539 6 | size: 158205929 7 | -------------------------------------------------------------------------------- /results/yarn/0.23.4/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 36862 2 | size: 158787117 3 | - time: 35400 4 | size: 159166024 5 | - time: 34396 6 | size: 158786786 7 | -------------------------------------------------------------------------------- /results/yarn/0.24.4/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 30728 2 | size: 158684113 3 | - time: 29708 4 | size: 158757134 5 | - time: 33594 6 | size: 160133172 7 | -------------------------------------------------------------------------------- /results/yarn/0.24.5/react-app.yaml: -------------------------------------------------------------------------------- 1 | - time: 32131 2 | size: 163182040 3 | - time: 37371 4 | size: 163182040 5 | - time: 34722 6 | size: 163182040 7 | -------------------------------------------------------------------------------- /results/npm/4.2.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 56870 2 | size: 105361865 3 | - time: 51902 4 | size: 105365961 5 | - time: 53582 6 | size: 105361865 7 | -------------------------------------------------------------------------------- /results/npm/4.3.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 61394 2 | size: 105451158 3 | - time: 58681 4 | size: 105442966 5 | - time: 66811 6 | size: 105442966 7 | -------------------------------------------------------------------------------- /results/npm/4.4.1/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 60632 2 | size: 105830585 3 | - time: 57184 4 | size: 105830585 5 | - time: 54894 6 | size: 105822393 7 | -------------------------------------------------------------------------------- /results/npm/4.5.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 69736 2 | size: 114002959 3 | - time: 65131 4 | size: 114007055 5 | - time: 62080 6 | size: 113998863 7 | -------------------------------------------------------------------------------- /results/npm/4.6.1/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 75308 2 | size: 151221195 3 | - time: 76025 4 | size: 151229387 5 | - time: 72730 6 | size: 151233483 7 | -------------------------------------------------------------------------------- /results/npm/5.0.3/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 14914 2 | size: 133883643 3 | - time: 14824 4 | size: 133881126 5 | - time: 14001 6 | size: 133877368 7 | -------------------------------------------------------------------------------- /results/npm/5.0.3/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 35170 2 | size: 197896278 3 | - time: 34047 4 | size: 197876703 5 | - time: 34033 6 | size: 197887799 7 | -------------------------------------------------------------------------------- /results/npm/5.0.4/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 48299 2 | size: 205368268 3 | - time: 49631 4 | size: 205364172 5 | - time: 51806 6 | size: 205372364 7 | -------------------------------------------------------------------------------- /results/npm/5.1.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 27397 2 | size: 206686599 3 | - time: 27552 4 | size: 206686599 5 | - time: 31694 6 | size: 206686599 7 | -------------------------------------------------------------------------------- /results/npm/5.2.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 31742 2 | size: 206886373 3 | - time: 31162 4 | size: 206878181 5 | - time: 30982 6 | size: 206886373 7 | -------------------------------------------------------------------------------- /results/pnpm/0.57.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 14861 2 | size: 89903866 3 | - time: 15007 4 | size: 89912058 5 | - time: 15619 6 | size: 89903866 7 | -------------------------------------------------------------------------------- /results/pnpm/0.57.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 24301 2 | size: 107092773 3 | - time: 24113 4 | size: 107100965 5 | - time: 23963 6 | size: 107107069 7 | -------------------------------------------------------------------------------- /results/pnpm/0.57.2/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 12841 2 | size: 90108666 3 | - time: 12720 4 | size: 90108666 5 | - time: 12793 6 | size: 90108666 7 | -------------------------------------------------------------------------------- /results/pnpm/0.57.2/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 20232 2 | size: 107825653 3 | - time: 20238 4 | size: 107825653 5 | - time: 20311 6 | size: 107825653 7 | -------------------------------------------------------------------------------- /results/pnpm/0.58.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 14144 2 | size: 90133363 3 | - time: 14337 4 | size: 90133363 5 | - time: 14554 6 | size: 90133363 7 | -------------------------------------------------------------------------------- /results/pnpm/0.58.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 25647 2 | size: 107854351 3 | - time: 20346 4 | size: 107854351 5 | - time: 20917 6 | size: 107854351 7 | -------------------------------------------------------------------------------- /results/pnpm/0.59.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 11707 2 | size: 90133363 3 | - time: 11286 4 | size: 90133363 5 | - time: 10808 6 | size: 90133363 7 | -------------------------------------------------------------------------------- /results/pnpm/0.59.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 18638 2 | size: 107935394 3 | - time: 18600 4 | size: 107935394 5 | - time: 17644 6 | size: 107935394 7 | -------------------------------------------------------------------------------- /results/pnpm/0.60.2/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 12483 2 | size: 90146226 3 | - time: 12652 4 | size: 90146226 5 | - time: 13133 6 | size: 90146226 7 | -------------------------------------------------------------------------------- /results/pnpm/0.60.2/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 20563 2 | size: 107972074 3 | - time: 19894 4 | size: 107972074 5 | - time: 20807 6 | size: 107972074 7 | -------------------------------------------------------------------------------- /results/pnpm/0.62.1/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 11666 2 | size: 90402532 3 | - time: 11591 4 | size: 90402532 5 | - time: 11397 6 | size: 90402532 7 | -------------------------------------------------------------------------------- /results/pnpm/0.62.1/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 19537 2 | size: 108416361 3 | - time: 18048 4 | size: 108416361 5 | - time: 17844 6 | size: 108416361 7 | -------------------------------------------------------------------------------- /results/pnpm/0.64.4/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 15758 2 | size: 90592160 3 | - time: 10744 4 | size: 90592160 5 | - time: 11489 6 | size: 90592160 7 | -------------------------------------------------------------------------------- /results/pnpm/0.64.4/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 17974 2 | size: 107804704 3 | - time: 20441 4 | size: 107804704 5 | - time: 19202 6 | size: 107804704 7 | -------------------------------------------------------------------------------- /results/pnpm/0.65.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 10485 2 | size: 90613384 3 | - time: 9815 4 | size: 90613384 5 | - time: 10533 6 | size: 90613384 7 | -------------------------------------------------------------------------------- /results/pnpm/0.65.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 17635 2 | size: 108279808 3 | - time: 18174 4 | size: 108279808 5 | - time: 19363 6 | size: 108279808 7 | -------------------------------------------------------------------------------- /results/pnpm/0.65.4/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 18289 2 | size: 114025357 3 | - time: 18027 4 | size: 114025357 5 | - time: 19227 6 | size: 114025357 7 | -------------------------------------------------------------------------------- /results/pnpm/0.66.4/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 12106 2 | size: 99519692 3 | - time: 10229 4 | size: 99519692 5 | - time: 9784 6 | size: 99519692 7 | -------------------------------------------------------------------------------- /results/pnpm/0.66.4/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 20353 2 | size: 129042212 3 | - time: 19554 4 | size: 129042212 5 | - time: 19865 6 | size: 129042212 7 | -------------------------------------------------------------------------------- /results/pnpm/0.68.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 19794 2 | size: 129440973 3 | - time: 19086 4 | size: 129440973 5 | - time: 19682 6 | size: 129440973 7 | -------------------------------------------------------------------------------- /results/pnpm/0.69.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 10540 2 | size: 99868283 3 | - time: 10114 4 | size: 99868283 5 | - time: 10213 6 | size: 99868283 7 | -------------------------------------------------------------------------------- /results/pnpm/0.69.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 19619 2 | size: 122929359 3 | - time: 19307 4 | size: 122929359 5 | - time: 19534 6 | size: 122929359 7 | -------------------------------------------------------------------------------- /results/pnpm/0.70.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 10736 2 | size: 174562268 3 | - time: 9669 4 | size: 174562268 5 | - time: 9713 6 | size: 174562268 7 | -------------------------------------------------------------------------------- /results/pnpm/0.70.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 19098 2 | size: 210930246 3 | - time: 19150 4 | size: 210926150 5 | - time: 19393 6 | size: 210922054 7 | -------------------------------------------------------------------------------- /results/pnpm/0.74.3/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 11124 2 | size: 230877213 3 | - time: 10740 4 | size: 230877213 5 | - time: 10834 6 | size: 230877213 7 | -------------------------------------------------------------------------------- /results/pnpm/0.74.3/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 23122 2 | size: 294625693 3 | - time: 22533 4 | size: 294629789 5 | - time: 22358 6 | size: 294625693 7 | -------------------------------------------------------------------------------- /results/pnpm/0.75.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 10522 2 | size: 97594127 3 | - time: 11001 4 | size: 97594127 5 | - time: 10569 6 | size: 97594127 7 | -------------------------------------------------------------------------------- /results/pnpm/0.75.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 24127 2 | size: 128050636 3 | - time: 22523 4 | size: 128050636 5 | - time: 23994 6 | size: 128050636 7 | -------------------------------------------------------------------------------- /results/pnpm/1.2.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 10223 2 | size: 97598480 3 | - time: 10117 4 | size: 97598480 5 | - time: 10767 6 | size: 97598480 7 | -------------------------------------------------------------------------------- /results/pnpm/1.2.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 22969 2 | size: 128396543 3 | - time: 22755 4 | size: 128396543 5 | - time: 21740 6 | size: 128396543 7 | -------------------------------------------------------------------------------- /results/pnpm/1.3.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 21217 2 | size: 128938981 3 | - time: 21063 4 | size: 128938981 5 | - time: 21766 6 | size: 128938981 7 | -------------------------------------------------------------------------------- /results/pnpm/1.3.4/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 10429 2 | size: 97581035 3 | - time: 10439 4 | size: 97581035 5 | - time: 10546 6 | size: 97581035 7 | -------------------------------------------------------------------------------- /results/pnpm/1.3.4/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 22538 2 | size: 129101005 3 | - time: 23213 4 | size: 129101005 5 | - time: 22475 6 | size: 129101005 7 | -------------------------------------------------------------------------------- /results/pnpm/1.7.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 21583 2 | size: 129285841 3 | - time: 21134 4 | size: 129285841 5 | - time: 21645 6 | size: 129285841 7 | -------------------------------------------------------------------------------- /results/yarn/0.20.3/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 16416 2 | size: 85690902 3 | - time: 15542 4 | size: 85690902 5 | - time: 17851 6 | size: 85690902 7 | -------------------------------------------------------------------------------- /results/yarn/0.20.3/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 28118 2 | size: 119143917 3 | - time: 25740 4 | size: 119143917 5 | - time: 28126 6 | size: 119143917 7 | -------------------------------------------------------------------------------- /results/yarn/0.21.3/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 15825 2 | size: 85576906 3 | - time: 14262 4 | size: 85576906 5 | - time: 16080 6 | size: 85576906 7 | -------------------------------------------------------------------------------- /results/yarn/0.21.3/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 26768 2 | size: 109924588 3 | - time: 25883 4 | size: 109924588 5 | - time: 25710 6 | size: 109924588 7 | -------------------------------------------------------------------------------- /results/yarn/0.22.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 16275 2 | size: 85757320 3 | - time: 17220 4 | size: 87015728 5 | - time: 17542 6 | size: 87015728 7 | -------------------------------------------------------------------------------- /results/yarn/0.22.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 27316 2 | size: 109924588 3 | - time: 24410 4 | size: 109924588 5 | - time: 28068 6 | size: 109924588 7 | -------------------------------------------------------------------------------- /results/yarn/0.23.4/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 15501 2 | size: 88963085 3 | - time: 14394 4 | size: 88963085 5 | - time: 13585 6 | size: 88963085 7 | -------------------------------------------------------------------------------- /results/yarn/0.23.4/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 23413 2 | size: 110060632 3 | - time: 21757 4 | size: 110060632 5 | - time: 22677 6 | size: 110060632 7 | -------------------------------------------------------------------------------- /results/yarn/0.24.4/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 14470 2 | size: 89268702 3 | - time: 13694 4 | size: 89137397 5 | - time: 13966 6 | size: 89137397 7 | -------------------------------------------------------------------------------- /results/yarn/0.24.4/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 24827 2 | size: 110060674 3 | - time: 23035 4 | size: 110025691 5 | - time: 24017 6 | size: 110060674 7 | -------------------------------------------------------------------------------- /results/yarn/0.24.5/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 14717 2 | size: 85711866 3 | - time: 14531 4 | size: 85711866 5 | - time: 14221 6 | size: 85843171 7 | -------------------------------------------------------------------------------- /results/yarn/0.24.5/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - time: 21744 2 | size: 110060674 3 | - time: 21234 4 | size: 110060674 5 | - time: 22651 6 | size: 110060674 7 | -------------------------------------------------------------------------------- /fixtures/angular-quickstart/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnpm/benchmarks-of-javascript-package-managers/HEAD/fixtures/angular-quickstart/src/favicon.ico -------------------------------------------------------------------------------- /fixtures/angular-quickstart/src/typings.d.ts: -------------------------------------------------------------------------------- 1 | /* SystemJS module definition */ 2 | declare var module: NodeModule; 3 | interface NodeModule { 4 | id: string; 5 | } 6 | -------------------------------------------------------------------------------- /results/pnpm/1.15.0/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 39628 2 | repeatInstall: 2019 3 | withWarmCacheAndLockfile: 12293 4 | withWarmCache: 21338 5 | withLockfile: 37408 6 | size: 169958748 7 | -------------------------------------------------------------------------------- /results/yarn/1.1.0/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 70117 2 | repeatInstall: 1379 3 | withWarmCacheAndLockfile: 16071 4 | withWarmCache: 27040 5 | withLockfile: 27175 6 | size: 201777342 7 | -------------------------------------------------------------------------------- /fixtures/ember-quickstart/app/templates/application.hbs: -------------------------------------------------------------------------------- 1 | {{!-- The following component displays Ember's default welcome message. --}} 2 | {{welcome-page}} 3 | {{!-- Feel free to remove this! --}} 4 | 5 | {{outlet}} -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | insert_final_newline = true 5 | charset = utf-8 6 | trim_trailing_whitespace = true 7 | end_of_line = lf 8 | 9 | [*.{ts,js,json}] 10 | indent_style = space 11 | indent_size = 2 -------------------------------------------------------------------------------- /fixtures/angular-quickstart/e2e/app.po.ts: -------------------------------------------------------------------------------- 1 | import { browser, by, element } from 'protractor'; 2 | 3 | export class AppPage { 4 | navigateTo() { 5 | return browser.get('/'); 6 | } 7 | 8 | getParagraphText() { 9 | return element(by.css('app-root h1')).getText(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /fixtures/ember-quickstart/tests/test-helper.js: -------------------------------------------------------------------------------- 1 | import Application from '../app'; 2 | import config from '../config/environment'; 3 | import { setApplication } from '@ember/test-helpers'; 4 | import { start } from 'ember-qunit'; 5 | 6 | setApplication(Application.create(config.APP)); 7 | 8 | start(); 9 | -------------------------------------------------------------------------------- /results/pnpm/1.23.2/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 10508 2 | repeatInstall: 798 3 | withWarmCacheAndLockfile: 3431 4 | withWarmCache: 8805 5 | withLockfile: 11140 6 | withWarmCacheAndModules: 2445 7 | withWarmModulesAndLockfile: 860 8 | withWarmModules: 10656 9 | size: 96976471 10 | -------------------------------------------------------------------------------- /fixtures/angular-quickstart/src/app/app.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-root', 5 | templateUrl: './app.component.html', 6 | styleUrls: ['./app.component.css'] 7 | }) 8 | export class AppComponent { 9 | title = 'app'; 10 | } 11 | -------------------------------------------------------------------------------- /results/npm/5.5.1/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 29116 2 | repeatInstall: 5509 3 | withWarmCacheAndLockfile: 13458 4 | withWarmCache: 21766 5 | withLockfile: 17793 6 | withWarmCacheAndModules: 5342 7 | withWarmModulesAndLockfile: 5740 8 | withWarmModules: 5196 9 | size: 232294584 10 | -------------------------------------------------------------------------------- /results/npm/5.5.1/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 24054 2 | repeatInstall: 6225 3 | withWarmCacheAndLockfile: 7488 4 | withWarmCache: 19534 5 | withLockfile: 9591 6 | withWarmCacheAndModules: 30962 7 | withWarmModulesAndLockfile: 6899 8 | withWarmModules: 6386 9 | size: 209181078 10 | -------------------------------------------------------------------------------- /results/npm/6.3.0/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 31887 2 | repeatInstall: 8373 3 | withWarmCacheAndLockfile: 15051 4 | withWarmCache: 18557 5 | withLockfile: 18374 6 | withWarmCacheAndModules: 7819 7 | withWarmModulesAndLockfile: 8665 8 | withWarmModules: 7972 9 | size: 239270578 10 | -------------------------------------------------------------------------------- /results/yarn/1.9.4/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 34558 2 | repeatInstall: 946 3 | withWarmCacheAndLockfile: 7537 4 | withWarmCache: 30466 5 | withLockfile: 17478 6 | withWarmCacheAndModules: 23329 7 | withWarmModulesAndLockfile: 858 8 | withWarmModules: 33690 9 | size: 225699951 10 | -------------------------------------------------------------------------------- /fixtures/react-app/src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import './index.css'; 4 | import App from './App'; 5 | import registerServiceWorker from './registerServiceWorker'; 6 | 7 | ReactDOM.render(, document.getElementById('root')); 8 | registerServiceWorker(); 9 | -------------------------------------------------------------------------------- /results/npm/5.5.1/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 15801 2 | repeatInstall: 4076 3 | withWarmCacheAndLockfile: 5073 4 | withWarmCache: 9253 5 | withLockfile: 13072 6 | withWarmCacheAndModules: 4096 7 | withWarmModulesAndLockfile: 4265 8 | withWarmModules: 4131 9 | size: 94657228 10 | -------------------------------------------------------------------------------- /results/npm/5.5.1/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 30708 2 | repeatInstall: 7303 3 | withWarmCacheAndLockfile: 12070 4 | withWarmCache: 22084 5 | withLockfile: 16392 6 | withWarmCacheAndModules: 18364 7 | withWarmModulesAndLockfile: 7764 8 | withWarmModules: 7351 9 | size: 148284649 10 | -------------------------------------------------------------------------------- /results/npm/5.5.1/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 24003 2 | repeatInstall: 6775 3 | withWarmCacheAndLockfile: 9081 4 | withWarmCache: 16890 5 | withLockfile: 15496 6 | withWarmCacheAndModules: 6502 7 | withWarmModulesAndLockfile: 6940 8 | withWarmModules: 6597 9 | size: 182311106 10 | -------------------------------------------------------------------------------- /results/npm/6.3.0/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 22024 2 | repeatInstall: 6815 3 | withWarmCacheAndLockfile: 12715 4 | withWarmCache: 15046 5 | withLockfile: 15108 6 | withWarmCacheAndModules: 7067 7 | withWarmModulesAndLockfile: 7085 8 | withWarmModules: 7228 9 | size: 189770493 10 | -------------------------------------------------------------------------------- /results/pnpm/1.23.2/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 21152 2 | repeatInstall: 1313 3 | withWarmCacheAndLockfile: 10045 4 | withWarmCache: 10166 5 | withLockfile: 21830 6 | withWarmCacheAndModules: 7466 7 | withWarmModulesAndLockfile: 1508 8 | withWarmModules: 17948 9 | size: 194452549 10 | -------------------------------------------------------------------------------- /results/pnpm/1.23.2/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 10119 2 | repeatInstall: 934 3 | withWarmCacheAndLockfile: 3969 4 | withWarmCache: 4555 5 | withLockfile: 10592 6 | withWarmCacheAndModules: 7158 7 | withWarmModulesAndLockfile: 945 8 | withWarmModules: 8827 9 | size: 107070267 10 | -------------------------------------------------------------------------------- /results/pnpm/1.23.2/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 18385 2 | repeatInstall: 1144 3 | withWarmCacheAndLockfile: 7556 4 | withWarmCache: 9532 5 | withLockfile: 17954 6 | withWarmCacheAndModules: 6017 7 | withWarmModulesAndLockfile: 1287 8 | withWarmModules: 14880 9 | size: 191912698 10 | -------------------------------------------------------------------------------- /results/pnpm/2.13.0/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 19904 2 | repeatInstall: 1243 3 | withWarmCacheAndLockfile: 3561 4 | withWarmCache: 8473 5 | withLockfile: 15954 6 | withWarmCacheAndModules: 6232 7 | withWarmModulesAndLockfile: 1119 8 | withWarmModules: 17001 9 | size: 198661825 10 | -------------------------------------------------------------------------------- /results/pnpm/2.13.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 20360 2 | repeatInstall: 924 3 | withWarmCacheAndLockfile: 3375 4 | withWarmCache: 7358 5 | withLockfile: 19298 6 | withWarmCacheAndModules: 5699 7 | withWarmModulesAndLockfile: 990 8 | withWarmModules: 18750 9 | size: 255374050 10 | -------------------------------------------------------------------------------- /results/pnpm/2.13.0/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 16807 2 | repeatInstall: 956 3 | withWarmCacheAndLockfile: 3115 4 | withWarmCache: 6292 5 | withLockfile: 14340 6 | withWarmCacheAndModules: 4876 7 | withWarmModulesAndLockfile: 1002 8 | withWarmModules: 14702 9 | size: 194145452 10 | -------------------------------------------------------------------------------- /results/yarn/1.9.4/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 26249 2 | repeatInstall: 905 3 | withWarmCacheAndLockfile: 4773 4 | withWarmCache: 18603 5 | withLockfile: 13758 6 | withWarmCacheAndModules: 16571 7 | withWarmModulesAndLockfile: 1049 8 | withWarmModules: 26894 9 | size: 194584318 10 | -------------------------------------------------------------------------------- /results/npm/6.3.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 24704 2 | repeatInstall: 7767 3 | withWarmCacheAndLockfile: 15090 4 | withWarmCache: 17379 5 | withLockfile: 17962 6 | withWarmCacheAndModules: 7325 7 | withWarmModulesAndLockfile: 7775 8 | withWarmModules: 7898 9 | size: 299950048 10 | -------------------------------------------------------------------------------- /results/pnpm/1.23.2/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 20566 2 | repeatInstall: 1165 3 | withWarmCacheAndLockfile: 7874 4 | withWarmCache: 10474 5 | withLockfile: 20684 6 | withWarmCacheAndModules: 6777 7 | withWarmModulesAndLockfile: 1243 8 | withWarmModules: 16251 9 | size: 132684673 10 | -------------------------------------------------------------------------------- /results/yarn/1.9.4/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 27237 2 | repeatInstall: 982 3 | withWarmCacheAndLockfile: 5762 4 | withWarmCache: 20848 5 | withLockfile: 17233 6 | withWarmCacheAndModules: 12854 7 | withWarmModulesAndLockfile: 1041 8 | withWarmModules: 27103 9 | size: 289919480 10 | -------------------------------------------------------------------------------- /fixtures/angular-quickstart/src/tsconfig.app.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/app", 5 | "baseUrl": "./", 6 | "module": "es2015", 7 | "types": [] 8 | }, 9 | "exclude": [ 10 | "test.ts", 11 | "**/*.spec.ts" 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /fixtures/react-app/src/App.test.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import App from './App'; 4 | 5 | it('renders without crashing', () => { 6 | const div = document.createElement('div'); 7 | ReactDOM.render(, div); 8 | ReactDOM.unmountComponentAtNode(div); 9 | }); 10 | -------------------------------------------------------------------------------- /results/yarn_pnp/1.19.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 16616 2 | repeatInstall: 0 3 | withWarmCacheAndLockfile: 1668 4 | withWarmCache: 8884 5 | withLockfile: 11425 6 | withWarmCacheAndModules: 0 7 | withWarmModulesAndLockfile: 0 8 | withWarmModules: 0 9 | updatedDependencies: 19983 10 | size: 134273694 11 | -------------------------------------------------------------------------------- /results/yarn_pnp/1.19.0/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 30857 2 | repeatInstall: 0 3 | withWarmCacheAndLockfile: 1709 4 | withWarmCache: 21362 5 | withLockfile: 12186 6 | withWarmCacheAndModules: 0 7 | withWarmModulesAndLockfile: 0 8 | withWarmModules: 0 9 | updatedDependencies: 26109 10 | size: 236523177 11 | -------------------------------------------------------------------------------- /results/yarn_pnp/1.19.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 16121 2 | repeatInstall: 0 3 | withWarmCacheAndLockfile: 1574 4 | withWarmCache: 8317 5 | withLockfile: 11552 6 | withWarmCacheAndModules: 0 7 | withWarmModulesAndLockfile: 0 8 | withWarmModules: 0 9 | updatedDependencies: 14388 10 | size: 148680392 11 | -------------------------------------------------------------------------------- /results/yarn_pnp/1.19.0/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 20841 2 | repeatInstall: 0 3 | withWarmCacheAndLockfile: 1601 4 | withWarmCache: 13831 5 | withLockfile: 12086 6 | withWarmCacheAndModules: 0 7 | withWarmModulesAndLockfile: 0 8 | withWarmModules: 0 9 | updatedDependencies: 18579 10 | size: 245126702 11 | -------------------------------------------------------------------------------- /fixtures/ember-quickstart/app/router.js: -------------------------------------------------------------------------------- 1 | import EmberRouter from '@ember/routing/router'; 2 | import config from './config/environment'; 3 | 4 | const Router = EmberRouter.extend({ 5 | location: config.locationType, 6 | rootURL: config.rootURL 7 | }); 8 | 9 | Router.map(function() { 10 | }); 11 | 12 | export default Router; 13 | -------------------------------------------------------------------------------- /results/npm/6.11.3/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 25160 2 | repeatInstall: 7122 3 | withWarmCacheAndLockfile: 15491 4 | withWarmCache: 21084 5 | withLockfile: 19313 6 | withWarmCacheAndModules: 7414 7 | withWarmModulesAndLockfile: 7182 8 | withWarmModules: 6839 9 | updatedDependencies: 6714 10 | size: 140795615 11 | -------------------------------------------------------------------------------- /results/pnpm/4.0.0-7/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 17779 2 | repeatInstall: 1296 3 | withWarmCacheAndLockfile: 6127 4 | withWarmCache: 9721 5 | withLockfile: 16697 6 | withWarmCacheAndModules: 7247 7 | withWarmModulesAndLockfile: 1461 8 | withWarmModules: 14775 9 | updatedDependencies: 20437 10 | size: 108983219 11 | -------------------------------------------------------------------------------- /results/yarn/1.19.0/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 35462 2 | repeatInstall: 717 3 | withWarmCacheAndLockfile: 9395 4 | withWarmCache: 20895 5 | withLockfile: 19930 6 | withWarmCacheAndModules: 23174 7 | withWarmModulesAndLockfile: 675 8 | withWarmModules: 35242 9 | updatedDependencies: 35138 10 | size: 225394577 11 | -------------------------------------------------------------------------------- /results/yarn/1.19.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 21305 2 | repeatInstall: 900 3 | withWarmCacheAndLockfile: 5534 4 | withWarmCache: 11361 5 | withLockfile: 15676 6 | withWarmCacheAndModules: 8102 7 | withWarmModulesAndLockfile: 779 8 | withWarmModules: 26029 9 | updatedDependencies: 21183 10 | size: 112107376 11 | -------------------------------------------------------------------------------- /results/yarn_pnp/1.19.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 21826 2 | repeatInstall: 0 3 | withWarmCacheAndLockfile: 1725 4 | withWarmCache: 9594 5 | withLockfile: 14271 6 | withWarmCacheAndModules: 0 7 | withWarmModulesAndLockfile: 0 8 | withWarmModules: 0 9 | updatedDependencies: 13048 10 | size: 313889483 11 | -------------------------------------------------------------------------------- /fixtures/angular-quickstart/.editorconfig: -------------------------------------------------------------------------------- 1 | # Editor configuration, see http://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | charset = utf-8 6 | indent_style = space 7 | indent_size = 2 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | max_line_length = off 13 | trim_trailing_whitespace = false 14 | -------------------------------------------------------------------------------- /results/npm/6.11.3/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 43800 2 | repeatInstall: 6311 3 | withWarmCacheAndLockfile: 15676 4 | withWarmCache: 23745 5 | withLockfile: 19514 6 | withWarmCacheAndModules: 6420 7 | withWarmModulesAndLockfile: 11377 8 | withWarmModules: 5625 9 | updatedDependencies: 11770 10 | size: 239343327 11 | -------------------------------------------------------------------------------- /results/npm/6.11.3/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 30010 2 | repeatInstall: 6866 3 | withWarmCacheAndLockfile: 15299 4 | withWarmCache: 22713 5 | withLockfile: 19488 6 | withWarmCacheAndModules: 6520 7 | withWarmModulesAndLockfile: 7085 8 | withWarmModules: 6470 9 | updatedDependencies: 6919 10 | size: 300285150 11 | -------------------------------------------------------------------------------- /results/npm/6.11.3/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 32787 2 | repeatInstall: 5457 3 | withWarmCacheAndLockfile: 10843 4 | withWarmCache: 16351 5 | withLockfile: 12842 6 | withWarmCacheAndModules: 10433 7 | withWarmModulesAndLockfile: 5562 8 | withWarmModules: 5480 9 | updatedDependencies: 5325 10 | size: 115944754 11 | -------------------------------------------------------------------------------- /results/npm/6.11.3/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 27944 2 | repeatInstall: 5653 3 | withWarmCacheAndLockfile: 12094 4 | withWarmCache: 18427 5 | withLockfile: 15323 6 | withWarmCacheAndModules: 5612 7 | withWarmModulesAndLockfile: 5840 8 | withWarmModules: 5650 9 | updatedDependencies: 6339 10 | size: 194672202 11 | -------------------------------------------------------------------------------- /results/pnpm/4.0.0-7/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 19717 2 | repeatInstall: 1355 3 | withWarmCacheAndLockfile: 7165 4 | withWarmCache: 12275 5 | withLockfile: 17019 6 | withWarmCacheAndModules: 7781 7 | withWarmModulesAndLockfile: 1413 8 | withWarmModules: 16021 9 | updatedDependencies: 21589 10 | size: 200194681 11 | -------------------------------------------------------------------------------- /results/pnpm/4.0.0-7/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 14796 2 | repeatInstall: 1250 3 | withWarmCacheAndLockfile: 5411 4 | withWarmCache: 8745 5 | withLockfile: 13727 6 | withWarmCacheAndModules: 5854 7 | withWarmModulesAndLockfile: 1204 8 | withWarmModules: 12092 9 | updatedDependencies: 13919 10 | size: 121402957 11 | -------------------------------------------------------------------------------- /results/pnpm/4.0.0-7/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 18792 2 | repeatInstall: 1250 3 | withWarmCacheAndLockfile: 6327 4 | withWarmCache: 12807 5 | withLockfile: 16139 6 | withWarmCacheAndModules: 6811 7 | withWarmModulesAndLockfile: 1276 8 | withWarmModules: 14390 9 | updatedDependencies: 15366 10 | size: 197653734 11 | -------------------------------------------------------------------------------- /results/yarn/1.19.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 20728 2 | repeatInstall: 737 3 | withWarmCacheAndLockfile: 4122 4 | withWarmCache: 11324 5 | withLockfile: 12644 6 | withWarmCacheAndModules: 10326 7 | withWarmModulesAndLockfile: 645 8 | withWarmModules: 19500 9 | updatedDependencies: 26870 10 | size: 115643087 11 | -------------------------------------------------------------------------------- /results/yarn/1.19.0/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 25507 2 | repeatInstall: 654 3 | withWarmCacheAndLockfile: 5069 4 | withWarmCache: 15792 5 | withLockfile: 14854 6 | withWarmCacheAndModules: 14107 7 | withWarmModulesAndLockfile: 659 8 | withWarmModules: 25221 9 | updatedDependencies: 19191 10 | size: 200177987 11 | -------------------------------------------------------------------------------- /fixtures/angular-quickstart/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/e2e", 5 | "baseUrl": "./", 6 | "module": "commonjs", 7 | "target": "es5", 8 | "types": [ 9 | "jasmine", 10 | "jasminewd2", 11 | "node" 12 | ] 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /results/pnpm/4.0.0-7/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 21848 2 | repeatInstall: 1322 3 | withWarmCacheAndLockfile: 8166 4 | withWarmCache: 12118 5 | withLockfile: 19894 6 | withWarmCacheAndModules: 7833 7 | withWarmModulesAndLockfile: 1368 8 | withWarmModules: 17592 9 | updatedDependencies: 15799 10 | size: 257667281 11 | -------------------------------------------------------------------------------- /results/yarn/1.19.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 27305 2 | repeatInstall: 804 3 | withWarmCacheAndLockfile: 6994 4 | withWarmCache: 17267 5 | withLockfile: 19784 6 | withWarmCacheAndModules: 14277 7 | withWarmModulesAndLockfile: 889 8 | withWarmModules: 30137 9 | updatedDependencies: 19190 10 | size: 289181652 11 | -------------------------------------------------------------------------------- /fixtures/ember-quickstart/.ember-cli: -------------------------------------------------------------------------------- 1 | { 2 | /** 3 | Ember CLI sends analytics information by default. The data is completely 4 | anonymous, but there are times when you might want to disable this behavior. 5 | 6 | Setting `disableAnalytics` to true will prevent any data from being sent. 7 | */ 8 | "disableAnalytics": false 9 | } 10 | -------------------------------------------------------------------------------- /results/npm/5.4.2/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 24951 2 | repeatInstall: 5089 3 | withWarmCacheAndLockfile: 7627 4 | withWarmCache: 16692 5 | withLockfile: 9709 6 | size: 93468908 7 | - firstInstall: 23749 8 | repeatInstall: 5251 9 | withWarmCacheAndLockfile: 7825 10 | withWarmCache: 16175 11 | withLockfile: 10090 12 | size: 93468908 13 | -------------------------------------------------------------------------------- /results/pnpm/1.16.3/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 12413 2 | repeatInstall: 854 3 | withWarmCacheAndLockfile: 3730 4 | withWarmCache: 8499 5 | withLockfile: 12092 6 | size: 91104154 7 | - firstInstall: 10495 8 | repeatInstall: 828 9 | withWarmCacheAndLockfile: 3826 10 | withWarmCache: 3666 11 | withLockfile: 10463 12 | size: 91104154 13 | -------------------------------------------------------------------------------- /results/yarn/1.2.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 23721 2 | repeatInstall: 1119 3 | withWarmCacheAndLockfile: 7660 4 | withWarmCache: 11681 5 | withLockfile: 17891 6 | size: 171156596 7 | - firstInstall: 25924 8 | repeatInstall: 994 9 | withWarmCacheAndLockfile: 7286 10 | withWarmCache: 12054 11 | withLockfile: 19438 12 | size: 171156596 13 | -------------------------------------------------------------------------------- /results/npm/5.4.2/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 38176 2 | repeatInstall: 7212 3 | withWarmCacheAndLockfile: 21287 4 | withWarmCache: 27822 5 | withLockfile: 25827 6 | size: 326522329 7 | - firstInstall: 40330 8 | repeatInstall: 6992 9 | withWarmCacheAndLockfile: 20971 10 | withWarmCache: 29691 11 | withLockfile: 29875 12 | size: 326514137 13 | -------------------------------------------------------------------------------- /results/npm/5.4.2/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 17409 2 | repeatInstall: 3306 3 | withWarmCacheAndLockfile: 6371 4 | withWarmCache: 8024 5 | withLockfile: 8711 6 | size: 91110251 7 | - firstInstall: 13589 8 | repeatInstall: 3311 9 | withWarmCacheAndLockfile: 6237 10 | withWarmCache: 7932 11 | withLockfile: 13266 12 | size: 91102059 13 | -------------------------------------------------------------------------------- /results/pnpm/1.16.3/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 23757 2 | repeatInstall: 1455 3 | withWarmCacheAndLockfile: 8711 4 | withWarmCache: 11614 5 | withLockfile: 25947 6 | size: 196198733 7 | - firstInstall: 22284 8 | repeatInstall: 1428 9 | withWarmCacheAndLockfile: 8644 10 | withWarmCache: 11560 11 | withLockfile: 19958 12 | size: 196198733 13 | -------------------------------------------------------------------------------- /results/pnpm/1.16.3/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 10243 2 | repeatInstall: 1054 3 | withWarmCacheAndLockfile: 3944 4 | withWarmCache: 8101 5 | withLockfile: 10140 6 | size: 93317752 7 | - firstInstall: 9719 8 | repeatInstall: 938 9 | withWarmCacheAndLockfile: 3565 10 | withWarmCache: 4937 11 | withLockfile: 9076 12 | size: 93317752 13 | -------------------------------------------------------------------------------- /results/yarn/1.2.0/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 31813 2 | repeatInstall: 988 3 | withWarmCacheAndLockfile: 8010 4 | withWarmCache: 19439 5 | withLockfile: 16484 6 | size: 218995759 7 | - firstInstall: 29796 8 | repeatInstall: 941 9 | withWarmCacheAndLockfile: 8064 10 | withWarmCache: 21186 11 | withLockfile: 16527 12 | size: 218995759 13 | -------------------------------------------------------------------------------- /results/yarn/1.2.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 16389 2 | repeatInstall: 656 3 | withWarmCacheAndLockfile: 2418 4 | withWarmCache: 10935 5 | withLockfile: 8530 6 | size: 89600794 7 | - firstInstall: 15711 8 | repeatInstall: 594 9 | withWarmCacheAndLockfile: 2435 10 | withWarmCache: 10173 11 | withLockfile: 8347 12 | size: 89600794 13 | -------------------------------------------------------------------------------- /results/yarn/1.2.0/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 22256 2 | repeatInstall: 879 3 | withWarmCacheAndLockfile: 4114 4 | withWarmCache: 14906 5 | withLockfile: 12816 6 | size: 183722540 7 | - firstInstall: 21780 8 | repeatInstall: 912 9 | withWarmCacheAndLockfile: 4191 10 | withWarmCache: 13348 11 | withLockfile: 11701 12 | size: 183722540 13 | -------------------------------------------------------------------------------- /results/npm/5.4.2/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 31014 2 | repeatInstall: 7205 3 | withWarmCacheAndLockfile: 14633 4 | withWarmCache: 19702 5 | withLockfile: 21132 6 | size: 243546046 7 | - firstInstall: 28627 8 | repeatInstall: 7058 9 | withWarmCacheAndLockfile: 14558 10 | withWarmCache: 19216 11 | withLockfile: 20483 12 | size: 243546046 13 | -------------------------------------------------------------------------------- /results/pnpm/1.16.3/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 21659 2 | repeatInstall: 1184 3 | withWarmCacheAndLockfile: 8144 4 | withWarmCache: 10689 5 | withLockfile: 19512 6 | size: 124517010 7 | - firstInstall: 21125 8 | repeatInstall: 1240 9 | withWarmCacheAndLockfile: 8324 10 | withWarmCache: 10120 11 | withLockfile: 18306 12 | size: 124517010 13 | -------------------------------------------------------------------------------- /results/pnpm/1.16.3/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 19873 2 | repeatInstall: 1321 3 | withWarmCacheAndLockfile: 7318 4 | withWarmCache: 10345 5 | withLockfile: 17280 6 | size: 182570746 7 | - firstInstall: 18450 8 | repeatInstall: 1168 9 | withWarmCacheAndLockfile: 7433 10 | withWarmCache: 9110 11 | withLockfile: 20212 12 | size: 182570746 13 | -------------------------------------------------------------------------------- /results/yarn/1.2.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 23623 2 | repeatInstall: 1485 3 | withWarmCacheAndLockfile: 6507 4 | withWarmCache: 12319 5 | withLockfile: 16132 6 | size: 131329180 7 | - firstInstall: 20883 8 | repeatInstall: 988 9 | withWarmCacheAndLockfile: 6113 10 | withWarmCache: 12520 11 | withLockfile: 14917 12 | size: 131329180 13 | -------------------------------------------------------------------------------- /results/npm/5.4.2/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 42640 2 | repeatInstall: 10165 3 | withWarmCacheAndLockfile: 22191 4 | withWarmCache: 29021 5 | withLockfile: 24801 6 | size: 224107630 7 | - firstInstall: 35910 8 | repeatInstall: 10398 9 | withWarmCacheAndLockfile: 21532 10 | withWarmCache: 27455 11 | withLockfile: 24166 12 | size: 224107630 13 | -------------------------------------------------------------------------------- /fixtures/angular-quickstart/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- 1 | import { AppPage } from './app.po'; 2 | 3 | describe('angular-quickstart App', () => { 4 | let page: AppPage; 5 | 6 | beforeEach(() => { 7 | page = new AppPage(); 8 | }); 9 | 10 | it('should display welcome message', () => { 11 | page.navigateTo(); 12 | expect(page.getParagraphText()).toEqual('Welcome to app!'); 13 | }); 14 | }); 15 | -------------------------------------------------------------------------------- /fixtures/angular-quickstart/src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AngularQuickstart 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /fixtures/ember-quickstart/config/targets.js: -------------------------------------------------------------------------------- 1 | const browsers = [ 2 | 'last 1 Chrome versions', 3 | 'last 1 Firefox versions', 4 | 'last 1 Safari versions' 5 | ]; 6 | 7 | const isCI = !!process.env.CI; 8 | const isProduction = process.env.EMBER_ENV === 'production'; 9 | 10 | if (isCI || isProduction) { 11 | browsers.push('ie 11'); 12 | } 13 | 14 | module.exports = { 15 | browsers 16 | }; 17 | -------------------------------------------------------------------------------- /fixtures/react-app/.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/ignore-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | 6 | # testing 7 | /coverage 8 | 9 | # production 10 | /build 11 | 12 | # misc 13 | .DS_Store 14 | .env.local 15 | .env.development.local 16 | .env.test.local 17 | .env.production.local 18 | 19 | npm-debug.log* 20 | yarn-debug.log* 21 | yarn-error.log* 22 | -------------------------------------------------------------------------------- /fixtures/angular-quickstart/src/tsconfig.spec.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/spec", 5 | "baseUrl": "./", 6 | "module": "commonjs", 7 | "types": [ 8 | "jasmine", 9 | "node" 10 | ] 11 | }, 12 | "files": [ 13 | "test.ts" 14 | ], 15 | "include": [ 16 | "**/*.spec.ts", 17 | "**/*.d.ts" 18 | ] 19 | } 20 | -------------------------------------------------------------------------------- /fixtures/react-app/public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "React App", 3 | "name": "Create React App Sample", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | } 10 | ], 11 | "start_url": "./index.html", 12 | "display": "standalone", 13 | "theme_color": "#000000", 14 | "background_color": "#ffffff" 15 | } 16 | -------------------------------------------------------------------------------- /fixtures/react-app/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-app", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "react": "^16.2.0", 7 | "react-dom": "^16.2.0", 8 | "react-scripts": "1.1.1" 9 | }, 10 | "scripts": { 11 | "start": "react-scripts start", 12 | "build": "react-scripts build", 13 | "test": "react-scripts test --env=jsdom", 14 | "eject": "react-scripts eject" 15 | } 16 | } -------------------------------------------------------------------------------- /fixtures/angular-quickstart/src/app/app.module.ts: -------------------------------------------------------------------------------- 1 | import { BrowserModule } from '@angular/platform-browser'; 2 | import { NgModule } from '@angular/core'; 3 | 4 | 5 | import { AppComponent } from './app.component'; 6 | 7 | 8 | @NgModule({ 9 | declarations: [ 10 | AppComponent 11 | ], 12 | imports: [ 13 | BrowserModule 14 | ], 15 | providers: [], 16 | bootstrap: [AppComponent] 17 | }) 18 | export class AppModule { } 19 | -------------------------------------------------------------------------------- /fixtures/ember-quickstart/.travis.yml: -------------------------------------------------------------------------------- 1 | --- 2 | language: node_js 3 | node_js: 4 | - "6" 5 | 6 | sudo: false 7 | dist: trusty 8 | 9 | addons: 10 | chrome: stable 11 | 12 | cache: 13 | directories: 14 | - $HOME/.npm 15 | 16 | env: 17 | global: 18 | # See https://git.io/vdao3 for details. 19 | - JOBS=1 20 | 21 | before_install: 22 | - npm config set spin false 23 | 24 | script: 25 | - npm run lint:js 26 | - npm test 27 | -------------------------------------------------------------------------------- /fixtures/angular-quickstart/src/main.ts: -------------------------------------------------------------------------------- 1 | import { enableProdMode } from '@angular/core'; 2 | import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; 3 | 4 | import { AppModule } from './app/app.module'; 5 | import { environment } from './environments/environment'; 6 | 7 | if (environment.production) { 8 | enableProdMode(); 9 | } 10 | 11 | platformBrowserDynamic().bootstrapModule(AppModule) 12 | .catch(err => console.log(err)); 13 | -------------------------------------------------------------------------------- /fixtures/angular-quickstart/src/environments/environment.ts: -------------------------------------------------------------------------------- 1 | // The file contents for the current environment will overwrite these during build. 2 | // The build system defaults to the dev environment which uses `environment.ts`, but if you do 3 | // `ng build --env=prod` then `environment.prod.ts` will be used instead. 4 | // The list of which env maps to which file can be found in `.angular-cli.json`. 5 | 6 | export const environment = { 7 | production: false 8 | }; 9 | -------------------------------------------------------------------------------- /fixtures/ember-quickstart/app/app.js: -------------------------------------------------------------------------------- 1 | import Application from '@ember/application'; 2 | import Resolver from './resolver'; 3 | import loadInitializers from 'ember-load-initializers'; 4 | import config from './config/environment'; 5 | 6 | const App = Application.extend({ 7 | modulePrefix: config.modulePrefix, 8 | podModulePrefix: config.podModulePrefix, 9 | Resolver 10 | }); 11 | 12 | loadInitializers(App, config.modulePrefix); 13 | 14 | export default App; 15 | -------------------------------------------------------------------------------- /fixtures/ember-quickstart/.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/ignore-files/ for more about ignoring files. 2 | 3 | # compiled output 4 | /dist 5 | /tmp 6 | 7 | # dependencies 8 | /node_modules 9 | /bower_components 10 | 11 | # misc 12 | /.sass-cache 13 | /connect.lock 14 | /coverage/* 15 | /libpeerconnection.log 16 | npm-debug.log* 17 | yarn-error.log 18 | testem.log 19 | 20 | # ember-try 21 | .node_modules.ember-try/ 22 | bower.json.ember-try 23 | package.json.ember-try 24 | -------------------------------------------------------------------------------- /fixtures/angular-quickstart/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compileOnSave": false, 3 | "compilerOptions": { 4 | "outDir": "./dist/out-tsc", 5 | "sourceMap": true, 6 | "declaration": false, 7 | "moduleResolution": "node", 8 | "emitDecoratorMetadata": true, 9 | "experimentalDecorators": true, 10 | "target": "es5", 11 | "typeRoots": [ 12 | "node_modules/@types" 13 | ], 14 | "lib": [ 15 | "es2017", 16 | "dom" 17 | ] 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /fixtures/ember-quickstart/.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig helps developers define and maintain consistent 2 | # coding styles between different editors and IDEs 3 | # editorconfig.org 4 | 5 | root = true 6 | 7 | 8 | [*] 9 | end_of_line = lf 10 | charset = utf-8 11 | trim_trailing_whitespace = true 12 | insert_final_newline = true 13 | indent_style = space 14 | indent_size = 2 15 | 16 | [*.hbs] 17 | insert_final_newline = false 18 | 19 | [*.{diff,md}] 20 | trim_trailing_whitespace = false 21 | -------------------------------------------------------------------------------- /results/pnpm/1.9.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 9983 2 | repeatInstall: 708 3 | withWarmCacheAndLockfile: 3730 4 | withWarmCache: 3774 5 | withLockfile: 11258 6 | size: 91200376 7 | - firstInstall: 10262 8 | repeatInstall: 756 9 | withWarmCacheAndLockfile: 3632 10 | withWarmCache: 3596 11 | withLockfile: 11110 12 | size: 91200376 13 | - firstInstall: 9919 14 | repeatInstall: 717 15 | withWarmCacheAndLockfile: 3646 16 | withWarmCache: 3569 17 | withLockfile: 10876 18 | size: 91200376 19 | -------------------------------------------------------------------------------- /results/npm/5.4.1/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 24322 2 | repeatInstall: 5307 3 | withWarmCacheAndLockfile: 7847 4 | withWarmCache: 17118 5 | withLockfile: 8556 6 | size: 93591469 7 | - firstInstall: 23938 8 | repeatInstall: 5393 9 | withWarmCacheAndLockfile: 7741 10 | withWarmCache: 17671 11 | withLockfile: 8674 12 | size: 93591469 13 | - firstInstall: 25196 14 | repeatInstall: 5320 15 | withWarmCacheAndLockfile: 7836 16 | withWarmCache: 17112 17 | withLockfile: 15672 18 | size: 93591469 19 | -------------------------------------------------------------------------------- /results/pnpm/1.10.2/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 10499 2 | repeatInstall: 963 3 | withWarmCacheAndLockfile: 4057 4 | withWarmCache: 4239 5 | withLockfile: 12922 6 | size: 91202284 7 | - firstInstall: 10323 8 | repeatInstall: 991 9 | withWarmCacheAndLockfile: 4121 10 | withWarmCache: 4143 11 | withLockfile: 12249 12 | size: 91202284 13 | - firstInstall: 12169 14 | repeatInstall: 1000 15 | withWarmCacheAndLockfile: 4430 16 | withWarmCache: 9809 17 | withLockfile: 15825 18 | size: 91202284 19 | -------------------------------------------------------------------------------- /results/pnpm/1.11.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 27072 2 | repeatInstall: 962 3 | withWarmCacheAndLockfile: 4289 4 | withWarmCache: 4000 5 | withLockfile: 14902 6 | size: 91202284 7 | - firstInstall: 11645 8 | repeatInstall: 920 9 | withWarmCacheAndLockfile: 3924 10 | withWarmCache: 4816 11 | withLockfile: 12625 12 | size: 91202284 13 | - firstInstall: 10861 14 | repeatInstall: 972 15 | withWarmCacheAndLockfile: 4392 16 | withWarmCache: 4666 17 | withLockfile: 12925 18 | size: 91202284 19 | -------------------------------------------------------------------------------- /results/pnpm/1.12.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 10829 2 | repeatInstall: 977 3 | withWarmCacheAndLockfile: 4136 4 | withWarmCache: 8192 5 | withLockfile: 11139 6 | size: 91202284 7 | - firstInstall: 10849 8 | repeatInstall: 976 9 | withWarmCacheAndLockfile: 4189 10 | withWarmCache: 4060 11 | withLockfile: 11534 12 | size: 91202284 13 | - firstInstall: 11637 14 | repeatInstall: 974 15 | withWarmCacheAndLockfile: 4335 16 | withWarmCache: 4060 17 | withLockfile: 12826 18 | size: 91202284 19 | -------------------------------------------------------------------------------- /results/pnpm/1.13.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 10398 2 | repeatInstall: 933 3 | withWarmCacheAndLockfile: 3861 4 | withWarmCache: 3744 5 | withLockfile: 12053 6 | size: 91202284 7 | - firstInstall: 10476 8 | repeatInstall: 944 9 | withWarmCacheAndLockfile: 3943 10 | withWarmCache: 3920 11 | withLockfile: 11591 12 | size: 91202284 13 | - firstInstall: 10465 14 | repeatInstall: 945 15 | withWarmCacheAndLockfile: 3931 16 | withWarmCache: 9405 17 | withLockfile: 12069 18 | size: 91202284 19 | -------------------------------------------------------------------------------- /results/pnpm/1.14.5/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 11247 2 | repeatInstall: 1005 3 | withWarmCacheAndLockfile: 4212 4 | withWarmCache: 4206 5 | withLockfile: 12434 6 | size: 91203394 7 | - firstInstall: 11429 8 | repeatInstall: 996 9 | withWarmCacheAndLockfile: 4211 10 | withWarmCache: 4082 11 | withLockfile: 12631 12 | size: 91203394 13 | - firstInstall: 12890 14 | repeatInstall: 978 15 | withWarmCacheAndLockfile: 4231 16 | withWarmCache: 4095 17 | withLockfile: 12092 18 | size: 91203394 19 | -------------------------------------------------------------------------------- /results/pnpm/1.17.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 10532 2 | repeatInstall: 926 3 | withWarmCacheAndLockfile: 3705 4 | withWarmCache: 3829 5 | withLockfile: 10943 6 | size: 96968202 7 | - firstInstall: 10588 8 | repeatInstall: 999 9 | withWarmCacheAndLockfile: 3732 10 | withWarmCache: 3926 11 | withLockfile: 11319 12 | size: 96968202 13 | - firstInstall: 10638 14 | repeatInstall: 964 15 | withWarmCacheAndLockfile: 3608 16 | withWarmCache: 3981 17 | withLockfile: 11246 18 | size: 96968202 19 | -------------------------------------------------------------------------------- /results/pnpm/1.23.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 9972 2 | repeatInstall: 883 3 | withWarmCacheAndLockfile: 3590 4 | withWarmCache: 3932 5 | withLockfile: 10813 6 | size: 96976471 7 | - firstInstall: 10884 8 | repeatInstall: 949 9 | withWarmCacheAndLockfile: 4044 10 | withWarmCache: 3816 11 | withLockfile: 9834 12 | size: 96976471 13 | - firstInstall: 10069 14 | repeatInstall: 956 15 | withWarmCacheAndLockfile: 3464 16 | withWarmCache: 3819 17 | withLockfile: 10380 18 | size: 96976471 19 | -------------------------------------------------------------------------------- /results/pnpm/1.7.1/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 14005 2 | repeatInstall: 1053 3 | withWarmCacheAndLockfile: 4190 4 | withWarmCache: 4015 5 | withLockfile: 12061 6 | size: 91200490 7 | - firstInstall: 10756 8 | repeatInstall: 1032 9 | withWarmCacheAndLockfile: 4152 10 | withWarmCache: 3955 11 | withLockfile: 11055 12 | size: 91200490 13 | - firstInstall: 10674 14 | repeatInstall: 880 15 | withWarmCacheAndLockfile: 4184 16 | withWarmCache: 4009 17 | withLockfile: 11531 18 | size: 91200490 19 | -------------------------------------------------------------------------------- /results/pnpm/1.8.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 11944 2 | repeatInstall: 782 3 | withWarmCacheAndLockfile: 4015 4 | withWarmCache: 3840 5 | withLockfile: 11929 6 | size: 91200490 7 | - firstInstall: 10823 8 | repeatInstall: 888 9 | withWarmCacheAndLockfile: 4215 10 | withWarmCache: 4503 11 | withLockfile: 11547 12 | size: 91200490 13 | - firstInstall: 10576 14 | repeatInstall: 760 15 | withWarmCacheAndLockfile: 3889 16 | withWarmCache: 3877 17 | withLockfile: 11909 18 | size: 91200490 19 | -------------------------------------------------------------------------------- /results/pnpm/1.8.2/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 10934 2 | repeatInstall: 826 3 | withWarmCacheAndLockfile: 4433 4 | withWarmCache: 4376 5 | withLockfile: 12230 6 | size: 91200376 7 | - firstInstall: 10338 8 | repeatInstall: 840 9 | withWarmCacheAndLockfile: 3916 10 | withWarmCache: 3832 11 | withLockfile: 11945 12 | size: 91200376 13 | - firstInstall: 10322 14 | repeatInstall: 748 15 | withWarmCacheAndLockfile: 3891 16 | withWarmCache: 3997 17 | withLockfile: 11075 18 | size: 91200376 19 | -------------------------------------------------------------------------------- /results/pnpm/1.9.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 9677 2 | repeatInstall: 843 3 | withWarmCacheAndLockfile: 3342 4 | withWarmCache: 4268 5 | withLockfile: 9681 6 | size: 91448167 7 | - firstInstall: 9469 8 | repeatInstall: 849 9 | withWarmCacheAndLockfile: 3611 10 | withWarmCache: 4372 11 | withLockfile: 9180 12 | size: 91448167 13 | - firstInstall: 9620 14 | repeatInstall: 877 15 | withWarmCacheAndLockfile: 3389 16 | withWarmCache: 4543 17 | withLockfile: 9200 18 | size: 91448167 19 | -------------------------------------------------------------------------------- /results/npm/5.3.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 39711 2 | repeatInstall: 6147 3 | withWarmCacheAndLockfile: 9091 4 | withWarmCache: 22933 5 | withLockfile: 10496 6 | size: 93591469 7 | - firstInstall: 35042 8 | repeatInstall: 6315 9 | withWarmCacheAndLockfile: 9894 10 | withWarmCache: 23539 11 | withLockfile: 14333 12 | size: 93591469 13 | - firstInstall: 43701 14 | repeatInstall: 6338 15 | withWarmCacheAndLockfile: 9512 16 | withWarmCache: 22944 17 | withLockfile: 18932 18 | size: 93591469 19 | -------------------------------------------------------------------------------- /results/npm/5.4.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 14641 2 | repeatInstall: 3957 3 | withWarmCacheAndLockfile: 7284 4 | withWarmCache: 9416 5 | withLockfile: 9274 6 | size: 90880322 7 | - firstInstall: 14163 8 | repeatInstall: 3704 9 | withWarmCacheAndLockfile: 6994 10 | withWarmCache: 8796 11 | withLockfile: 9692 12 | size: 90872130 13 | - firstInstall: 13723 14 | repeatInstall: 3873 15 | withWarmCacheAndLockfile: 7231 16 | withWarmCache: 9030 17 | withLockfile: 9253 18 | size: 90872130 19 | -------------------------------------------------------------------------------- /results/npm/5.4.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 27435 2 | repeatInstall: 5929 3 | withWarmCacheAndLockfile: 9570 4 | withWarmCache: 18990 5 | withLockfile: 10006 6 | size: 93591469 7 | - firstInstall: 29708 8 | repeatInstall: 5724 9 | withWarmCacheAndLockfile: 8483 10 | withWarmCache: 18612 11 | withLockfile: 10244 12 | size: 93591469 13 | - firstInstall: 27999 14 | repeatInstall: 5728 15 | withWarmCacheAndLockfile: 8293 16 | withWarmCache: 18401 17 | withLockfile: 9468 18 | size: 93591469 19 | -------------------------------------------------------------------------------- /results/npm/5.4.1/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 13887 2 | repeatInstall: 3632 3 | withWarmCacheAndLockfile: 6852 4 | withWarmCache: 8436 5 | withLockfile: 8234 6 | size: 90872130 7 | - firstInstall: 14700 8 | repeatInstall: 3707 9 | withWarmCacheAndLockfile: 6856 10 | withWarmCache: 8421 11 | withLockfile: 9211 12 | size: 90880322 13 | - firstInstall: 12040 14 | repeatInstall: 3604 15 | withWarmCacheAndLockfile: 6874 16 | withWarmCache: 8597 17 | withLockfile: 9216 18 | size: 90872130 19 | -------------------------------------------------------------------------------- /results/pnpm/1.15.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 11196 2 | repeatInstall: 1041 3 | withWarmCacheAndLockfile: 4068 4 | withWarmCache: 8392 5 | withLockfile: 11765 6 | size: 91104154 7 | - firstInstall: 10750 8 | repeatInstall: 1068 9 | withWarmCacheAndLockfile: 4175 10 | withWarmCache: 8679 11 | withLockfile: 11095 12 | size: 91104154 13 | - firstInstall: 11699 14 | repeatInstall: 1080 15 | withWarmCacheAndLockfile: 4178 16 | withWarmCache: 4217 17 | withLockfile: 11853 18 | size: 91104154 19 | -------------------------------------------------------------------------------- /results/pnpm/1.8.2/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 9846 2 | repeatInstall: 828 3 | withWarmCacheAndLockfile: 3448 4 | withWarmCache: 4751 5 | withLockfile: 9905 6 | size: 91393009 7 | - firstInstall: 10547 8 | repeatInstall: 924 9 | withWarmCacheAndLockfile: 3690 10 | withWarmCache: 4640 11 | withLockfile: 9652 12 | size: 91393009 13 | - firstInstall: 10055 14 | repeatInstall: 901 15 | withWarmCacheAndLockfile: 3592 16 | withWarmCache: 4564 17 | withLockfile: 9589 18 | size: 91393009 19 | -------------------------------------------------------------------------------- /results/yarn/0.27.5/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 10958 2 | repeatInstall: 734 3 | withWarmCacheAndLockfile: 2644 4 | withWarmCache: 5431 5 | withLockfile: 7961 6 | size: 88883143 7 | - firstInstall: 10458 8 | repeatInstall: 709 9 | withWarmCacheAndLockfile: 2595 10 | withWarmCache: 5299 11 | withLockfile: 7961 12 | size: 88883143 13 | - firstInstall: 13580 14 | repeatInstall: 746 15 | withWarmCacheAndLockfile: 2695 16 | withWarmCache: 8198 17 | withLockfile: 8107 18 | size: 88883143 19 | -------------------------------------------------------------------------------- /results/yarn/1.2.1/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 15311 2 | repeatInstall: 607 3 | withWarmCacheAndLockfile: 2431 4 | withWarmCache: 9991 5 | withLockfile: 7927 6 | size: 89704903 7 | - firstInstall: 16429 8 | repeatInstall: 660 9 | withWarmCacheAndLockfile: 2556 10 | withWarmCache: 10610 11 | withLockfile: 8055 12 | size: 89704903 13 | - firstInstall: 16186 14 | repeatInstall: 644 15 | withWarmCacheAndLockfile: 2457 16 | withWarmCache: 10043 17 | withLockfile: 8172 18 | size: 89704903 19 | -------------------------------------------------------------------------------- /fixtures/react-app/src/App.css: -------------------------------------------------------------------------------- 1 | .App { 2 | text-align: center; 3 | } 4 | 5 | .App-logo { 6 | animation: App-logo-spin infinite 20s linear; 7 | height: 80px; 8 | } 9 | 10 | .App-header { 11 | background-color: #222; 12 | height: 150px; 13 | padding: 20px; 14 | color: white; 15 | } 16 | 17 | .App-title { 18 | font-size: 1.5em; 19 | } 20 | 21 | .App-intro { 22 | font-size: large; 23 | } 24 | 25 | @keyframes App-logo-spin { 26 | from { transform: rotate(0deg); } 27 | to { transform: rotate(360deg); } 28 | } 29 | -------------------------------------------------------------------------------- /results/npm/5.3.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 20144 2 | repeatInstall: 4262 3 | withWarmCacheAndLockfile: 6802 4 | withWarmCache: 8262 5 | withLockfile: 7691 6 | size: 90016385 7 | - firstInstall: 13836 8 | repeatInstall: 4311 9 | withWarmCacheAndLockfile: 6491 10 | withWarmCache: 8645 11 | withLockfile: 8224 12 | size: 90016385 13 | - firstInstall: 14065 14 | repeatInstall: 4423 15 | withWarmCacheAndLockfile: 6897 16 | withWarmCache: 9645 17 | withLockfile: 10671 18 | size: 90016385 19 | -------------------------------------------------------------------------------- /results/pnpm/1.10.2/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 12218 2 | repeatInstall: 1145 3 | withWarmCacheAndLockfile: 3893 4 | withWarmCache: 6101 5 | withLockfile: 11025 6 | size: 91657714 7 | - firstInstall: 11681 8 | repeatInstall: 1068 9 | withWarmCacheAndLockfile: 3863 10 | withWarmCache: 5994 11 | withLockfile: 10588 12 | size: 91657714 13 | - firstInstall: 11999 14 | repeatInstall: 1094 15 | withWarmCacheAndLockfile: 3824 16 | withWarmCache: 5814 17 | withLockfile: 11252 18 | size: 91657714 19 | -------------------------------------------------------------------------------- /results/pnpm/1.11.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 16384 2 | repeatInstall: 1095 3 | withWarmCacheAndLockfile: 3686 4 | withWarmCache: 5803 5 | withLockfile: 10634 6 | size: 91658330 7 | - firstInstall: 11194 8 | repeatInstall: 1005 9 | withWarmCacheAndLockfile: 3814 10 | withWarmCache: 5889 11 | withLockfile: 11058 12 | size: 91658330 13 | - firstInstall: 13896 14 | repeatInstall: 1108 15 | withWarmCacheAndLockfile: 3950 16 | withWarmCache: 5421 17 | withLockfile: 10571 18 | size: 91658330 19 | -------------------------------------------------------------------------------- /results/pnpm/1.12.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 11507 2 | repeatInstall: 1059 3 | withWarmCacheAndLockfile: 3992 4 | withWarmCache: 5370 5 | withLockfile: 10505 6 | size: 92518045 7 | - firstInstall: 11202 8 | repeatInstall: 1047 9 | withWarmCacheAndLockfile: 3774 10 | withWarmCache: 5244 11 | withLockfile: 10264 12 | size: 92518045 13 | - firstInstall: 11516 14 | repeatInstall: 1038 15 | withWarmCacheAndLockfile: 3786 16 | withWarmCache: 5557 17 | withLockfile: 13147 18 | size: 92518045 19 | -------------------------------------------------------------------------------- /results/pnpm/1.13.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 10262 2 | repeatInstall: 1039 3 | withWarmCacheAndLockfile: 3917 4 | withWarmCache: 5577 5 | withLockfile: 10196 6 | size: 92518045 7 | - firstInstall: 10523 8 | repeatInstall: 1041 9 | withWarmCacheAndLockfile: 3801 10 | withWarmCache: 4824 11 | withLockfile: 10062 12 | size: 92518045 13 | - firstInstall: 10346 14 | repeatInstall: 1110 15 | withWarmCacheAndLockfile: 3781 16 | withWarmCache: 9048 17 | withLockfile: 9985 18 | size: 92518045 19 | -------------------------------------------------------------------------------- /results/pnpm/1.14.5/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 11612 2 | repeatInstall: 1123 3 | withWarmCacheAndLockfile: 4188 4 | withWarmCache: 5399 5 | withLockfile: 11060 6 | size: 92549546 7 | - firstInstall: 11029 8 | repeatInstall: 1154 9 | withWarmCacheAndLockfile: 4186 10 | withWarmCache: 5083 11 | withLockfile: 10845 12 | size: 92549546 13 | - firstInstall: 13652 14 | repeatInstall: 1111 15 | withWarmCacheAndLockfile: 4177 16 | withWarmCache: 5198 17 | withLockfile: 10690 18 | size: 92549546 19 | -------------------------------------------------------------------------------- /results/pnpm/1.15.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 10807 2 | repeatInstall: 1144 3 | withWarmCacheAndLockfile: 4084 4 | withWarmCache: 9604 5 | withLockfile: 11263 6 | size: 92680599 7 | - firstInstall: 10574 8 | repeatInstall: 1226 9 | withWarmCacheAndLockfile: 3931 10 | withWarmCache: 4768 11 | withLockfile: 9972 12 | size: 92680599 13 | - firstInstall: 12486 14 | repeatInstall: 1130 15 | withWarmCacheAndLockfile: 3921 16 | withWarmCache: 7903 17 | withLockfile: 9549 18 | size: 92680599 19 | -------------------------------------------------------------------------------- /results/pnpm/1.7.1/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 10902 2 | repeatInstall: 1106 3 | withWarmCacheAndLockfile: 4009 4 | withWarmCache: 5102 5 | withLockfile: 10838 6 | size: 91408548 7 | - firstInstall: 10535 8 | repeatInstall: 1014 9 | withWarmCacheAndLockfile: 3835 10 | withWarmCache: 5081 11 | withLockfile: 10718 12 | size: 91408548 13 | - firstInstall: 10733 14 | repeatInstall: 1048 15 | withWarmCacheAndLockfile: 4194 16 | withWarmCache: 5042 17 | withLockfile: 11074 18 | size: 91408548 19 | -------------------------------------------------------------------------------- /results/pnpm/1.8.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 11211 2 | repeatInstall: 900 3 | withWarmCacheAndLockfile: 3724 4 | withWarmCache: 4883 5 | withLockfile: 10525 6 | size: 91408587 7 | - firstInstall: 11211 8 | repeatInstall: 913 9 | withWarmCacheAndLockfile: 3705 10 | withWarmCache: 5027 11 | withLockfile: 10219 12 | size: 91408587 13 | - firstInstall: 10738 14 | repeatInstall: 941 15 | withWarmCacheAndLockfile: 3697 16 | withWarmCache: 4693 17 | withLockfile: 10333 18 | size: 91408587 19 | -------------------------------------------------------------------------------- /results/yarn/0.27.5/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 27238 2 | repeatInstall: 1335 3 | withWarmCacheAndLockfile: 8936 4 | withWarmCache: 14210 5 | withLockfile: 18944 6 | size: 165909848 7 | - firstInstall: 25386 8 | repeatInstall: 1280 9 | withWarmCacheAndLockfile: 7444 10 | withWarmCache: 12544 11 | withLockfile: 20226 12 | size: 165909848 13 | - firstInstall: 25801 14 | repeatInstall: 1294 15 | withWarmCacheAndLockfile: 7595 16 | withWarmCache: 16987 17 | withLockfile: 18679 18 | size: 165909848 19 | -------------------------------------------------------------------------------- /results/yarn/1.0.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 15773 2 | repeatInstall: 779 3 | withWarmCacheAndLockfile: 3480 4 | withWarmCache: 13632 5 | withLockfile: 10886 6 | size: 88883190 7 | - firstInstall: 16382 8 | repeatInstall: 839 9 | withWarmCacheAndLockfile: 3662 10 | withWarmCache: 9073 11 | withLockfile: 11252 12 | size: 88883190 13 | - firstInstall: 15775 14 | repeatInstall: 795 15 | withWarmCacheAndLockfile: 3493 16 | withWarmCache: 8647 17 | withLockfile: 11218 18 | size: 88883190 19 | -------------------------------------------------------------------------------- /results/yarn/1.0.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 28193 2 | repeatInstall: 1114 3 | withWarmCacheAndLockfile: 10388 4 | withWarmCache: 16610 5 | withLockfile: 21341 6 | size: 165683223 7 | - firstInstall: 27837 8 | repeatInstall: 1148 9 | withWarmCacheAndLockfile: 10564 10 | withWarmCache: 15852 11 | withLockfile: 21116 12 | size: 165683223 13 | - firstInstall: 32962 14 | repeatInstall: 1126 15 | withWarmCacheAndLockfile: 10414 16 | withWarmCache: 15877 17 | withLockfile: 21274 18 | size: 165683223 19 | -------------------------------------------------------------------------------- /results/yarn/1.0.2/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 19482 2 | repeatInstall: 901 3 | withWarmCacheAndLockfile: 4114 4 | withWarmCache: 9303 5 | withLockfile: 11239 6 | size: 88918444 7 | - firstInstall: 17037 8 | repeatInstall: 900 9 | withWarmCacheAndLockfile: 3991 10 | withWarmCache: 9019 11 | withLockfile: 11376 12 | size: 88918444 13 | - firstInstall: 16157 14 | repeatInstall: 910 15 | withWarmCacheAndLockfile: 3872 16 | withWarmCache: 9416 17 | withLockfile: 11510 18 | size: 88918444 19 | -------------------------------------------------------------------------------- /results/yarn/1.0.2/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 33626 2 | repeatInstall: 1294 3 | withWarmCacheAndLockfile: 11182 4 | withWarmCache: 17650 5 | withLockfile: 24114 6 | size: 166176281 7 | - firstInstall: 29016 8 | repeatInstall: 1209 9 | withWarmCacheAndLockfile: 10803 10 | withWarmCache: 16885 11 | withLockfile: 22831 12 | size: 166176281 13 | - firstInstall: 29585 14 | repeatInstall: 1252 15 | withWarmCacheAndLockfile: 10959 16 | withWarmCache: 18491 17 | withLockfile: 23077 18 | size: 166172185 19 | -------------------------------------------------------------------------------- /results/yarn/1.1.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 19414 2 | repeatInstall: 860 3 | withWarmCacheAndLockfile: 3551 4 | withWarmCache: 11563 5 | withLockfile: 11275 6 | size: 88971934 7 | - firstInstall: 19268 8 | repeatInstall: 849 9 | withWarmCacheAndLockfile: 3403 10 | withWarmCache: 11772 11 | withLockfile: 11662 12 | size: 88971934 13 | - firstInstall: 18980 14 | repeatInstall: 832 15 | withWarmCacheAndLockfile: 3606 16 | withWarmCache: 11825 17 | withLockfile: 11680 18 | size: 88971934 19 | -------------------------------------------------------------------------------- /results/yarn/1.1.0/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 32219 2 | repeatInstall: 824 3 | withWarmCacheAndLockfile: 5443 4 | withWarmCache: 12467 5 | withLockfile: 27146 6 | size: 178236724 7 | - firstInstall: 40640 8 | repeatInstall: 1052 9 | withWarmCacheAndLockfile: 6166 10 | withWarmCache: 14339 11 | withLockfile: 21659 12 | size: 178236724 13 | - firstInstall: 41461 14 | repeatInstall: 867 15 | withWarmCacheAndLockfile: 6580 16 | withWarmCache: 15778 17 | withLockfile: 22516 18 | size: 178236724 19 | -------------------------------------------------------------------------------- /results/yarn/1.1.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 26541 2 | repeatInstall: 1142 3 | withWarmCacheAndLockfile: 10249 4 | withWarmCache: 15616 5 | withLockfile: 20837 6 | size: 167864858 7 | - firstInstall: 27153 8 | repeatInstall: 1272 9 | withWarmCacheAndLockfile: 10369 10 | withWarmCache: 15507 11 | withLockfile: 21838 12 | size: 167864858 13 | - firstInstall: 28685 14 | repeatInstall: 1238 15 | withWarmCacheAndLockfile: 10509 16 | withWarmCache: 16199 17 | withLockfile: 21963 18 | size: 167864858 19 | -------------------------------------------------------------------------------- /results/yarn/1.2.1/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 35248 2 | repeatInstall: 1066 3 | withWarmCacheAndLockfile: 8489 4 | withWarmCache: 20199 5 | withLockfile: 16590 6 | size: 219019247 7 | - firstInstall: 32414 8 | repeatInstall: 998 9 | withWarmCacheAndLockfile: 8084 10 | withWarmCache: 19260 11 | withLockfile: 16197 12 | size: 219019247 13 | - firstInstall: 31180 14 | repeatInstall: 939 15 | withWarmCacheAndLockfile: 7934 16 | withWarmCache: 20381 17 | withLockfile: 15965 18 | size: 219019247 19 | -------------------------------------------------------------------------------- /results/yarn/1.2.1/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 21498 2 | repeatInstall: 912 3 | withWarmCacheAndLockfile: 4363 4 | withWarmCache: 12826 5 | withLockfile: 11903 6 | size: 184069080 7 | - firstInstall: 21288 8 | repeatInstall: 852 9 | withWarmCacheAndLockfile: 4235 10 | withWarmCache: 13126 11 | withLockfile: 11435 12 | size: 184069080 13 | - firstInstall: 20621 14 | repeatInstall: 880 15 | withWarmCacheAndLockfile: 4168 16 | withWarmCache: 13158 17 | withLockfile: 11718 18 | size: 184069080 19 | -------------------------------------------------------------------------------- /results/yarn/1.2.1/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 23322 2 | repeatInstall: 1015 3 | withWarmCacheAndLockfile: 7567 4 | withWarmCache: 11886 5 | withLockfile: 17775 6 | size: 171139752 7 | - firstInstall: 23471 8 | repeatInstall: 1187 9 | withWarmCacheAndLockfile: 7641 10 | withWarmCache: 11856 11 | withLockfile: 17658 12 | size: 171143848 13 | - firstInstall: 23606 14 | repeatInstall: 1130 15 | withWarmCacheAndLockfile: 7616 16 | withWarmCache: 11621 17 | withLockfile: 18085 18 | size: 171143848 19 | -------------------------------------------------------------------------------- /results/pnpm/1.10.2/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 24952 2 | repeatInstall: 1309 3 | withWarmCacheAndLockfile: 9194 4 | withWarmCache: 12968 5 | withLockfile: 22678 6 | size: 123463852 7 | - firstInstall: 24872 8 | repeatInstall: 1287 9 | withWarmCacheAndLockfile: 8979 10 | withWarmCache: 13820 11 | withLockfile: 21364 12 | size: 123463852 13 | - firstInstall: 25113 14 | repeatInstall: 1269 15 | withWarmCacheAndLockfile: 9096 16 | withWarmCache: 13684 17 | withLockfile: 22552 18 | size: 123463852 19 | -------------------------------------------------------------------------------- /results/pnpm/1.11.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 23116 2 | repeatInstall: 1238 3 | withWarmCacheAndLockfile: 8453 4 | withWarmCache: 12182 5 | withLockfile: 20449 6 | size: 123663952 7 | - firstInstall: 24957 8 | repeatInstall: 1248 9 | withWarmCacheAndLockfile: 8144 10 | withWarmCache: 11693 11 | withLockfile: 19639 12 | size: 123663952 13 | - firstInstall: 23203 14 | repeatInstall: 1321 15 | withWarmCacheAndLockfile: 8212 16 | withWarmCache: 12491 17 | withLockfile: 22113 18 | size: 123663952 19 | -------------------------------------------------------------------------------- /results/pnpm/1.12.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 22787 2 | repeatInstall: 1373 3 | withWarmCacheAndLockfile: 8157 4 | withWarmCache: 11875 5 | withLockfile: 21552 6 | size: 123479459 7 | - firstInstall: 23039 8 | repeatInstall: 1281 9 | withWarmCacheAndLockfile: 8117 10 | withWarmCache: 10996 11 | withLockfile: 20222 12 | size: 123479459 13 | - firstInstall: 21775 14 | repeatInstall: 1239 15 | withWarmCacheAndLockfile: 7807 16 | withWarmCache: 11544 17 | withLockfile: 21226 18 | size: 123479459 19 | -------------------------------------------------------------------------------- /results/pnpm/1.13.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 26532 2 | repeatInstall: 1199 3 | withWarmCacheAndLockfile: 8359 4 | withWarmCache: 10465 5 | withLockfile: 19628 6 | size: 123476827 7 | - firstInstall: 21352 8 | repeatInstall: 1224 9 | withWarmCacheAndLockfile: 8076 10 | withWarmCache: 10719 11 | withLockfile: 20506 12 | size: 123476827 13 | - firstInstall: 21697 14 | repeatInstall: 1199 15 | withWarmCacheAndLockfile: 7892 16 | withWarmCache: 10611 17 | withLockfile: 19971 18 | size: 123476827 19 | -------------------------------------------------------------------------------- /results/pnpm/1.14.5/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 22126 2 | repeatInstall: 1314 3 | withWarmCacheAndLockfile: 8610 4 | withWarmCache: 11493 5 | withLockfile: 22015 6 | size: 123515590 7 | - firstInstall: 22104 8 | repeatInstall: 1263 9 | withWarmCacheAndLockfile: 8686 10 | withWarmCache: 11596 11 | withLockfile: 21450 12 | size: 123511494 13 | - firstInstall: 23346 14 | repeatInstall: 1284 15 | withWarmCacheAndLockfile: 8919 16 | withWarmCache: 11183 17 | withLockfile: 20587 18 | size: 123511494 19 | -------------------------------------------------------------------------------- /results/pnpm/1.15.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 22076 2 | repeatInstall: 1328 3 | withWarmCacheAndLockfile: 8497 4 | withWarmCache: 10871 5 | withLockfile: 20660 6 | size: 124528022 7 | - firstInstall: 22290 8 | repeatInstall: 1332 9 | withWarmCacheAndLockfile: 8204 10 | withWarmCache: 10927 11 | withLockfile: 19553 12 | size: 124528022 13 | - firstInstall: 22933 14 | repeatInstall: 1316 15 | withWarmCacheAndLockfile: 8700 16 | withWarmCache: 11589 17 | withLockfile: 44299 18 | size: 124528022 19 | -------------------------------------------------------------------------------- /results/pnpm/1.17.0/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 24772 2 | repeatInstall: 1507 3 | withWarmCacheAndLockfile: 11050 4 | withWarmCache: 12644 5 | withLockfile: 23279 6 | size: 196231962 7 | - firstInstall: 24404 8 | repeatInstall: 1660 9 | withWarmCacheAndLockfile: 10789 10 | withWarmCache: 12335 11 | withLockfile: 23290 12 | size: 196240154 13 | - firstInstall: 24796 14 | repeatInstall: 1710 15 | withWarmCacheAndLockfile: 10763 16 | withWarmCache: 12279 17 | withLockfile: 23175 18 | size: 196240154 19 | -------------------------------------------------------------------------------- /results/pnpm/1.17.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 10419 2 | repeatInstall: 1053 3 | withWarmCacheAndLockfile: 4136 4 | withWarmCache: 4897 5 | withLockfile: 10168 6 | size: 101644197 7 | - firstInstall: 10641 8 | repeatInstall: 1053 9 | withWarmCacheAndLockfile: 4190 10 | withWarmCache: 4922 11 | withLockfile: 10857 12 | size: 101644197 13 | - firstInstall: 10950 14 | repeatInstall: 1041 15 | withWarmCacheAndLockfile: 4160 16 | withWarmCache: 4953 17 | withLockfile: 10403 18 | size: 101644197 19 | -------------------------------------------------------------------------------- /results/pnpm/1.17.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 21119 2 | repeatInstall: 1247 3 | withWarmCacheAndLockfile: 8198 4 | withWarmCache: 10513 5 | withLockfile: 20746 6 | size: 131834719 7 | - firstInstall: 21993 8 | repeatInstall: 1301 9 | withWarmCacheAndLockfile: 8489 10 | withWarmCache: 10901 11 | withLockfile: 20881 12 | size: 131834719 13 | - firstInstall: 21846 14 | repeatInstall: 1262 15 | withWarmCacheAndLockfile: 8532 16 | withWarmCache: 10655 17 | withLockfile: 19804 18 | size: 131834719 19 | -------------------------------------------------------------------------------- /results/pnpm/1.17.0/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 20732 2 | repeatInstall: 1371 3 | withWarmCacheAndLockfile: 7876 4 | withWarmCache: 10196 5 | withLockfile: 18681 6 | size: 191145333 7 | - firstInstall: 19603 8 | repeatInstall: 1276 9 | withWarmCacheAndLockfile: 7745 10 | withWarmCache: 9993 11 | withLockfile: 18337 12 | size: 191145333 13 | - firstInstall: 18971 14 | repeatInstall: 1339 15 | withWarmCacheAndLockfile: 7769 16 | withWarmCache: 10450 17 | withLockfile: 18302 18 | size: 191145333 19 | -------------------------------------------------------------------------------- /results/pnpm/1.23.0/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 21456 2 | repeatInstall: 1502 3 | withWarmCacheAndLockfile: 9878 4 | withWarmCache: 11334 5 | withLockfile: 20811 6 | size: 194018090 7 | - firstInstall: 23497 8 | repeatInstall: 1570 9 | withWarmCacheAndLockfile: 10676 10 | withWarmCache: 12220 11 | withLockfile: 22719 12 | size: 194026282 13 | - firstInstall: 22713 14 | repeatInstall: 1553 15 | withWarmCacheAndLockfile: 10366 16 | withWarmCache: 11844 17 | withLockfile: 22571 18 | size: 194018090 19 | -------------------------------------------------------------------------------- /results/pnpm/1.23.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 9976 2 | repeatInstall: 1112 3 | withWarmCacheAndLockfile: 3855 4 | withWarmCache: 8216 5 | withLockfile: 10051 6 | size: 106798742 7 | - firstInstall: 11099 8 | repeatInstall: 1017 9 | withWarmCacheAndLockfile: 4208 10 | withWarmCache: 4787 11 | withLockfile: 10791 12 | size: 106798742 13 | - firstInstall: 9895 14 | repeatInstall: 1099 15 | withWarmCacheAndLockfile: 3985 16 | withWarmCache: 4831 17 | withLockfile: 10149 18 | size: 106798742 19 | -------------------------------------------------------------------------------- /results/pnpm/1.23.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 19814 2 | repeatInstall: 1258 3 | withWarmCacheAndLockfile: 7855 4 | withWarmCache: 9958 5 | withLockfile: 18966 6 | size: 132555169 7 | - firstInstall: 21695 8 | repeatInstall: 1278 9 | withWarmCacheAndLockfile: 8089 10 | withWarmCache: 10016 11 | withLockfile: 19690 12 | size: 132555169 13 | - firstInstall: 19651 14 | repeatInstall: 1210 15 | withWarmCacheAndLockfile: 7972 16 | withWarmCache: 9813 17 | withLockfile: 18941 18 | size: 132555169 19 | -------------------------------------------------------------------------------- /results/pnpm/1.23.0/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 18468 2 | repeatInstall: 1212 3 | withWarmCacheAndLockfile: 7349 4 | withWarmCache: 10598 5 | withLockfile: 17104 6 | size: 191761894 7 | - firstInstall: 21235 8 | repeatInstall: 1278 9 | withWarmCacheAndLockfile: 8175 10 | withWarmCache: 9840 11 | withLockfile: 19079 12 | size: 191761894 13 | - firstInstall: 18788 14 | repeatInstall: 1264 15 | withWarmCacheAndLockfile: 7227 16 | withWarmCache: 9776 17 | withLockfile: 17111 18 | size: 191761894 19 | -------------------------------------------------------------------------------- /results/pnpm/1.7.1/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 23691 2 | repeatInstall: 1395 3 | withWarmCacheAndLockfile: 9679 4 | withWarmCache: 11568 5 | withLockfile: 21887 6 | size: 121071411 7 | - firstInstall: 23225 8 | repeatInstall: 1151 9 | withWarmCacheAndLockfile: 8769 10 | withWarmCache: 11118 11 | withLockfile: 20054 12 | size: 121071411 13 | - firstInstall: 23151 14 | repeatInstall: 1174 15 | withWarmCacheAndLockfile: 9432 16 | withWarmCache: 11515 17 | withLockfile: 19847 18 | size: 121071411 19 | -------------------------------------------------------------------------------- /results/pnpm/1.8.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 24382 2 | repeatInstall: 1172 3 | withWarmCacheAndLockfile: 8791 4 | withWarmCache: 11440 5 | withLockfile: 21638 6 | size: 121084486 7 | - firstInstall: 22746 8 | repeatInstall: 1039 9 | withWarmCacheAndLockfile: 8747 10 | withWarmCache: 11646 11 | withLockfile: 22993 12 | size: 121084486 13 | - firstInstall: 22613 14 | repeatInstall: 1103 15 | withWarmCacheAndLockfile: 8502 16 | withWarmCache: 11058 17 | withLockfile: 22013 18 | size: 121084486 19 | -------------------------------------------------------------------------------- /results/pnpm/1.8.2/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 22492 2 | repeatInstall: 1008 3 | withWarmCacheAndLockfile: 8509 4 | withWarmCache: 10519 5 | withLockfile: 20632 6 | size: 120943045 7 | - firstInstall: 21665 8 | repeatInstall: 1017 9 | withWarmCacheAndLockfile: 8447 10 | withWarmCache: 10743 11 | withLockfile: 20831 12 | size: 120943045 13 | - firstInstall: 21892 14 | repeatInstall: 1028 15 | withWarmCacheAndLockfile: 8401 16 | withWarmCache: 10544 17 | withLockfile: 19016 18 | size: 120943045 19 | -------------------------------------------------------------------------------- /results/pnpm/1.9.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 21190 2 | repeatInstall: 988 3 | withWarmCacheAndLockfile: 7841 4 | withWarmCache: 10436 5 | withLockfile: 19264 6 | size: 120999035 7 | - firstInstall: 20867 8 | repeatInstall: 1021 9 | withWarmCacheAndLockfile: 8168 10 | withWarmCache: 10041 11 | withLockfile: 19274 12 | size: 120999035 13 | - firstInstall: 20277 14 | repeatInstall: 978 15 | withWarmCacheAndLockfile: 8218 16 | withWarmCache: 10218 17 | withLockfile: 19504 18 | size: 120999035 19 | -------------------------------------------------------------------------------- /results/yarn/0.27.5/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 25570 2 | repeatInstall: 1272 3 | withWarmCacheAndLockfile: 6595 4 | withWarmCache: 10751 5 | withLockfile: 16380 6 | size: 129963284 7 | - firstInstall: 23434 8 | repeatInstall: 1069 9 | withWarmCacheAndLockfile: 6295 10 | withWarmCache: 11370 11 | withLockfile: 16614 12 | size: 129963284 13 | - firstInstall: 21390 14 | repeatInstall: 1113 15 | withWarmCacheAndLockfile: 6445 16 | withWarmCache: 10950 17 | withLockfile: 15829 18 | size: 129963284 19 | -------------------------------------------------------------------------------- /results/yarn/1.0.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 30150 2 | repeatInstall: 1152 3 | withWarmCacheAndLockfile: 8955 4 | withWarmCache: 16256 5 | withLockfile: 17667 6 | size: 129960723 7 | - firstInstall: 27551 8 | repeatInstall: 1169 9 | withWarmCacheAndLockfile: 8980 10 | withWarmCache: 23179 11 | withLockfile: 18043 12 | size: 129960723 13 | - firstInstall: 26912 14 | repeatInstall: 1245 15 | withWarmCacheAndLockfile: 9347 16 | withWarmCache: 15917 17 | withLockfile: 18945 18 | size: 129960723 19 | -------------------------------------------------------------------------------- /results/yarn/1.0.2/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 29430 2 | repeatInstall: 1351 3 | withWarmCacheAndLockfile: 10145 4 | withWarmCache: 16598 5 | withLockfile: 19388 6 | size: 129984646 7 | - firstInstall: 27693 8 | repeatInstall: 1301 9 | withWarmCacheAndLockfile: 9475 10 | withWarmCache: 16721 11 | withLockfile: 18520 12 | size: 129984646 13 | - firstInstall: 34069 14 | repeatInstall: 1231 15 | withWarmCacheAndLockfile: 9499 16 | withWarmCache: 17144 17 | withLockfile: 18944 18 | size: 129984646 19 | -------------------------------------------------------------------------------- /results/yarn/1.1.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 26679 2 | repeatInstall: 1260 3 | withWarmCacheAndLockfile: 8826 4 | withWarmCache: 15727 5 | withLockfile: 18002 6 | size: 131095197 7 | - firstInstall: 27302 8 | repeatInstall: 1195 9 | withWarmCacheAndLockfile: 8547 10 | withWarmCache: 16143 11 | withLockfile: 17896 12 | size: 131095197 13 | - firstInstall: 28617 14 | repeatInstall: 1328 15 | withWarmCacheAndLockfile: 8695 16 | withWarmCache: 15977 17 | withLockfile: 18759 18 | size: 131095197 19 | -------------------------------------------------------------------------------- /results/yarn/1.2.1/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 23733 2 | repeatInstall: 1026 3 | withWarmCacheAndLockfile: 6135 4 | withWarmCache: 11545 5 | withLockfile: 14949 6 | size: 130567373 7 | - firstInstall: 24088 8 | repeatInstall: 1006 9 | withWarmCacheAndLockfile: 6420 10 | withWarmCache: 12424 11 | withLockfile: 15454 12 | size: 130567373 13 | - firstInstall: 22821 14 | repeatInstall: 1038 15 | withWarmCacheAndLockfile: 6387 16 | withWarmCache: 12623 17 | withLockfile: 14530 18 | size: 130567373 19 | -------------------------------------------------------------------------------- /results/npm/5.3.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 38648 2 | repeatInstall: 11338 3 | withWarmCacheAndLockfile: 19637 4 | withWarmCache: 26608 5 | withLockfile: 21074 6 | size: 217157908 7 | - firstInstall: 43217 8 | repeatInstall: 11363 9 | withWarmCacheAndLockfile: 18188 10 | withWarmCache: 26097 11 | withLockfile: 19783 12 | size: 217162004 13 | - firstInstall: 41079 14 | repeatInstall: 11958 15 | withWarmCacheAndLockfile: 18477 16 | withWarmCache: 28192 17 | withLockfile: 21272 18 | size: 217174292 19 | -------------------------------------------------------------------------------- /results/npm/5.4.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 40113 2 | repeatInstall: 11403 3 | withWarmCacheAndLockfile: 23128 4 | withWarmCache: 29168 5 | withLockfile: 26045 6 | size: 217130260 7 | - firstInstall: 41213 8 | repeatInstall: 11667 9 | withWarmCacheAndLockfile: 22510 10 | withWarmCache: 30370 11 | withLockfile: 26993 12 | size: 217142548 13 | - firstInstall: 41321 14 | repeatInstall: 11653 15 | withWarmCacheAndLockfile: 22380 16 | withWarmCache: 29818 17 | withLockfile: 26990 18 | size: 217126164 19 | -------------------------------------------------------------------------------- /results/npm/5.4.1/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 36094 2 | repeatInstall: 10772 3 | withWarmCacheAndLockfile: 20487 4 | withWarmCache: 27878 5 | withLockfile: 25142 6 | size: 217124996 7 | - firstInstall: 35771 8 | repeatInstall: 10838 9 | withWarmCacheAndLockfile: 22013 10 | withWarmCache: 28853 11 | withLockfile: 25872 12 | size: 217120900 13 | - firstInstall: 38634 14 | repeatInstall: 11028 15 | withWarmCacheAndLockfile: 22306 16 | withWarmCache: 27824 17 | withLockfile: 24704 18 | size: 217120900 19 | -------------------------------------------------------------------------------- /results/pnpm/1.15.0/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 37913 2 | repeatInstall: 1651 3 | withWarmCacheAndLockfile: 10695 4 | withWarmCache: 20422 5 | withLockfile: 34454 6 | size: 169603525 7 | - firstInstall: 42335 8 | repeatInstall: 1923 9 | withWarmCacheAndLockfile: 15911 10 | withWarmCache: 21233 11 | withLockfile: 34994 12 | size: 169603525 13 | - firstInstall: 42283 14 | repeatInstall: 2077 15 | withWarmCacheAndLockfile: 12615 16 | withWarmCache: 20563 17 | withLockfile: 33961 18 | size: 169603525 19 | -------------------------------------------------------------------------------- /results/pnpm/2.8.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 19268 2 | repeatInstall: 858 3 | withWarmCacheAndLockfile: 4472 4 | withWarmCache: 12099 5 | withLockfile: 15437 6 | withWarmCacheAndModules: 9113 7 | withWarmModulesAndLockfile: 908 8 | withWarmModules: 17223 9 | size: 107575068 10 | - firstInstall: 18003 11 | repeatInstall: 854 12 | withWarmCacheAndLockfile: 4410 13 | withWarmCache: 9062 14 | withLockfile: 16739 15 | withWarmCacheAndModules: 6846 16 | withWarmModulesAndLockfile: 889 17 | withWarmModules: 16421 18 | size: 107575068 19 | -------------------------------------------------------------------------------- /results/npm/5.6.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 24836 2 | repeatInstall: 6389 3 | withWarmCacheAndLockfile: 10271 4 | withWarmCache: 20980 5 | withLockfile: 14265 6 | withWarmCacheAndModules: 6715 7 | withWarmModulesAndLockfile: 6896 8 | withWarmModules: 7203 9 | size: 136314984 10 | - firstInstall: 24886 11 | repeatInstall: 6119 12 | withWarmCacheAndLockfile: 10337 13 | withWarmCache: 19462 14 | withLockfile: 13517 15 | withWarmCacheAndModules: 6670 16 | withWarmModulesAndLockfile: 7063 17 | withWarmModules: 7046 18 | size: 136315987 19 | -------------------------------------------------------------------------------- /results/npm/5.7.1/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 25521 2 | repeatInstall: 8617 3 | withWarmCacheAndLockfile: 12746 4 | withWarmCache: 21611 5 | withLockfile: 15550 6 | withWarmCacheAndModules: 8788 7 | withWarmModulesAndLockfile: 9456 8 | withWarmModules: 8712 9 | size: 142036895 10 | - firstInstall: 22428 11 | repeatInstall: 7550 12 | withWarmCacheAndLockfile: 11936 13 | withWarmCache: 21131 14 | withLockfile: 15249 15 | withWarmCacheAndModules: 8063 16 | withWarmModulesAndLockfile: 8025 17 | withWarmModules: 8266 18 | size: 142048953 19 | -------------------------------------------------------------------------------- /results/npm/6.1.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 27648 2 | repeatInstall: 7312 3 | withWarmCacheAndLockfile: 12317 4 | withWarmCache: 14459 5 | withLockfile: 17563 6 | withWarmCacheAndModules: 7513 7 | withWarmModulesAndLockfile: 7494 8 | withWarmModules: 7640 9 | size: 144962730 10 | - firstInstall: 24311 11 | repeatInstall: 7279 12 | withWarmCacheAndLockfile: 12154 13 | withWarmCache: 14651 14 | withLockfile: 15124 15 | withWarmCacheAndModules: 7541 16 | withWarmModulesAndLockfile: 7743 17 | withWarmModules: 7608 18 | size: 144962730 19 | -------------------------------------------------------------------------------- /results/pnpm/1.33.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 19185 2 | repeatInstall: 1532 3 | withWarmCacheAndLockfile: 8105 4 | withWarmCache: 9819 5 | withLockfile: 18599 6 | withWarmCacheAndModules: 7218 7 | withWarmModulesAndLockfile: 1584 8 | withWarmModules: 15538 9 | size: 105092287 10 | - firstInstall: 19168 11 | repeatInstall: 1539 12 | withWarmCacheAndLockfile: 8161 13 | withWarmCache: 9694 14 | withLockfile: 18626 15 | withWarmCacheAndModules: 7202 16 | withWarmModulesAndLockfile: 1577 17 | withWarmModules: 15506 18 | size: 105093290 19 | -------------------------------------------------------------------------------- /results/pnpm/1.36.1/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 19631 2 | repeatInstall: 1093 3 | withWarmCacheAndLockfile: 8211 4 | withWarmCache: 10032 5 | withLockfile: 18834 6 | withWarmCacheAndModules: 6164 7 | withWarmModulesAndLockfile: 1139 8 | withWarmModules: 14914 9 | size: 109309841 10 | - firstInstall: 18477 11 | repeatInstall: 1131 12 | withWarmCacheAndLockfile: 7776 13 | withWarmCache: 9185 14 | withLockfile: 17600 15 | withWarmCacheAndModules: 5752 16 | withWarmModulesAndLockfile: 1157 17 | withWarmModules: 14696 18 | size: 109321899 19 | -------------------------------------------------------------------------------- /results/pnpm/3.0.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 16580 2 | repeatInstall: 1027 3 | withWarmCacheAndLockfile: 4626 4 | withWarmCache: 8300 5 | withLockfile: 14081 6 | withWarmCacheAndModules: 1927 7 | withWarmModulesAndLockfile: 1013 8 | withWarmModules: 4144 9 | size: 107556374 10 | - firstInstall: 19753 11 | repeatInstall: 1182 12 | withWarmCacheAndLockfile: 5020 13 | withWarmCache: 8780 14 | withLockfile: 15009 15 | withWarmCacheAndModules: 1997 16 | withWarmModulesAndLockfile: 1051 17 | withWarmModules: 4309 18 | size: 107556374 19 | -------------------------------------------------------------------------------- /results/yarn/1.13.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 20136 2 | repeatInstall: 788 3 | withWarmCacheAndLockfile: 4370 4 | withWarmCache: 10853 5 | withLockfile: 13200 6 | withWarmCacheAndModules: 9806 7 | withWarmModulesAndLockfile: 776 8 | withWarmModules: 19812 9 | size: 110550160 10 | - firstInstall: 21046 11 | repeatInstall: 840 12 | withWarmCacheAndLockfile: 4629 13 | withWarmCache: 10138 14 | withLockfile: 13368 15 | withWarmCacheAndModules: 7920 16 | withWarmModulesAndLockfile: 816 17 | withWarmModules: 18421 18 | size: 110550160 19 | -------------------------------------------------------------------------------- /results/yarn/1.3.2/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 21410 2 | repeatInstall: 957 3 | withWarmCacheAndLockfile: 4270 4 | withWarmCache: 11140 5 | withLockfile: 13956 6 | withWarmCacheAndModules: 11153 7 | withWarmModulesAndLockfile: 970 8 | withWarmModules: 21102 9 | size: 99923873 10 | - firstInstall: 20746 11 | repeatInstall: 979 12 | withWarmCacheAndLockfile: 4263 13 | withWarmCache: 11256 14 | withLockfile: 14094 15 | withWarmCacheAndModules: 11235 16 | withWarmModulesAndLockfile: 977 17 | withWarmModules: 26349 18 | size: 99924876 19 | -------------------------------------------------------------------------------- /results/yarn/1.7.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 27892 2 | repeatInstall: 982 3 | withWarmCacheAndLockfile: 4502 4 | withWarmCache: 13968 5 | withLockfile: 16245 6 | withWarmCacheAndModules: 14074 7 | withWarmModulesAndLockfile: 949 8 | withWarmModules: 27483 9 | size: 108026744 10 | - firstInstall: 25501 11 | repeatInstall: 999 12 | withWarmCacheAndLockfile: 4489 13 | withWarmCache: 12950 14 | withLockfile: 16562 15 | withWarmCacheAndModules: 14906 16 | withWarmModulesAndLockfile: 921 17 | withWarmModules: 25927 18 | size: 108026744 19 | -------------------------------------------------------------------------------- /results/npm/5.6.0/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 30153 2 | repeatInstall: 5965 3 | withWarmCacheAndLockfile: 14714 4 | withWarmCache: 26298 5 | withLockfile: 20094 6 | withWarmCacheAndModules: 5773 7 | withWarmModulesAndLockfile: 6116 8 | withWarmModules: 5679 9 | size: 235307946 10 | - firstInstall: 29588 11 | repeatInstall: 5975 12 | withWarmCacheAndLockfile: 14410 13 | withWarmCache: 26594 14 | withLockfile: 20825 15 | withWarmCacheAndModules: 5592 16 | withWarmModulesAndLockfile: 6066 17 | withWarmModules: 5602 18 | size: 235338171 19 | -------------------------------------------------------------------------------- /results/npm/5.6.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 21346 2 | repeatInstall: 6015 3 | withWarmCacheAndLockfile: 9369 4 | withWarmCache: 18305 5 | withLockfile: 11788 6 | withWarmCacheAndModules: 6310 7 | withWarmModulesAndLockfile: 6851 8 | withWarmModules: 6816 9 | size: 107601039 10 | - firstInstall: 21142 11 | repeatInstall: 5933 12 | withWarmCacheAndLockfile: 9473 13 | withWarmCache: 18074 14 | withLockfile: 12020 15 | withWarmCacheAndModules: 6394 16 | withWarmModulesAndLockfile: 6518 17 | withWarmModules: 6654 18 | size: 107630641 19 | -------------------------------------------------------------------------------- /results/npm/5.6.0/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 25105 2 | repeatInstall: 5569 3 | withWarmCacheAndLockfile: 9554 4 | withWarmCache: 18893 5 | withLockfile: 14664 6 | withWarmCacheAndModules: 6045 7 | withWarmModulesAndLockfile: 6166 8 | withWarmModules: 6333 9 | size: 184493837 10 | - firstInstall: 26418 11 | repeatInstall: 5619 12 | withWarmCacheAndLockfile: 9641 13 | withWarmCache: 18853 14 | withLockfile: 18979 15 | withWarmCacheAndModules: 6199 16 | withWarmModulesAndLockfile: 6294 17 | withWarmModules: 6613 18 | size: 184494764 19 | -------------------------------------------------------------------------------- /results/npm/5.7.1/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 28825 2 | repeatInstall: 6833 3 | withWarmCacheAndLockfile: 15099 4 | withWarmCache: 25065 5 | withLockfile: 18522 6 | withWarmCacheAndModules: 6949 7 | withWarmModulesAndLockfile: 7347 8 | withWarmModules: 6960 9 | size: 235132999 10 | - firstInstall: 27214 11 | repeatInstall: 6607 12 | withWarmCacheAndLockfile: 14147 13 | withWarmCache: 22790 14 | withLockfile: 17185 15 | withWarmCacheAndModules: 6579 16 | withWarmModulesAndLockfile: 6657 17 | withWarmModules: 6405 18 | size: 235180895 19 | -------------------------------------------------------------------------------- /results/npm/5.7.1/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 28140 2 | repeatInstall: 7063 3 | withWarmCacheAndLockfile: 11557 4 | withWarmCache: 20448 5 | withLockfile: 14459 6 | withWarmCacheAndModules: 7921 7 | withWarmModulesAndLockfile: 8089 8 | withWarmModules: 7489 9 | size: 187899026 10 | - firstInstall: 21491 11 | repeatInstall: 6656 12 | withWarmCacheAndLockfile: 10767 13 | withWarmCache: 18640 14 | withLockfile: 25283 15 | withWarmCacheAndModules: 7091 16 | withWarmModulesAndLockfile: 7149 17 | withWarmModules: 7403 18 | size: 187963471 19 | -------------------------------------------------------------------------------- /results/npm/6.1.0/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 34174 2 | repeatInstall: 8474 3 | withWarmCacheAndLockfile: 15105 4 | withWarmCache: 17450 5 | withLockfile: 18364 6 | withWarmCacheAndModules: 7728 7 | withWarmModulesAndLockfile: 8293 8 | withWarmModules: 7714 9 | size: 239150353 10 | - firstInstall: 30793 11 | repeatInstall: 8185 12 | withWarmCacheAndLockfile: 14160 13 | withWarmCache: 16748 14 | withLockfile: 18877 15 | withWarmCacheAndModules: 7432 16 | withWarmModulesAndLockfile: 7989 17 | withWarmModules: 7385 18 | size: 239150353 19 | -------------------------------------------------------------------------------- /results/npm/6.1.0/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 25755 2 | repeatInstall: 6849 3 | withWarmCacheAndLockfile: 12037 4 | withWarmCache: 14456 5 | withLockfile: 16093 6 | withWarmCacheAndModules: 6709 7 | withWarmModulesAndLockfile: 7080 8 | withWarmModules: 6894 9 | size: 189499970 10 | - firstInstall: 22048 11 | repeatInstall: 6981 12 | withWarmCacheAndLockfile: 12682 13 | withWarmCache: 14797 14 | withLockfile: 14557 15 | withWarmCacheAndModules: 7874 16 | withWarmModulesAndLockfile: 7041 17 | withWarmModules: 7193 18 | size: 189499970 19 | -------------------------------------------------------------------------------- /results/pnpm/1.33.0/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 21407 2 | repeatInstall: 1787 3 | withWarmCacheAndLockfile: 9475 4 | withWarmCache: 11762 5 | withLockfile: 22796 6 | withWarmCacheAndModules: 7964 7 | withWarmModulesAndLockfile: 1868 8 | withWarmModules: 18540 9 | size: 196155799 10 | - firstInstall: 22303 11 | repeatInstall: 1884 12 | withWarmCacheAndLockfile: 9085 13 | withWarmCache: 11699 14 | withLockfile: 20548 15 | withWarmCacheAndModules: 7856 16 | withWarmModulesAndLockfile: 1840 17 | withWarmModules: 18494 18 | size: 196185254 19 | -------------------------------------------------------------------------------- /results/pnpm/1.33.0/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 18495 2 | repeatInstall: 1595 3 | withWarmCacheAndLockfile: 7853 4 | withWarmCache: 9275 5 | withLockfile: 18375 6 | withWarmCacheAndModules: 7752 7 | withWarmModulesAndLockfile: 1625 8 | withWarmModules: 15644 9 | size: 194371412 10 | - firstInstall: 18495 11 | repeatInstall: 1655 12 | withWarmCacheAndLockfile: 8141 13 | withWarmCache: 9275 14 | withLockfile: 18634 15 | withWarmCacheAndModules: 6702 16 | withWarmModulesAndLockfile: 1650 17 | withWarmModules: 15661 18 | size: 194372339 19 | -------------------------------------------------------------------------------- /results/pnpm/1.36.1/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 20997 2 | repeatInstall: 1366 3 | withWarmCacheAndLockfile: 8901 4 | withWarmCache: 10801 5 | withLockfile: 22347 6 | withWarmCacheAndModules: 7491 7 | withWarmModulesAndLockfile: 1447 8 | withWarmModules: 17625 9 | size: 196125820 10 | - firstInstall: 20190 11 | repeatInstall: 1298 12 | withWarmCacheAndLockfile: 8216 13 | withWarmCache: 10409 14 | withLockfile: 18977 15 | withWarmCacheAndModules: 6888 16 | withWarmModulesAndLockfile: 1445 17 | withWarmModules: 16628 18 | size: 196137815 19 | -------------------------------------------------------------------------------- /results/pnpm/1.36.1/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 28702 2 | repeatInstall: 1142 3 | withWarmCacheAndLockfile: 8003 4 | withWarmCache: 9749 5 | withLockfile: 18204 6 | withWarmCacheAndModules: 6196 7 | withWarmModulesAndLockfile: 1290 8 | withWarmModules: 15843 9 | size: 197148150 10 | - firstInstall: 18600 11 | repeatInstall: 1194 12 | withWarmCacheAndLockfile: 7577 13 | withWarmCache: 9047 14 | withLockfile: 17334 15 | withWarmCacheAndModules: 6029 16 | withWarmModulesAndLockfile: 1179 17 | withWarmModules: 14718 18 | size: 197164689 19 | -------------------------------------------------------------------------------- /results/pnpm/2.13.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 28742 2 | repeatInstall: 937 3 | withWarmCacheAndLockfile: 4116 4 | withWarmCache: 7298 5 | withLockfile: 26055 6 | withWarmCacheAndModules: 5105 7 | withWarmModulesAndLockfile: 939 8 | withWarmModules: 25669 9 | size: 300877821 10 | - firstInstall: 28800 11 | repeatInstall: 906 12 | withWarmCacheAndLockfile: 4057 13 | withWarmCache: 7618 14 | withLockfile: 27437 15 | withWarmCacheAndModules: 5516 16 | withWarmModulesAndLockfile: 983 17 | withWarmModules: 26375 18 | size: 300877821 19 | -------------------------------------------------------------------------------- /results/pnpm/2.7.0/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 20680 2 | repeatInstall: 1088 3 | withWarmCacheAndLockfile: 6247 4 | withWarmCache: 10715 5 | withLockfile: 17842 6 | withWarmCacheAndModules: 7900 7 | withWarmModulesAndLockfile: 1141 8 | withWarmModules: 17291 9 | size: 200728202 10 | - firstInstall: 27396 11 | repeatInstall: 1213 12 | withWarmCacheAndLockfile: 6641 13 | withWarmCache: 12091 14 | withLockfile: 20630 15 | withWarmCacheAndModules: 10169 16 | withWarmModulesAndLockfile: 1193 17 | withWarmModules: 24447 18 | size: 198543760 19 | -------------------------------------------------------------------------------- /results/pnpm/2.7.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 30334 2 | repeatInstall: 909 3 | withWarmCacheAndLockfile: 8075 4 | withWarmCache: 12394 5 | withLockfile: 31743 6 | withWarmCacheAndModules: 8043 7 | withWarmModulesAndLockfile: 919 8 | withWarmModules: 28270 9 | size: 298867558 10 | - firstInstall: 36131 11 | repeatInstall: 974 12 | withWarmCacheAndLockfile: 8418 13 | withWarmCache: 17729 14 | withLockfile: 33413 15 | withWarmCacheAndModules: 12738 16 | withWarmModulesAndLockfile: 1084 17 | withWarmModules: 34484 18 | size: 298868654 19 | -------------------------------------------------------------------------------- /results/pnpm/2.7.0/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 18550 2 | repeatInstall: 976 3 | withWarmCacheAndLockfile: 5708 4 | withWarmCache: 9376 5 | withLockfile: 17342 6 | withWarmCacheAndModules: 6758 7 | withWarmModulesAndLockfile: 1126 8 | withWarmModules: 15977 9 | size: 193843950 10 | - firstInstall: 24091 11 | repeatInstall: 1025 12 | withWarmCacheAndLockfile: 6074 13 | withWarmCache: 11666 14 | withLockfile: 16976 15 | withWarmCacheAndModules: 14222 16 | withWarmModulesAndLockfile: 1040 17 | withWarmModules: 22769 18 | size: 193874889 19 | -------------------------------------------------------------------------------- /results/pnpm/2.8.0/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 20726 2 | repeatInstall: 1093 3 | withWarmCacheAndLockfile: 4826 4 | withWarmCache: 9571 5 | withLockfile: 16230 6 | withWarmCacheAndModules: 8189 7 | withWarmModulesAndLockfile: 1040 8 | withWarmModules: 17406 9 | size: 198534511 10 | - firstInstall: 17961 11 | repeatInstall: 991 12 | withWarmCacheAndLockfile: 4521 13 | withWarmCache: 12957 14 | withLockfile: 16361 15 | withWarmCacheAndModules: 7617 16 | withWarmModulesAndLockfile: 1042 17 | withWarmModules: 16658 18 | size: 198534511 19 | -------------------------------------------------------------------------------- /results/pnpm/2.8.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 23903 2 | repeatInstall: 890 3 | withWarmCacheAndLockfile: 5940 4 | withWarmCache: 10867 5 | withLockfile: 18951 6 | withWarmCacheAndModules: 7840 7 | withWarmModulesAndLockfile: 883 8 | withWarmModules: 20801 9 | size: 254694858 10 | - firstInstall: 22518 11 | repeatInstall: 869 12 | withWarmCacheAndLockfile: 5007 13 | withWarmCache: 9476 14 | withLockfile: 20180 15 | withWarmCacheAndModules: 8844 16 | withWarmModulesAndLockfile: 866 17 | withWarmModules: 20877 18 | size: 254694858 19 | -------------------------------------------------------------------------------- /results/pnpm/2.8.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 28123 2 | repeatInstall: 868 3 | withWarmCacheAndLockfile: 6571 4 | withWarmCache: 11061 5 | withLockfile: 26060 6 | withWarmCacheAndModules: 10362 7 | withWarmModulesAndLockfile: 839 8 | withWarmModules: 24212 9 | size: 298852744 10 | - firstInstall: 30824 11 | repeatInstall: 884 12 | withWarmCacheAndLockfile: 6599 13 | withWarmCache: 10487 14 | withLockfile: 26711 15 | withWarmCacheAndModules: 9464 16 | withWarmModulesAndLockfile: 885 17 | withWarmModules: 30364 18 | size: 298852744 19 | -------------------------------------------------------------------------------- /results/pnpm/2.8.0/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 18472 2 | repeatInstall: 908 3 | withWarmCacheAndLockfile: 4553 4 | withWarmCache: 10314 5 | withLockfile: 14305 6 | withWarmCacheAndModules: 6450 7 | withWarmModulesAndLockfile: 940 8 | withWarmModules: 14849 9 | size: 193886103 10 | - firstInstall: 16806 11 | repeatInstall: 898 12 | withWarmCacheAndLockfile: 4301 13 | withWarmCache: 10418 14 | withLockfile: 13958 15 | withWarmCacheAndModules: 8010 16 | withWarmModulesAndLockfile: 991 17 | withWarmModules: 15232 18 | size: 193890199 19 | -------------------------------------------------------------------------------- /results/pnpm/3.0.0/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 20862 2 | repeatInstall: 1249 3 | withWarmCacheAndLockfile: 5498 4 | withWarmCache: 10381 5 | withLockfile: 15868 6 | withWarmCacheAndModules: 3014 7 | withWarmModulesAndLockfile: 1269 8 | withWarmModules: 6735 9 | size: 200018748 10 | - firstInstall: 20318 11 | repeatInstall: 1263 12 | withWarmCacheAndLockfile: 5480 13 | withWarmCache: 10106 14 | withLockfile: 16562 15 | withWarmCacheAndModules: 3105 16 | withWarmModulesAndLockfile: 1224 17 | withWarmModules: 7112 18 | size: 200018748 19 | -------------------------------------------------------------------------------- /results/pnpm/3.0.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 13940 2 | repeatInstall: 1010 3 | withWarmCacheAndLockfile: 4225 4 | withWarmCache: 7910 5 | withLockfile: 12461 6 | withWarmCacheAndModules: 1459 7 | withWarmModulesAndLockfile: 1052 8 | withWarmModules: 2329 9 | size: 121143167 10 | - firstInstall: 14551 11 | repeatInstall: 1039 12 | withWarmCacheAndLockfile: 4367 13 | withWarmCache: 7273 14 | withLockfile: 11455 15 | withWarmCacheAndModules: 1496 16 | withWarmModulesAndLockfile: 995 17 | withWarmModules: 2386 18 | size: 121143167 19 | -------------------------------------------------------------------------------- /results/pnpm/3.0.0/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 18577 2 | repeatInstall: 1099 3 | withWarmCacheAndLockfile: 5293 4 | withWarmCache: 8596 5 | withLockfile: 14958 6 | withWarmCacheAndModules: 2791 7 | withWarmModulesAndLockfile: 1114 8 | withWarmModules: 6827 9 | size: 194763886 10 | - firstInstall: 18735 11 | repeatInstall: 1081 12 | withWarmCacheAndLockfile: 5179 13 | withWarmCache: 8418 14 | withLockfile: 14370 15 | withWarmCacheAndModules: 2684 16 | withWarmModulesAndLockfile: 1134 17 | withWarmModules: 6694 18 | size: 194763886 19 | -------------------------------------------------------------------------------- /results/yarn/1.13.0/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 30555 2 | repeatInstall: 855 3 | withWarmCacheAndLockfile: 8901 4 | withWarmCache: 25334 5 | withLockfile: 17997 6 | withWarmCacheAndModules: 17899 7 | withWarmModulesAndLockfile: 843 8 | withWarmModules: 38537 9 | size: 225683799 10 | - firstInstall: 34579 11 | repeatInstall: 860 12 | withWarmCacheAndLockfile: 9328 13 | withWarmCache: 29873 14 | withLockfile: 22734 15 | withWarmCacheAndModules: 26397 16 | withWarmModulesAndLockfile: 807 17 | withWarmModules: 34976 18 | size: 225679703 19 | -------------------------------------------------------------------------------- /results/yarn/1.13.0/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 26546 2 | repeatInstall: 743 3 | withWarmCacheAndLockfile: 4732 4 | withWarmCache: 14400 5 | withLockfile: 13513 6 | withWarmCacheAndModules: 13746 7 | withWarmModulesAndLockfile: 712 8 | withWarmModules: 22685 9 | size: 197036839 10 | - firstInstall: 26693 11 | repeatInstall: 739 12 | withWarmCacheAndLockfile: 4933 13 | withWarmCache: 20084 14 | withLockfile: 13332 15 | withWarmCacheAndModules: 13489 16 | withWarmModulesAndLockfile: 704 17 | withWarmModules: 25941 18 | size: 197036839 19 | -------------------------------------------------------------------------------- /results/yarn/1.3.2/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 37200 2 | repeatInstall: 901 3 | withWarmCacheAndLockfile: 7902 4 | withWarmCache: 26545 5 | withLockfile: 19259 6 | withWarmCacheAndModules: 24651 7 | withWarmModulesAndLockfile: 885 8 | withWarmModules: 36265 9 | size: 221329865 10 | - firstInstall: 38161 11 | repeatInstall: 950 12 | withWarmCacheAndLockfile: 7712 13 | withWarmCache: 25010 14 | withLockfile: 19338 15 | withWarmCacheAndModules: 25113 16 | withWarmModulesAndLockfile: 877 17 | withWarmModules: 44440 18 | size: 221363352 19 | -------------------------------------------------------------------------------- /results/yarn/1.3.2/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 25404 2 | repeatInstall: 862 3 | withWarmCacheAndLockfile: 3628 4 | withWarmCache: 14207 5 | withLockfile: 13699 6 | withWarmCacheAndModules: 14143 7 | withWarmModulesAndLockfile: 868 8 | withWarmModules: 23536 9 | size: 105351132 10 | - firstInstall: 23693 11 | repeatInstall: 852 12 | withWarmCacheAndLockfile: 3625 13 | withWarmCache: 14337 14 | withLockfile: 13390 15 | withWarmCacheAndModules: 13875 16 | withWarmModulesAndLockfile: 830 17 | withWarmModules: 24810 18 | size: 105380707 19 | -------------------------------------------------------------------------------- /results/yarn/1.3.2/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 27919 2 | repeatInstall: 828 3 | withWarmCacheAndLockfile: 4185 4 | withWarmCache: 16666 5 | withLockfile: 13407 6 | withWarmCacheAndModules: 16378 7 | withWarmModulesAndLockfile: 814 8 | withWarmModules: 25605 9 | size: 189742449 10 | - firstInstall: 27959 11 | repeatInstall: 916 12 | withWarmCacheAndLockfile: 4235 13 | withWarmCache: 17647 14 | withLockfile: 15260 15 | withWarmCacheAndModules: 17729 16 | withWarmModulesAndLockfile: 848 17 | withWarmModules: 27419 18 | size: 189747472 19 | -------------------------------------------------------------------------------- /results/yarn/1.7.0/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 62313 2 | repeatInstall: 930 3 | withWarmCacheAndLockfile: 7544 4 | withWarmCache: 34657 5 | withLockfile: 20843 6 | withWarmCacheAndModules: 37732 7 | withWarmModulesAndLockfile: 933 8 | withWarmModules: 54484 9 | size: 225488866 10 | - firstInstall: 46386 11 | repeatInstall: 865 12 | withWarmCacheAndLockfile: 7392 13 | withWarmCache: 52031 14 | withLockfile: 18007 15 | withWarmCacheAndModules: 34308 16 | withWarmModulesAndLockfile: 821 17 | withWarmModules: 53972 18 | size: 225488866 19 | -------------------------------------------------------------------------------- /results/yarn/1.7.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 41475 2 | repeatInstall: 931 3 | withWarmCacheAndLockfile: 7840 4 | withWarmCache: 20785 5 | withLockfile: 25119 6 | withWarmCacheAndModules: 22946 7 | withWarmModulesAndLockfile: 861 8 | withWarmModules: 55506 9 | size: 288921192 10 | - firstInstall: 47067 11 | repeatInstall: 924 12 | withWarmCacheAndLockfile: 8094 13 | withWarmCache: 21858 14 | withLockfile: 24010 15 | withWarmCacheAndModules: 16296 16 | withWarmModulesAndLockfile: 910 17 | withWarmModules: 38956 18 | size: 288921192 19 | -------------------------------------------------------------------------------- /results/yarn/1.7.0/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 38695 2 | repeatInstall: 871 3 | withWarmCacheAndLockfile: 4732 4 | withWarmCache: 22602 5 | withLockfile: 14143 6 | withWarmCacheAndModules: 25584 7 | withWarmModulesAndLockfile: 814 8 | withWarmModules: 35957 9 | size: 194295084 10 | - firstInstall: 45775 11 | repeatInstall: 839 12 | withWarmCacheAndLockfile: 4383 13 | withWarmCache: 26936 14 | withLockfile: 42387 15 | withWarmCacheAndModules: 40911 16 | withWarmModulesAndLockfile: 817 17 | withWarmModules: 47320 18 | size: 194295084 19 | -------------------------------------------------------------------------------- /results/yarn/1.9.4/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 35664 2 | repeatInstall: 935 3 | withWarmCacheAndLockfile: 7970 4 | withWarmCache: 17958 5 | withLockfile: 24330 6 | withWarmCacheAndModules: 14524 7 | withWarmModulesAndLockfile: 937 8 | withWarmModules: 32595 9 | size: 291912021 10 | - firstInstall: 33741 11 | repeatInstall: 964 12 | withWarmCacheAndLockfile: 8317 13 | withWarmCache: 19846 14 | withLockfile: 24430 15 | withWarmCacheAndModules: 16129 16 | withWarmModulesAndLockfile: 900 17 | withWarmModules: 39613 18 | size: 291912021 19 | -------------------------------------------------------------------------------- /results/npm/5.6.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 28026 2 | repeatInstall: 6698 3 | withWarmCacheAndLockfile: 12367 4 | withWarmCache: 23694 5 | withLockfile: 17579 6 | withWarmCacheAndModules: 7096 7 | withWarmModulesAndLockfile: 7363 8 | withWarmModules: 7350 9 | size: 278334810 10 | - firstInstall: 28133 11 | repeatInstall: 6669 12 | withWarmCacheAndLockfile: 12659 13 | withWarmCache: 24809 14 | withLockfile: 17428 15 | withWarmCacheAndModules: 7057 16 | withWarmModulesAndLockfile: 7404 17 | withWarmModules: 7708 18 | size: 278377897 19 | -------------------------------------------------------------------------------- /results/npm/5.7.1/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 29177 2 | repeatInstall: 7804 3 | withWarmCacheAndLockfile: 14075 4 | withWarmCache: 24889 5 | withLockfile: 18898 6 | withWarmCacheAndModules: 8172 7 | withWarmModulesAndLockfile: 8670 8 | withWarmModules: 8965 9 | size: 294446581 10 | - firstInstall: 25198 11 | repeatInstall: 7536 12 | withWarmCacheAndLockfile: 12933 13 | withWarmCache: 23096 14 | withLockfile: 16241 15 | withWarmCacheAndModules: 7626 16 | withWarmModulesAndLockfile: 7934 17 | withWarmModules: 8016 18 | size: 294458619 19 | -------------------------------------------------------------------------------- /results/npm/5.7.1/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 31838 2 | repeatInstall: 6903 3 | withWarmCacheAndLockfile: 14450 4 | withWarmCache: 34386 5 | withLockfile: 21326 6 | withWarmCacheAndModules: 6984 7 | withWarmModulesAndLockfile: 7157 8 | withWarmModules: 7438 9 | size: 287974484 10 | - firstInstall: 22885 11 | repeatInstall: 6517 12 | withWarmCacheAndLockfile: 13618 13 | withWarmCache: 20273 14 | withLockfile: 18377 15 | withWarmCacheAndModules: 7094 16 | withWarmModulesAndLockfile: 6982 17 | withWarmModules: 7177 18 | size: 288605632 19 | -------------------------------------------------------------------------------- /results/npm/6.1.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 25161 2 | repeatInstall: 6891 3 | withWarmCacheAndLockfile: 13581 4 | withWarmCache: 15205 5 | withLockfile: 17210 6 | withWarmCacheAndModules: 7982 7 | withWarmModulesAndLockfile: 7198 8 | withWarmModules: 7032 9 | size: 293432784 10 | - firstInstall: 28541 11 | repeatInstall: 7626 12 | withWarmCacheAndLockfile: 14658 13 | withWarmCache: 16378 14 | withLockfile: 17375 15 | withWarmCacheAndModules: 7143 16 | withWarmModulesAndLockfile: 7578 17 | withWarmModules: 7445 18 | size: 293432784 19 | -------------------------------------------------------------------------------- /results/npm/6.1.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 26242 2 | repeatInstall: 6674 3 | withWarmCacheAndLockfile: 14432 4 | withWarmCache: 16249 5 | withLockfile: 17259 6 | withWarmCacheAndModules: 6948 7 | withWarmModulesAndLockfile: 6655 8 | withWarmModules: 7592 9 | size: 290037453 10 | - firstInstall: 35657 11 | repeatInstall: 6682 12 | withWarmCacheAndLockfile: 13715 13 | withWarmCache: 14990 14 | withLockfile: 15829 15 | withWarmCacheAndModules: 6405 16 | withWarmModulesAndLockfile: 6387 17 | withWarmModules: 6610 18 | size: 290037453 19 | -------------------------------------------------------------------------------- /results/npm/6.3.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 23061 2 | repeatInstall: 6784 3 | withWarmCacheAndLockfile: 14630 4 | withWarmCache: 16174 5 | withLockfile: 17326 6 | withWarmCacheAndModules: 6826 7 | withWarmModulesAndLockfile: 6876 8 | withWarmModules: 6965 9 | size: 292932917 10 | - firstInstall: 22629 11 | repeatInstall: 6657 12 | withWarmCacheAndLockfile: 14636 13 | withWarmCache: 16039 14 | withLockfile: 19114 15 | withWarmCacheAndModules: 6585 16 | withWarmModulesAndLockfile: 6590 17 | withWarmModules: 6980 18 | size: 292932917 19 | -------------------------------------------------------------------------------- /results/pnpm/1.33.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 17406 2 | repeatInstall: 1559 3 | withWarmCacheAndLockfile: 7857 4 | withWarmCache: 9273 5 | withLockfile: 16300 6 | withWarmCacheAndModules: 7042 7 | withWarmModulesAndLockfile: 1584 8 | withWarmModules: 13855 9 | size: 121084822 10 | - firstInstall: 16691 11 | repeatInstall: 1524 12 | withWarmCacheAndLockfile: 7631 13 | withWarmCache: 8946 14 | withLockfile: 16794 15 | withWarmCacheAndModules: 6246 16 | withWarmModulesAndLockfile: 1583 17 | withWarmModules: 14756 18 | size: 121114461 19 | -------------------------------------------------------------------------------- /results/pnpm/1.36.1/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 29161 2 | repeatInstall: 1125 3 | withWarmCacheAndLockfile: 10660 4 | withWarmCache: 12116 5 | withLockfile: 30886 6 | withWarmCacheAndModules: 8144 7 | withWarmModulesAndLockfile: 1142 8 | withWarmModules: 24748 9 | size: 301829014 10 | - firstInstall: 28131 11 | repeatInstall: 1084 12 | withWarmCacheAndLockfile: 10168 13 | withWarmCache: 11719 14 | withLockfile: 28416 15 | withWarmCacheAndModules: 7293 16 | withWarmModulesAndLockfile: 1156 17 | withWarmModules: 23331 18 | size: 302471854 19 | -------------------------------------------------------------------------------- /results/pnpm/2.7.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 23793 2 | repeatInstall: 1044 3 | withWarmCacheAndLockfile: 7320 4 | withWarmCache: 11104 5 | withLockfile: 20586 6 | withWarmCacheAndModules: 7875 7 | withWarmModulesAndLockfile: 1022 8 | withWarmModules: 19846 9 | size: 254671817 10 | - firstInstall: 30705 11 | repeatInstall: 937 12 | withWarmCacheAndLockfile: 6871 13 | withWarmCache: 15092 14 | withLockfile: 19793 15 | withWarmCacheAndModules: 10333 16 | withWarmModulesAndLockfile: 991 17 | withWarmModules: 23453 18 | size: 254702756 19 | -------------------------------------------------------------------------------- /results/pnpm/3.0.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 20852 2 | repeatInstall: 1061 3 | withWarmCacheAndLockfile: 6203 4 | withWarmCache: 10582 5 | withLockfile: 18905 6 | withWarmCacheAndModules: 7382 7 | withWarmModulesAndLockfile: 1229 8 | withWarmModules: 16910 9 | size: 254590140 10 | - firstInstall: 21299 11 | repeatInstall: 1118 12 | withWarmCacheAndLockfile: 6214 13 | withWarmCache: 10235 14 | withLockfile: 17531 15 | withWarmCacheAndModules: 7877 16 | withWarmModulesAndLockfile: 1253 17 | withWarmModules: 16987 18 | size: 254590140 19 | -------------------------------------------------------------------------------- /results/yarn/1.13.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 30883 2 | repeatInstall: 791 3 | withWarmCacheAndLockfile: 5849 4 | withWarmCache: 15909 5 | withLockfile: 17872 6 | withWarmCacheAndModules: 13824 7 | withWarmModulesAndLockfile: 793 8 | withWarmModules: 27388 9 | size: 287175872 10 | - firstInstall: 27263 11 | repeatInstall: 791 12 | withWarmCacheAndLockfile: 5921 13 | withWarmCache: 13455 14 | withLockfile: 17456 15 | withWarmCacheAndModules: 11761 16 | withWarmModulesAndLockfile: 740 17 | withWarmModules: 26036 18 | size: 287175872 19 | -------------------------------------------------------------------------------- /results/yarn/1.13.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 21224 2 | repeatInstall: 763 3 | withWarmCacheAndLockfile: 3830 4 | withWarmCache: 13674 5 | withLockfile: 11333 6 | withWarmCacheAndModules: 13253 7 | withWarmModulesAndLockfile: 700 8 | withWarmModules: 27281 9 | size: 115295625 10 | - firstInstall: 18638 11 | repeatInstall: 769 12 | withWarmCacheAndLockfile: 3747 13 | withWarmCache: 12409 14 | withLockfile: 11646 15 | withWarmCacheAndModules: 10447 16 | withWarmModulesAndLockfile: 738 17 | withWarmModules: 17711 18 | size: 115295625 19 | -------------------------------------------------------------------------------- /results/yarn/1.3.2/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 44063 2 | repeatInstall: 1019 3 | withWarmCacheAndLockfile: 5810 4 | withWarmCache: 25973 5 | withLockfile: 25477 6 | withWarmCacheAndModules: 27305 7 | withWarmModulesAndLockfile: 973 8 | withWarmModules: 45916 9 | size: 278496223 10 | - firstInstall: 47124 11 | repeatInstall: 1007 12 | withWarmCacheAndLockfile: 5664 13 | withWarmCache: 26089 14 | withLockfile: 24317 15 | withWarmCacheAndModules: 25572 16 | withWarmModulesAndLockfile: 955 17 | withWarmModules: 42989 18 | size: 278539276 19 | -------------------------------------------------------------------------------- /results/yarn/1.7.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 36613 2 | repeatInstall: 866 3 | withWarmCacheAndLockfile: 5381 4 | withWarmCache: 28414 5 | withLockfile: 17534 6 | withWarmCacheAndModules: 23594 7 | withWarmModulesAndLockfile: 879 8 | withWarmModules: 39029 9 | size: 288563973 10 | - firstInstall: 37007 11 | repeatInstall: 1020 12 | withWarmCacheAndLockfile: 5714 13 | withWarmCache: 31831 14 | withLockfile: 18353 15 | withWarmCacheAndModules: 23798 16 | withWarmModulesAndLockfile: 920 17 | withWarmModules: 37046 18 | size: 288563973 19 | -------------------------------------------------------------------------------- /results/pnpm/1.33.0/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 28069 2 | repeatInstall: 1534 3 | withWarmCacheAndLockfile: 10060 4 | withWarmCache: 12065 5 | withLockfile: 24719 6 | withWarmCacheAndModules: 7919 7 | withWarmModulesAndLockfile: 1666 8 | withWarmModules: 21809 9 | size: 255350216 10 | - firstInstall: 24889 11 | repeatInstall: 1648 12 | withWarmCacheAndLockfile: 10517 13 | withWarmCache: 12172 14 | withLockfile: 24713 15 | withWarmCacheAndModules: 8001 16 | withWarmModulesAndLockfile: 1748 17 | withWarmModules: 21069 18 | size: 255393333 19 | -------------------------------------------------------------------------------- /results/pnpm/1.36.1/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 26305 2 | repeatInstall: 1168 3 | withWarmCacheAndLockfile: 10440 4 | withWarmCache: 12107 5 | withLockfile: 26126 6 | withWarmCacheAndModules: 8509 7 | withWarmModulesAndLockfile: 1183 8 | withWarmModules: 20251 9 | size: 261403353 10 | - firstInstall: 23356 11 | repeatInstall: 1124 12 | withWarmCacheAndLockfile: 9427 13 | withWarmCache: 11200 14 | withLockfile: 22649 15 | withWarmCacheAndModules: 7495 16 | withWarmModulesAndLockfile: 1157 17 | withWarmModules: 19458 18 | size: 261414986 19 | -------------------------------------------------------------------------------- /results/yarn_pnp/1.21.1/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 16150 2 | repeatInstall: 0 3 | withWarmCacheAndLockfile: 1776 4 | withWarmCache: 6290 5 | withLockfile: 10557 6 | withWarmCacheAndModules: 0 7 | withWarmModulesAndLockfile: 0 8 | withWarmModules: 0 9 | updatedDependencies: 16238 10 | size: 135431940 11 | - firstInstall: 15635 12 | repeatInstall: 0 13 | withWarmCacheAndLockfile: 1859 14 | withWarmCache: 6177 15 | withLockfile: 10771 16 | withWarmCacheAndModules: 0 17 | withWarmModulesAndLockfile: 0 18 | withWarmModules: 0 19 | updatedDependencies: 16019 20 | size: 135436116 21 | -------------------------------------------------------------------------------- /results/yarn_pnp/1.21.1/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 59117 2 | repeatInstall: 0 3 | withWarmCacheAndLockfile: 1827 4 | withWarmCache: 13060 5 | withLockfile: 12966 6 | withWarmCacheAndModules: 0 7 | withWarmModulesAndLockfile: 0 8 | withWarmModules: 0 9 | updatedDependencies: 26654 10 | size: 237507451 11 | - firstInstall: 26335 12 | repeatInstall: 0 13 | withWarmCacheAndLockfile: 2342 14 | withWarmCache: 23244 15 | withLockfile: 12994 16 | withWarmCacheAndModules: 0 17 | withWarmModulesAndLockfile: 0 18 | withWarmModules: 0 19 | updatedDependencies: 23327 20 | size: 237507451 21 | -------------------------------------------------------------------------------- /results/yarn_pnp/1.21.1/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 23305 2 | repeatInstall: 0 3 | withWarmCacheAndLockfile: 1949 4 | withWarmCache: 7740 5 | withLockfile: 15295 6 | withWarmCacheAndModules: 0 7 | withWarmModulesAndLockfile: 0 8 | withWarmModules: 0 9 | updatedDependencies: 13526 10 | size: 314929776 11 | - firstInstall: 23124 12 | repeatInstall: 0 13 | withWarmCacheAndLockfile: 1861 14 | withWarmCache: 7798 15 | withLockfile: 15150 16 | withWarmCacheAndModules: 0 17 | withWarmModulesAndLockfile: 0 18 | withWarmModules: 0 19 | updatedDependencies: 13014 20 | size: 314929776 21 | -------------------------------------------------------------------------------- /results/yarn_pnp/1.21.1/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 14276 2 | repeatInstall: 0 3 | withWarmCacheAndLockfile: 1671 4 | withWarmCache: 7296 5 | withLockfile: 9599 6 | withWarmCacheAndModules: 0 7 | withWarmModulesAndLockfile: 0 8 | withWarmModules: 0 9 | updatedDependencies: 12026 10 | size: 150332259 11 | - firstInstall: 15411 12 | repeatInstall: 0 13 | withWarmCacheAndLockfile: 1689 14 | withWarmCache: 6604 15 | withLockfile: 10412 16 | withWarmCacheAndModules: 0 17 | withWarmModulesAndLockfile: 0 18 | withWarmModules: 0 19 | updatedDependencies: 12288 20 | size: 150332339 21 | -------------------------------------------------------------------------------- /results/yarn_pnp/1.21.1/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 20650 2 | repeatInstall: 0 3 | withWarmCacheAndLockfile: 1837 4 | withWarmCache: 11850 5 | withLockfile: 12714 6 | withWarmCacheAndModules: 0 7 | withWarmModulesAndLockfile: 0 8 | withWarmModules: 0 9 | updatedDependencies: 21567 10 | size: 246970785 11 | - firstInstall: 20728 12 | repeatInstall: 0 13 | withWarmCacheAndLockfile: 1740 14 | withWarmCache: 9086 15 | withLockfile: 11982 16 | withWarmCacheAndModules: 0 17 | withWarmModulesAndLockfile: 0 18 | withWarmModules: 0 19 | updatedDependencies: 19688 20 | size: 246970785 21 | -------------------------------------------------------------------------------- /results/yarn/1.21.1/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 19857 2 | repeatInstall: 801 3 | withWarmCacheAndLockfile: 5409 4 | withWarmCache: 9933 5 | withLockfile: 14360 6 | withWarmCacheAndModules: 8524 7 | withWarmModulesAndLockfile: 797 8 | withWarmModules: 20955 9 | updatedDependencies: 19631 10 | size: 114214168 11 | - firstInstall: 20501 12 | repeatInstall: 918 13 | withWarmCacheAndLockfile: 5879 14 | withWarmCache: 10145 15 | withLockfile: 14336 16 | withWarmCacheAndModules: 7869 17 | withWarmModulesAndLockfile: 871 18 | withWarmModules: 20750 19 | updatedDependencies: 26151 20 | size: 114214238 21 | -------------------------------------------------------------------------------- /results/npm/6.13.6/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 6507 2 | repeatInstall: 7434 3 | withWarmCacheAndLockfile: 22552 4 | withWarmCache: 36829 5 | withLockfile: 23471 6 | withWarmCacheAndModules: 7216 7 | withWarmModulesAndLockfile: 6772 8 | withWarmModules: 6708 9 | updatedDependencies: 7028 10 | size: 239983516 11 | - firstInstall: 6662 12 | repeatInstall: 7309 13 | withWarmCacheAndLockfile: 21066 14 | withWarmCache: 29107 15 | withLockfile: 21218 16 | withWarmCacheAndModules: 6728 17 | withWarmModulesAndLockfile: 6741 18 | withWarmModules: 6192 19 | updatedDependencies: 6614 20 | size: 239983516 21 | -------------------------------------------------------------------------------- /results/npm/6.13.6/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 23660 2 | repeatInstall: 6653 3 | withWarmCacheAndLockfile: 16200 4 | withWarmCache: 23899 5 | withLockfile: 20534 6 | withWarmCacheAndModules: 7875 7 | withWarmModulesAndLockfile: 7085 8 | withWarmModules: 7310 9 | updatedDependencies: 7245 10 | size: 143088530 11 | - firstInstall: 25694 12 | repeatInstall: 6968 13 | withWarmCacheAndLockfile: 15997 14 | withWarmCache: 21880 15 | withLockfile: 19655 16 | withWarmCacheAndModules: 6898 17 | withWarmModulesAndLockfile: 7506 18 | withWarmModules: 7459 19 | updatedDependencies: 7957 20 | size: 143088600 21 | -------------------------------------------------------------------------------- /results/pnpm/4.7.1/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 22405 2 | repeatInstall: 1668 3 | withWarmCacheAndLockfile: 7643 4 | withWarmCache: 11840 5 | withLockfile: 17726 6 | withWarmCacheAndModules: 3547 7 | withWarmModulesAndLockfile: 1462 8 | withWarmModules: 7311 9 | updatedDependencies: 17037 10 | size: 200845810 11 | - firstInstall: 22426 12 | repeatInstall: 1594 13 | withWarmCacheAndLockfile: 7437 14 | withWarmCache: 12807 15 | withLockfile: 19027 16 | withWarmCacheAndModules: 3456 17 | withWarmModulesAndLockfile: 1513 18 | withWarmModules: 7706 19 | updatedDependencies: 16770 20 | size: 200845810 21 | -------------------------------------------------------------------------------- /results/pnpm/4.7.1/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 18010 2 | repeatInstall: 1674 3 | withWarmCacheAndLockfile: 6744 4 | withWarmCache: 10467 5 | withLockfile: 16023 6 | withWarmCacheAndModules: 1998 7 | withWarmModulesAndLockfile: 1342 8 | withWarmModules: 4405 9 | updatedDependencies: 15774 10 | size: 111240788 11 | - firstInstall: 18164 12 | repeatInstall: 1344 13 | withWarmCacheAndLockfile: 6986 14 | withWarmCache: 12288 15 | withLockfile: 17341 16 | withWarmCacheAndModules: 2017 17 | withWarmModulesAndLockfile: 1404 18 | withWarmModules: 4520 19 | updatedDependencies: 16243 20 | size: 111240858 21 | -------------------------------------------------------------------------------- /fixtures/ember-quickstart/testem.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | test_page: 'tests/index.html?hidepassed', 3 | disable_watching: true, 4 | launch_in_ci: [ 5 | 'Chrome' 6 | ], 7 | launch_in_dev: [ 8 | 'Chrome' 9 | ], 10 | browser_args: { 11 | Chrome: { 12 | mode: 'ci', 13 | args: [ 14 | // --no-sandbox is needed when running Chrome inside a container 15 | process.env.TRAVIS ? '--no-sandbox' : null, 16 | 17 | '--disable-gpu', 18 | '--headless', 19 | '--remote-debugging-port=0', 20 | '--window-size=1440,900' 21 | ].filter(Boolean) 22 | } 23 | } 24 | }; 25 | -------------------------------------------------------------------------------- /fixtures/react-app/src/App.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import logo from './logo.svg'; 3 | import './App.css'; 4 | 5 | class App extends Component { 6 | render() { 7 | return ( 8 |
9 |
10 | logo 11 |

Welcome to React

12 |
13 |

14 | To get started, edit src/App.js and save to reload. 15 |

16 |
17 | ); 18 | } 19 | } 20 | 21 | export default App; 22 | -------------------------------------------------------------------------------- /results/npm/6.13.6/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 7426 2 | repeatInstall: 7720 3 | withWarmCacheAndLockfile: 21183 4 | withWarmCache: 25869 5 | withLockfile: 20870 6 | withWarmCacheAndModules: 7137 7 | withWarmModulesAndLockfile: 7265 8 | withWarmModules: 7567 9 | updatedDependencies: 7356 10 | size: 302050563 11 | - firstInstall: 7388 12 | repeatInstall: 7798 13 | withWarmCacheAndLockfile: 20800 14 | withWarmCache: 23902 15 | withLockfile: 21218 16 | withWarmCacheAndModules: 7145 17 | withWarmModulesAndLockfile: 7336 18 | withWarmModules: 7032 19 | updatedDependencies: 7501 20 | size: 302050633 21 | -------------------------------------------------------------------------------- /results/npm/6.13.6/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 23848 2 | repeatInstall: 5781 3 | withWarmCacheAndLockfile: 12083 4 | withWarmCache: 16212 5 | withLockfile: 14609 6 | withWarmCacheAndModules: 5700 7 | withWarmModulesAndLockfile: 5830 8 | withWarmModules: 5841 9 | updatedDependencies: 5913 10 | size: 118126258 11 | - firstInstall: 20157 12 | repeatInstall: 6069 13 | withWarmCacheAndLockfile: 12233 14 | withWarmCache: 17488 15 | withLockfile: 15143 16 | withWarmCacheAndModules: 5950 17 | withWarmModulesAndLockfile: 6136 18 | withWarmModules: 6321 19 | updatedDependencies: 6286 20 | size: 118126328 21 | -------------------------------------------------------------------------------- /results/npm/6.13.6/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 25209 2 | repeatInstall: 6212 3 | withWarmCacheAndLockfile: 14172 4 | withWarmCache: 19453 5 | withLockfile: 19221 6 | withWarmCacheAndModules: 6718 7 | withWarmModulesAndLockfile: 6958 8 | withWarmModules: 6950 9 | updatedDependencies: 7005 10 | size: 196942081 11 | - firstInstall: 25798 12 | repeatInstall: 6598 13 | withWarmCacheAndLockfile: 14730 14 | withWarmCache: 20621 15 | withLockfile: 17583 16 | withWarmCacheAndModules: 6285 17 | withWarmModulesAndLockfile: 6372 18 | withWarmModules: 6843 19 | updatedDependencies: 6461 20 | size: 196942081 21 | -------------------------------------------------------------------------------- /results/pnpm/4.7.1/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 23362 2 | repeatInstall: 1558 3 | withWarmCacheAndLockfile: 8627 4 | withWarmCache: 12667 5 | withLockfile: 20531 6 | withWarmCacheAndModules: 3444 7 | withWarmModulesAndLockfile: 1409 8 | withWarmModules: 9036 9 | updatedDependencies: 16423 10 | size: 259498266 11 | - firstInstall: 24771 12 | repeatInstall: 1719 13 | withWarmCacheAndLockfile: 8557 14 | withWarmCache: 13291 15 | withLockfile: 22533 16 | withWarmCacheAndModules: 3780 17 | withWarmModulesAndLockfile: 1524 18 | withWarmModules: 9913 19 | updatedDependencies: 17207 20 | size: 259498266 21 | -------------------------------------------------------------------------------- /results/pnpm/4.7.1/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 16141 2 | repeatInstall: 1207 3 | withWarmCacheAndLockfile: 5694 4 | withWarmCache: 9184 5 | withLockfile: 15932 6 | withWarmCacheAndModules: 1381 7 | withWarmModulesAndLockfile: 1279 8 | withWarmModules: 2513 9 | updatedDependencies: 14303 10 | size: 123768714 11 | - firstInstall: 16286 12 | repeatInstall: 1346 13 | withWarmCacheAndLockfile: 5911 14 | withWarmCache: 10012 15 | withLockfile: 14594 16 | withWarmCacheAndModules: 1426 17 | withWarmModulesAndLockfile: 1370 18 | withWarmModules: 2589 19 | updatedDependencies: 13998 20 | size: 123768784 21 | -------------------------------------------------------------------------------- /results/pnpm/4.7.1/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 21045 2 | repeatInstall: 1558 3 | withWarmCacheAndLockfile: 7083 4 | withWarmCache: 10855 5 | withLockfile: 18859 6 | withWarmCacheAndModules: 2660 7 | withWarmModulesAndLockfile: 1312 8 | withWarmModules: 7076 9 | updatedDependencies: 13945 10 | size: 200185189 11 | - firstInstall: 19033 12 | repeatInstall: 1299 13 | withWarmCacheAndLockfile: 6771 14 | withWarmCache: 10912 15 | withLockfile: 17120 16 | withWarmCacheAndModules: 2641 17 | withWarmModulesAndLockfile: 1296 18 | withWarmModules: 6995 19 | updatedDependencies: 13429 20 | size: 200185189 21 | -------------------------------------------------------------------------------- /results/yarn/1.21.1/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 36194 2 | repeatInstall: 775 3 | withWarmCacheAndLockfile: 10274 4 | withWarmCache: 23832 5 | withLockfile: 21825 6 | withWarmCacheAndModules: 15489 7 | withWarmModulesAndLockfile: 743 8 | withWarmModules: 33030 9 | updatedDependencies: 36794 10 | size: 225994378 11 | - firstInstall: 33883 12 | repeatInstall: 844 13 | withWarmCacheAndLockfile: 11184 14 | withWarmCache: 20546 15 | withLockfile: 22633 16 | withWarmCacheAndModules: 15667 17 | withWarmModulesAndLockfile: 831 18 | withWarmModules: 31390 19 | updatedDependencies: 31344 20 | size: 225990282 21 | -------------------------------------------------------------------------------- /results/yarn/1.21.1/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 27291 2 | repeatInstall: 930 3 | withWarmCacheAndLockfile: 7421 4 | withWarmCache: 14471 5 | withLockfile: 19990 6 | withWarmCacheAndModules: 9395 7 | withWarmModulesAndLockfile: 753 8 | withWarmModules: 25721 9 | updatedDependencies: 20184 10 | size: 290635241 11 | - firstInstall: 26558 12 | repeatInstall: 737 13 | withWarmCacheAndLockfile: 7566 14 | withWarmCache: 13818 15 | withLockfile: 19973 16 | withWarmCacheAndModules: 10230 17 | withWarmModulesAndLockfile: 746 18 | withWarmModules: 25904 19 | updatedDependencies: 20647 20 | size: 290635311 21 | -------------------------------------------------------------------------------- /results/yarn/1.21.1/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 19893 2 | repeatInstall: 698 3 | withWarmCacheAndLockfile: 5147 4 | withWarmCache: 10101 5 | withLockfile: 12170 6 | withWarmCacheAndModules: 8279 7 | withWarmModulesAndLockfile: 692 8 | withWarmModules: 17058 9 | updatedDependencies: 21119 10 | size: 117539117 11 | - firstInstall: 19122 12 | repeatInstall: 690 13 | withWarmCacheAndLockfile: 4644 14 | withWarmCache: 10760 15 | withLockfile: 13172 16 | withWarmCacheAndModules: 8669 17 | withWarmModulesAndLockfile: 679 18 | withWarmModules: 17189 19 | updatedDependencies: 18737 20 | size: 117539187 21 | -------------------------------------------------------------------------------- /results/yarn/1.21.1/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 28088 2 | repeatInstall: 768 3 | withWarmCacheAndLockfile: 6672 4 | withWarmCache: 14509 5 | withLockfile: 16475 6 | withWarmCacheAndModules: 12890 7 | withWarmModulesAndLockfile: 725 8 | withWarmModules: 28360 9 | updatedDependencies: 24965 10 | size: 202606871 11 | - firstInstall: 22951 12 | repeatInstall: 697 13 | withWarmCacheAndLockfile: 5629 14 | withWarmCache: 16121 15 | withLockfile: 15665 16 | withWarmCacheAndModules: 12953 17 | withWarmModulesAndLockfile: 678 18 | withWarmModules: 22694 19 | updatedDependencies: 23632 20 | size: 202610967 21 | -------------------------------------------------------------------------------- /results/pnpm/5.0.0-alpha.3/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 16875 2 | repeatInstall: 1003 3 | withWarmCacheAndLockfile: 5547 4 | withWarmCache: 8395 5 | withLockfile: 11605 6 | withWarmCacheAndModules: 1522 7 | withWarmModulesAndLockfile: 12133 8 | withWarmModules: 2973 9 | updatedDependencies: 14131 10 | size: 121997638 11 | - firstInstall: 11848 12 | repeatInstall: 1004 13 | withWarmCacheAndLockfile: 5275 14 | withWarmCache: 7612 15 | withLockfile: 10377 16 | withWarmCacheAndModules: 1371 17 | withWarmModulesAndLockfile: 9404 18 | withWarmModules: 2442 19 | updatedDependencies: 10438 20 | size: 121997638 21 | -------------------------------------------------------------------------------- /fixtures/angular-quickstart/.gitignore: -------------------------------------------------------------------------------- 1 | # See http://help.github.com/ignore-files/ for more about ignoring files. 2 | 3 | # compiled output 4 | /dist 5 | /dist-server 6 | /tmp 7 | /out-tsc 8 | 9 | # dependencies 10 | /node_modules 11 | 12 | # IDEs and editors 13 | /.idea 14 | .project 15 | .classpath 16 | .c9/ 17 | *.launch 18 | .settings/ 19 | *.sublime-workspace 20 | 21 | # IDE - VSCode 22 | .vscode/* 23 | !.vscode/settings.json 24 | !.vscode/tasks.json 25 | !.vscode/launch.json 26 | !.vscode/extensions.json 27 | 28 | # misc 29 | /.sass-cache 30 | /connect.lock 31 | /coverage 32 | /libpeerconnection.log 33 | npm-debug.log 34 | testem.log 35 | /typings 36 | 37 | # e2e 38 | /e2e/*.js 39 | /e2e/*.map 40 | 41 | # System Files 42 | .DS_Store 43 | Thumbs.db 44 | -------------------------------------------------------------------------------- /fixtures/angular-quickstart/src/test.ts: -------------------------------------------------------------------------------- 1 | // This file is required by karma.conf.js and loads recursively all the .spec and framework files 2 | 3 | import 'zone.js/dist/zone-testing'; 4 | import { getTestBed } from '@angular/core/testing'; 5 | import { 6 | BrowserDynamicTestingModule, 7 | platformBrowserDynamicTesting 8 | } from '@angular/platform-browser-dynamic/testing'; 9 | 10 | declare const require: any; 11 | 12 | // First, initialize the Angular testing environment. 13 | getTestBed().initTestEnvironment( 14 | BrowserDynamicTestingModule, 15 | platformBrowserDynamicTesting() 16 | ); 17 | // Then we find all the tests. 18 | const context = require.context('./', true, /\.spec\.ts$/); 19 | // And load the modules. 20 | context.keys().map(context); 21 | -------------------------------------------------------------------------------- /fixtures/ember-quickstart/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | parserOptions: { 4 | ecmaVersion: 2017, 5 | sourceType: 'module' 6 | }, 7 | plugins: [ 8 | 'ember' 9 | ], 10 | extends: [ 11 | 'eslint:recommended', 12 | 'plugin:ember/recommended' 13 | ], 14 | env: { 15 | browser: true 16 | }, 17 | rules: { 18 | }, 19 | overrides: [ 20 | // node files 21 | { 22 | files: [ 23 | 'testem.js', 24 | 'ember-cli-build.js', 25 | 'config/**/*.js', 26 | 'lib/*/index.js' 27 | ], 28 | parserOptions: { 29 | sourceType: 'script', 30 | ecmaVersion: 2015 31 | }, 32 | env: { 33 | browser: false, 34 | node: true 35 | } 36 | } 37 | ] 38 | }; 39 | -------------------------------------------------------------------------------- /results/pnpm/1.24.2/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 11042 2 | repeatInstall: 883 3 | withWarmCacheAndLockfile: 3504 4 | withWarmCache: 3690 5 | withLockfile: 11227 6 | withWarmCacheAndModules: 2501 7 | withWarmModulesAndLockfile: 886 8 | withWarmModules: 8797 9 | size: 96976471 10 | - firstInstall: 10850 11 | repeatInstall: 854 12 | withWarmCacheAndLockfile: 3505 13 | withWarmCache: 3814 14 | withLockfile: 10084 15 | withWarmCacheAndModules: 2469 16 | withWarmModulesAndLockfile: 894 17 | withWarmModules: 8725 18 | size: 96976471 19 | - firstInstall: 10482 20 | repeatInstall: 864 21 | withWarmCacheAndLockfile: 3535 22 | withWarmCache: 3742 23 | withLockfile: 10096 24 | withWarmCacheAndModules: 2461 25 | withWarmModulesAndLockfile: 871 26 | withWarmModules: 8654 27 | size: 96976471 28 | -------------------------------------------------------------------------------- /results/pnpm/2.13.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 16694 2 | repeatInstall: 897 3 | withWarmCacheAndLockfile: 3107 4 | withWarmCache: 6768 5 | withLockfile: 13982 6 | withWarmCacheAndModules: 5528 7 | withWarmModulesAndLockfile: 902 8 | withWarmModules: 14288 9 | size: 106953558 10 | - firstInstall: 15755 11 | repeatInstall: 849 12 | withWarmCacheAndLockfile: 3177 13 | withWarmCache: 6589 14 | withLockfile: 13300 15 | withWarmCacheAndModules: 5533 16 | withWarmModulesAndLockfile: 896 17 | withWarmModules: 13625 18 | size: 106953558 19 | - firstInstall: 17945 20 | repeatInstall: 873 21 | withWarmCacheAndLockfile: 3528 22 | withWarmCache: 7326 23 | withLockfile: 15715 24 | withWarmCacheAndModules: 6231 25 | withWarmModulesAndLockfile: 937 26 | withWarmModules: 15659 27 | size: 106953558 28 | -------------------------------------------------------------------------------- /results/pnpm/2.15.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 16507 2 | repeatInstall: 866 3 | withWarmCacheAndLockfile: 4772 4 | withWarmCache: 8493 5 | withLockfile: 13929 6 | withWarmCacheAndModules: 6875 7 | withWarmModulesAndLockfile: 932 8 | withWarmModules: 14344 9 | size: 105135733 10 | - firstInstall: 16341 11 | repeatInstall: 884 12 | withWarmCacheAndLockfile: 4781 13 | withWarmCache: 8380 14 | withLockfile: 13671 15 | withWarmCacheAndModules: 6862 16 | withWarmModulesAndLockfile: 879 17 | withWarmModules: 14788 18 | size: 105135733 19 | - firstInstall: 16718 20 | repeatInstall: 855 21 | withWarmCacheAndLockfile: 4734 22 | withWarmCache: 8596 23 | withLockfile: 13150 24 | withWarmCacheAndModules: 6656 25 | withWarmModulesAndLockfile: 855 26 | withWarmModules: 14370 27 | size: 105135733 28 | -------------------------------------------------------------------------------- /results/pnpm/2.17.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 14490 2 | repeatInstall: 874 3 | withWarmCacheAndLockfile: 4546 4 | withWarmCache: 7992 5 | withLockfile: 12544 6 | withWarmCacheAndModules: 6669 7 | withWarmModulesAndLockfile: 875 8 | withWarmModules: 13044 9 | size: 104747397 10 | - firstInstall: 14339 11 | repeatInstall: 846 12 | withWarmCacheAndLockfile: 4401 13 | withWarmCache: 7811 14 | withLockfile: 12255 15 | withWarmCacheAndModules: 6723 16 | withWarmModulesAndLockfile: 865 17 | withWarmModules: 13013 18 | size: 104747397 19 | - firstInstall: 14330 20 | repeatInstall: 853 21 | withWarmCacheAndLockfile: 4442 22 | withWarmCache: 7792 23 | withLockfile: 12242 24 | withWarmCacheAndModules: 6541 25 | withWarmModulesAndLockfile: 852 26 | withWarmModules: 12828 27 | size: 104747397 28 | -------------------------------------------------------------------------------- /results/pnpm/2.22.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 21376 2 | repeatInstall: 1275 3 | withWarmCacheAndLockfile: 5300 4 | withWarmCache: 9932 5 | withLockfile: 15232 6 | withWarmCacheAndModules: 2265 7 | withWarmModulesAndLockfile: 988 8 | withWarmModules: 4939 9 | size: 107433499 10 | - firstInstall: 19681 11 | repeatInstall: 1094 12 | withWarmCacheAndLockfile: 5496 13 | withWarmCache: 9873 14 | withLockfile: 15082 15 | withWarmCacheAndModules: 2234 16 | withWarmModulesAndLockfile: 989 17 | withWarmModules: 5040 18 | size: 107433499 19 | - firstInstall: 17765 20 | repeatInstall: 1015 21 | withWarmCacheAndLockfile: 5130 22 | withWarmCache: 9976 23 | withLockfile: 24949 24 | withWarmCacheAndModules: 2216 25 | withWarmModulesAndLockfile: 932 26 | withWarmModules: 4551 27 | size: 107433499 28 | -------------------------------------------------------------------------------- /results/yarn/1.10.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 15338 2 | repeatInstall: 779 3 | withWarmCacheAndLockfile: 4149 4 | withWarmCache: 8276 5 | withLockfile: 11750 6 | withWarmCacheAndModules: 6474 7 | withWarmModulesAndLockfile: 787 8 | withWarmModules: 14924 9 | size: 105486310 10 | - firstInstall: 15423 11 | repeatInstall: 829 12 | withWarmCacheAndLockfile: 4244 13 | withWarmCache: 11130 14 | withLockfile: 11606 15 | withWarmCacheAndModules: 6186 16 | withWarmModulesAndLockfile: 788 17 | withWarmModules: 15204 18 | size: 105486310 19 | - firstInstall: 19474 20 | repeatInstall: 815 21 | withWarmCacheAndLockfile: 4111 22 | withWarmCache: 9873 23 | withLockfile: 11761 24 | withWarmCacheAndModules: 6198 25 | withWarmModulesAndLockfile: 808 26 | withWarmModules: 15609 27 | size: 105486310 28 | -------------------------------------------------------------------------------- /results/yarn/1.10.1/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 15409 2 | repeatInstall: 799 3 | withWarmCacheAndLockfile: 4151 4 | withWarmCache: 8220 5 | withLockfile: 13199 6 | withWarmCacheAndModules: 6608 7 | withWarmModulesAndLockfile: 767 8 | withWarmModules: 17405 9 | size: 105764309 10 | - firstInstall: 17629 11 | repeatInstall: 766 12 | withWarmCacheAndLockfile: 3948 13 | withWarmCache: 7567 14 | withLockfile: 12056 15 | withWarmCacheAndModules: 6118 16 | withWarmModulesAndLockfile: 779 17 | withWarmModules: 14397 18 | size: 105764309 19 | - firstInstall: 15338 20 | repeatInstall: 744 21 | withWarmCacheAndLockfile: 4176 22 | withWarmCache: 9338 23 | withLockfile: 11091 24 | withWarmCacheAndModules: 6478 25 | withWarmModulesAndLockfile: 758 26 | withWarmModules: 14085 27 | size: 105764309 28 | -------------------------------------------------------------------------------- /results/yarn/1.12.3/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 18336 2 | repeatInstall: 841 3 | withWarmCacheAndLockfile: 4626 4 | withWarmCache: 8712 5 | withLockfile: 13015 6 | withWarmCacheAndModules: 7250 7 | withWarmModulesAndLockfile: 874 8 | withWarmModules: 16937 9 | size: 109834888 10 | - firstInstall: 19300 11 | repeatInstall: 818 12 | withWarmCacheAndLockfile: 4383 13 | withWarmCache: 10160 14 | withLockfile: 12275 15 | withWarmCacheAndModules: 7281 16 | withWarmModulesAndLockfile: 807 17 | withWarmModules: 15883 18 | size: 109834888 19 | - firstInstall: 24442 20 | repeatInstall: 867 21 | withWarmCacheAndLockfile: 4373 22 | withWarmCache: 8490 23 | withLockfile: 12660 24 | withWarmCacheAndModules: 7040 25 | withWarmModulesAndLockfile: 786 26 | withWarmModules: 17423 27 | size: 109834888 28 | -------------------------------------------------------------------------------- /results/pnpm/1.38.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 20617 2 | repeatInstall: 1019 3 | withWarmCacheAndLockfile: 7832 4 | withWarmCache: 10250 5 | withLockfile: 18107 6 | withWarmCacheAndModules: 6332 7 | withWarmModulesAndLockfile: 1105 8 | withWarmModules: 16478 9 | size: 109128737 10 | - firstInstall: 19611 11 | repeatInstall: 1072 12 | withWarmCacheAndLockfile: 7465 13 | withWarmCache: 10762 14 | withLockfile: 18107 15 | withWarmCacheAndModules: 6148 16 | withWarmModulesAndLockfile: 1026 17 | withWarmModules: 15499 18 | size: 109128737 19 | - firstInstall: 19104 20 | repeatInstall: 955 21 | withWarmCacheAndLockfile: 7274 22 | withWarmCache: 9695 23 | withLockfile: 17285 24 | withWarmCacheAndModules: 6611 25 | withWarmModulesAndLockfile: 999 26 | withWarmModules: 15249 27 | size: 109128737 28 | -------------------------------------------------------------------------------- /results/pnpm/1.41.1/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 20980 2 | repeatInstall: 971 3 | withWarmCacheAndLockfile: 7519 4 | withWarmCache: 11541 5 | withLockfile: 17554 6 | withWarmCacheAndModules: 7570 7 | withWarmModulesAndLockfile: 1008 8 | withWarmModules: 17042 9 | size: 110038473 10 | - firstInstall: 19916 11 | repeatInstall: 963 12 | withWarmCacheAndLockfile: 7458 13 | withWarmCache: 11403 14 | withLockfile: 17201 15 | withWarmCacheAndModules: 7594 16 | withWarmModulesAndLockfile: 1017 17 | withWarmModules: 16192 18 | size: 110038473 19 | - firstInstall: 19878 20 | repeatInstall: 947 21 | withWarmCacheAndLockfile: 7496 22 | withWarmCache: 10648 23 | withLockfile: 16754 24 | withWarmCacheAndModules: 7316 25 | withWarmModulesAndLockfile: 945 26 | withWarmModules: 15859 27 | size: 110038473 28 | -------------------------------------------------------------------------------- /results/pnpm/2.22.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 14950 2 | repeatInstall: 1140 3 | withWarmCacheAndLockfile: 4552 4 | withWarmCache: 7851 5 | withLockfile: 12095 6 | withWarmCacheAndModules: 1435 7 | withWarmModulesAndLockfile: 924 8 | withWarmModules: 2380 9 | size: 119716611 10 | - firstInstall: 15521 11 | repeatInstall: 991 12 | withWarmCacheAndLockfile: 4549 13 | withWarmCache: 8035 14 | withLockfile: 11939 15 | withWarmCacheAndModules: 1425 16 | withWarmModulesAndLockfile: 960 17 | withWarmModules: 2396 18 | size: 119716611 19 | - firstInstall: 15352 20 | repeatInstall: 1021 21 | withWarmCacheAndLockfile: 4552 22 | withWarmCache: 8116 23 | withLockfile: 11947 24 | withWarmCacheAndModules: 1519 25 | withWarmModulesAndLockfile: 944 26 | withWarmModules: 2411 27 | size: 119716611 28 | -------------------------------------------------------------------------------- /results/pnpm/2.24.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 17824 2 | repeatInstall: 1087 3 | withWarmCacheAndLockfile: 5273 4 | withWarmCache: 9403 5 | withLockfile: 14821 6 | withWarmCacheAndModules: 1960 7 | withWarmModulesAndLockfile: 1060 8 | withWarmModules: 4293 9 | size: 107763151 10 | - firstInstall: 16329 11 | repeatInstall: 1014 12 | withWarmCacheAndLockfile: 4949 13 | withWarmCache: 8392 14 | withLockfile: 13829 15 | withWarmCacheAndModules: 1899 16 | withWarmModulesAndLockfile: 964 17 | withWarmModules: 4283 18 | size: 107763151 19 | - firstInstall: 16521 20 | repeatInstall: 1019 21 | withWarmCacheAndLockfile: 5010 22 | withWarmCache: 8538 23 | withLockfile: 13568 24 | withWarmCacheAndModules: 2003 25 | withWarmModulesAndLockfile: 1081 26 | withWarmModules: 4411 27 | size: 107763151 28 | -------------------------------------------------------------------------------- /results/pnpm/2.25.7/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 15550 2 | repeatInstall: 1018 3 | withWarmCacheAndLockfile: 4870 4 | withWarmCache: 8172 5 | withLockfile: 13491 6 | withWarmCacheAndModules: 1924 7 | withWarmModulesAndLockfile: 1012 8 | withWarmModules: 4148 9 | size: 107642306 10 | - firstInstall: 18485 11 | repeatInstall: 1032 12 | withWarmCacheAndLockfile: 5319 13 | withWarmCache: 8487 14 | withLockfile: 14020 15 | withWarmCacheAndModules: 1972 16 | withWarmModulesAndLockfile: 1041 17 | withWarmModules: 4225 18 | size: 107642306 19 | - firstInstall: 18353 20 | repeatInstall: 1051 21 | withWarmCacheAndLockfile: 5244 22 | withWarmCache: 8897 23 | withLockfile: 15140 24 | withWarmCacheAndModules: 2102 25 | withWarmModulesAndLockfile: 1039 26 | withWarmModules: 4622 27 | size: 107642306 28 | -------------------------------------------------------------------------------- /results/pnpm/2.7.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 19484 2 | repeatInstall: 934 3 | withWarmCacheAndLockfile: 5736 4 | withWarmCache: 9872 5 | withLockfile: 15751 6 | withWarmCacheAndModules: 7490 7 | withWarmModulesAndLockfile: 903 8 | withWarmModules: 15460 9 | size: 107566686 10 | - firstInstall: 19885 11 | repeatInstall: 940 12 | withWarmCacheAndLockfile: 5887 13 | withWarmCache: 10241 14 | withLockfile: 17705 15 | withWarmCacheAndModules: 8139 16 | withWarmModulesAndLockfile: 918 17 | withWarmModules: 16070 18 | size: 107566686 19 | - firstInstall: 25985 20 | repeatInstall: 943 21 | withWarmCacheAndLockfile: 6273 22 | withWarmCache: 14670 23 | withLockfile: 20519 24 | withWarmCacheAndModules: 14905 25 | withWarmModulesAndLockfile: 1124 26 | withWarmModules: 24286 27 | size: 107597626 28 | -------------------------------------------------------------------------------- /results/yarn/1.10.1/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 17874 2 | repeatInstall: 842 3 | withWarmCacheAndLockfile: 4070 4 | withWarmCache: 8808 5 | withLockfile: 10393 6 | withWarmCacheAndModules: 7365 7 | withWarmModulesAndLockfile: 705 8 | withWarmModules: 14502 9 | size: 112808054 10 | - firstInstall: 15002 11 | repeatInstall: 725 12 | withWarmCacheAndLockfile: 3442 13 | withWarmCache: 9329 14 | withLockfile: 9700 15 | withWarmCacheAndModules: 7823 16 | withWarmModulesAndLockfile: 703 17 | withWarmModules: 13908 18 | size: 112808054 19 | - firstInstall: 14714 20 | repeatInstall: 693 21 | withWarmCacheAndLockfile: 3487 22 | withWarmCache: 8054 23 | withLockfile: 9379 24 | withWarmCacheAndModules: 7468 25 | withWarmModulesAndLockfile: 701 26 | withWarmModules: 13271 27 | size: 112808054 28 | -------------------------------------------------------------------------------- /results/yarn/1.6.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 19202 2 | repeatInstall: 1199 3 | withWarmCacheAndLockfile: 5588 4 | withWarmCache: 9636 5 | withLockfile: 13317 6 | withWarmCacheAndModules: 9158 7 | withWarmModulesAndLockfile: 1059 8 | withWarmModules: 17660 9 | size: 106402073 10 | - firstInstall: 19904 11 | repeatInstall: 1136 12 | withWarmCacheAndLockfile: 5085 13 | withWarmCache: 9526 14 | withLockfile: 13071 15 | withWarmCacheAndModules: 8884 16 | withWarmModulesAndLockfile: 1106 17 | withWarmModules: 17369 18 | size: 106402073 19 | - firstInstall: 19948 20 | repeatInstall: 1148 21 | withWarmCacheAndLockfile: 5171 22 | withWarmCache: 10037 23 | withLockfile: 13435 24 | withWarmCacheAndModules: 9133 25 | withWarmModulesAndLockfile: 1099 26 | withWarmModules: 17890 27 | size: 106402073 28 | -------------------------------------------------------------------------------- /results/yarn/1.9.4/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 22496 2 | repeatInstall: 996 3 | withWarmCacheAndLockfile: 4453 4 | withWarmCache: 11093 5 | withLockfile: 13715 6 | withWarmCacheAndModules: 10793 7 | withWarmModulesAndLockfile: 898 8 | withWarmModules: 20103 9 | size: 108046540 10 | - firstInstall: 21286 11 | repeatInstall: 965 12 | withWarmCacheAndLockfile: 4685 13 | withWarmCache: 11013 14 | withLockfile: 16391 15 | withWarmCacheAndModules: 10235 16 | withWarmModulesAndLockfile: 916 17 | withWarmModules: 20565 18 | size: 108046540 19 | - firstInstall: 22506 20 | repeatInstall: 1120 21 | withWarmCacheAndLockfile: 4628 22 | withWarmCache: 11620 23 | withLockfile: 13705 24 | withWarmCacheAndModules: 11690 25 | withWarmModulesAndLockfile: 954 26 | withWarmModules: 20187 27 | size: 108046540 28 | -------------------------------------------------------------------------------- /results/npm/5.8.0/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 28877 2 | repeatInstall: 6922 3 | withWarmCacheAndLockfile: 15516 4 | withWarmCache: 24431 5 | withLockfile: 19799 6 | withWarmCacheAndModules: 6904 7 | withWarmModulesAndLockfile: 7426 8 | withWarmModules: 6925 9 | size: 236195355 10 | - firstInstall: 27333 11 | repeatInstall: 6786 12 | withWarmCacheAndLockfile: 14821 13 | withWarmCache: 23934 14 | withLockfile: 17755 15 | withWarmCacheAndModules: 6493 16 | withWarmModulesAndLockfile: 6844 17 | withWarmModules: 6622 18 | size: 236195355 19 | - firstInstall: 28145 20 | repeatInstall: 7192 21 | withWarmCacheAndLockfile: 15809 22 | withWarmCache: 23737 23 | withLockfile: 20494 24 | withWarmCacheAndModules: 6752 25 | withWarmModulesAndLockfile: 7320 26 | withWarmModules: 6792 27 | size: 236195355 28 | -------------------------------------------------------------------------------- /results/npm/5.8.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 26490 2 | repeatInstall: 9062 3 | withWarmCacheAndLockfile: 13752 4 | withWarmCache: 22246 5 | withLockfile: 16666 6 | withWarmCacheAndModules: 9228 7 | withWarmModulesAndLockfile: 9548 8 | withWarmModules: 10701 9 | size: 143323078 10 | - firstInstall: 25800 11 | repeatInstall: 8582 12 | withWarmCacheAndLockfile: 13082 13 | withWarmCache: 21344 14 | withLockfile: 16589 15 | withWarmCacheAndModules: 9265 16 | withWarmModulesAndLockfile: 8989 17 | withWarmModules: 9752 18 | size: 143323078 19 | - firstInstall: 26820 20 | repeatInstall: 8105 21 | withWarmCacheAndLockfile: 13331 22 | withWarmCache: 21729 23 | withLockfile: 16089 24 | withWarmCacheAndModules: 9102 25 | withWarmModulesAndLockfile: 9542 26 | withWarmModules: 10085 27 | size: 143323078 28 | -------------------------------------------------------------------------------- /results/npm/6.3.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 23261 2 | repeatInstall: 7675 3 | withWarmCacheAndLockfile: 12898 4 | withWarmCache: 15207 5 | withLockfile: 15112 6 | withWarmCacheAndModules: 7629 7 | withWarmModulesAndLockfile: 7676 8 | withWarmModules: 7649 9 | size: 145080255 10 | - firstInstall: 22189 11 | repeatInstall: 7482 12 | withWarmCacheAndLockfile: 13252 13 | withWarmCache: 15225 14 | withLockfile: 15765 15 | withWarmCacheAndModules: 7583 16 | withWarmModulesAndLockfile: 7617 17 | withWarmModules: 7790 18 | size: 145080255 19 | - firstInstall: 21312 20 | repeatInstall: 7508 21 | withWarmCacheAndLockfile: 12798 22 | withWarmCache: 15196 23 | withLockfile: 15595 24 | withWarmCacheAndModules: 7782 25 | withWarmModulesAndLockfile: 8451 26 | withWarmModules: 7936 27 | size: 145080255 28 | -------------------------------------------------------------------------------- /results/npm/6.4.1/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 31069 2 | repeatInstall: 8221 3 | withWarmCacheAndLockfile: 17009 4 | withWarmCache: 18035 5 | withLockfile: 18058 6 | withWarmCacheAndModules: 8530 7 | withWarmModulesAndLockfile: 8457 8 | withWarmModules: 9871 9 | size: 239402403 10 | - firstInstall: 27790 11 | repeatInstall: 8083 12 | withWarmCacheAndLockfile: 13981 13 | withWarmCache: 16407 14 | withLockfile: 17401 15 | withWarmCacheAndModules: 8074 16 | withWarmModulesAndLockfile: 8056 17 | withWarmModules: 9557 18 | size: 239402403 19 | - firstInstall: 24534 20 | repeatInstall: 8043 21 | withWarmCacheAndLockfile: 14171 22 | withWarmCache: 16725 23 | withLockfile: 19135 24 | withWarmCacheAndModules: 8481 25 | withWarmModulesAndLockfile: 8578 26 | withWarmModules: 9551 27 | size: 239402403 28 | -------------------------------------------------------------------------------- /results/npm/6.4.1/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 24278 2 | repeatInstall: 6578 3 | withWarmCacheAndLockfile: 9462 4 | withWarmCache: 11333 5 | withLockfile: 12669 6 | withWarmCacheAndModules: 7207 7 | withWarmModulesAndLockfile: 6791 8 | withWarmModules: 9749 9 | size: 113697452 10 | - firstInstall: 16911 11 | repeatInstall: 6400 12 | withWarmCacheAndLockfile: 9485 13 | withWarmCache: 11296 14 | withLockfile: 11518 15 | withWarmCacheAndModules: 6480 16 | withWarmModulesAndLockfile: 6293 17 | withWarmModules: 6464 18 | size: 113697452 19 | - firstInstall: 17532 20 | repeatInstall: 6348 21 | withWarmCacheAndLockfile: 9564 22 | withWarmCache: 11236 23 | withLockfile: 11458 24 | withWarmCacheAndModules: 6846 25 | withWarmModulesAndLockfile: 6456 26 | withWarmModules: 6433 27 | size: 113697452 28 | -------------------------------------------------------------------------------- /results/npm/6.4.1/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 19665 2 | repeatInstall: 7415 3 | withWarmCacheAndLockfile: 13393 4 | withWarmCache: 15380 5 | withLockfile: 14806 6 | withWarmCacheAndModules: 7376 7 | withWarmModulesAndLockfile: 8792 8 | withWarmModules: 7319 9 | size: 136451513 10 | - firstInstall: 19988 11 | repeatInstall: 7464 12 | withWarmCacheAndLockfile: 12253 13 | withWarmCache: 14241 14 | withLockfile: 14631 15 | withWarmCacheAndModules: 7187 16 | withWarmModulesAndLockfile: 7289 17 | withWarmModules: 7350 18 | size: 136451513 19 | - firstInstall: 19332 20 | repeatInstall: 7386 21 | withWarmCacheAndLockfile: 11982 22 | withWarmCache: 14079 23 | withLockfile: 14576 24 | withWarmCacheAndModules: 7140 25 | withWarmModulesAndLockfile: 7239 26 | withWarmModules: 8049 27 | size: 136451513 28 | -------------------------------------------------------------------------------- /results/npm/6.5.0/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 35087 2 | repeatInstall: 8900 3 | withWarmCacheAndLockfile: 17413 4 | withWarmCache: 19385 5 | withLockfile: 19650 6 | withWarmCacheAndModules: 8217 7 | withWarmModulesAndLockfile: 9738 8 | withWarmModules: 8601 9 | size: 238872955 10 | - firstInstall: 27997 11 | repeatInstall: 7955 12 | withWarmCacheAndLockfile: 14977 13 | withWarmCache: 17234 14 | withLockfile: 18825 15 | withWarmCacheAndModules: 7191 16 | withWarmModulesAndLockfile: 8278 17 | withWarmModules: 7379 18 | size: 238872955 19 | - firstInstall: 26622 20 | repeatInstall: 7476 21 | withWarmCacheAndLockfile: 14706 22 | withWarmCache: 17163 23 | withLockfile: 18592 24 | withWarmCacheAndModules: 7320 25 | withWarmModulesAndLockfile: 8426 26 | withWarmModules: 8382 27 | size: 238872955 28 | -------------------------------------------------------------------------------- /results/npm/6.5.0/react-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 24206 2 | repeatInstall: 9524 3 | withWarmCacheAndLockfile: 13575 4 | withWarmCache: 15835 5 | withLockfile: 17003 6 | withWarmCacheAndModules: 7616 7 | withWarmModulesAndLockfile: 8465 8 | withWarmModules: 7881 9 | size: 140493063 10 | - firstInstall: 22683 11 | repeatInstall: 7520 12 | withWarmCacheAndLockfile: 12720 13 | withWarmCache: 15157 14 | withLockfile: 15320 15 | withWarmCacheAndModules: 7259 16 | withWarmModulesAndLockfile: 7480 17 | withWarmModules: 7291 18 | size: 140493063 19 | - firstInstall: 22746 20 | repeatInstall: 7397 21 | withWarmCacheAndLockfile: 12432 22 | withWarmCache: 14761 23 | withLockfile: 16266 24 | withWarmCacheAndModules: 7651 25 | withWarmModulesAndLockfile: 7647 26 | withWarmModules: 7607 27 | size: 140493063 28 | -------------------------------------------------------------------------------- /results/pnpm/1.24.2/angular-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 10250 2 | repeatInstall: 964 3 | withWarmCacheAndLockfile: 4023 4 | withWarmCache: 4503 5 | withLockfile: 10646 6 | withWarmCacheAndModules: 3547 7 | withWarmModulesAndLockfile: 1008 8 | withWarmModules: 9198 9 | size: 112586117 10 | - firstInstall: 10387 11 | repeatInstall: 978 12 | withWarmCacheAndLockfile: 3993 13 | withWarmCache: 4379 14 | withLockfile: 10258 15 | withWarmCacheAndModules: 3500 16 | withWarmModulesAndLockfile: 1072 17 | withWarmModules: 8700 18 | size: 112586117 19 | - firstInstall: 11975 20 | repeatInstall: 929 21 | withWarmCacheAndLockfile: 3824 22 | withWarmCache: 4281 23 | withLockfile: 10568 24 | withWarmCacheAndModules: 3280 25 | withWarmModulesAndLockfile: 1007 26 | withWarmModules: 8647 27 | size: 112586117 28 | -------------------------------------------------------------------------------- /results/pnpm/2.15.0/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 18977 2 | repeatInstall: 1132 3 | withWarmCacheAndLockfile: 5445 4 | withWarmCache: 9790 5 | withLockfile: 15628 6 | withWarmCacheAndModules: 8323 7 | withWarmModulesAndLockfile: 1107 8 | withWarmModules: 17627 9 | size: 202383562 10 | - firstInstall: 19078 11 | repeatInstall: 1114 12 | withWarmCacheAndLockfile: 5436 13 | withWarmCache: 9849 14 | withLockfile: 15403 15 | withWarmCacheAndModules: 8020 16 | withWarmModulesAndLockfile: 1121 17 | withWarmModules: 16630 18 | size: 202383562 19 | - firstInstall: 19294 20 | repeatInstall: 1222 21 | withWarmCacheAndLockfile: 5762 22 | withWarmCache: 9924 23 | withLockfile: 15742 24 | withWarmCacheAndModules: 8110 25 | withWarmModulesAndLockfile: 1133 26 | withWarmModules: 16837 27 | size: 202383562 28 | -------------------------------------------------------------------------------- /results/pnpm/2.15.0/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 17462 2 | repeatInstall: 962 3 | withWarmCacheAndLockfile: 5116 4 | withWarmCache: 8382 5 | withLockfile: 14629 6 | withWarmCacheAndModules: 6579 7 | withWarmModulesAndLockfile: 1010 8 | withWarmModules: 13993 9 | size: 194684836 10 | - firstInstall: 17076 11 | repeatInstall: 946 12 | withWarmCacheAndLockfile: 5098 13 | withWarmCache: 8414 14 | withLockfile: 14900 15 | withWarmCacheAndModules: 7527 16 | withWarmModulesAndLockfile: 997 17 | withWarmModules: 15695 18 | size: 194684836 19 | - firstInstall: 18846 20 | repeatInstall: 1002 21 | withWarmCacheAndLockfile: 5290 22 | withWarmCache: 8646 23 | withLockfile: 14787 24 | withWarmCacheAndModules: 6752 25 | withWarmModulesAndLockfile: 1042 26 | withWarmModules: 14865 27 | size: 194684836 28 | -------------------------------------------------------------------------------- /results/pnpm/2.17.0/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 16676 2 | repeatInstall: 1100 3 | withWarmCacheAndLockfile: 5134 4 | withWarmCache: 9361 5 | withLockfile: 14306 6 | withWarmCacheAndModules: 7720 7 | withWarmModulesAndLockfile: 1091 8 | withWarmModules: 15376 9 | size: 200419754 10 | - firstInstall: 16223 11 | repeatInstall: 1076 12 | withWarmCacheAndLockfile: 4941 13 | withWarmCache: 9081 14 | withLockfile: 14794 15 | withWarmCacheAndModules: 7618 16 | withWarmModulesAndLockfile: 1080 17 | withWarmModules: 16598 18 | size: 200419754 19 | - firstInstall: 17616 20 | repeatInstall: 1173 21 | withWarmCacheAndLockfile: 5653 22 | withWarmCache: 10478 23 | withLockfile: 15022 24 | withWarmCacheAndModules: 8066 25 | withWarmModulesAndLockfile: 1107 26 | withWarmModules: 16000 27 | size: 200419754 28 | -------------------------------------------------------------------------------- /results/pnpm/2.17.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 12737 2 | repeatInstall: 876 3 | withWarmCacheAndLockfile: 4102 4 | withWarmCache: 7055 5 | withLockfile: 11173 6 | withWarmCacheAndModules: 5906 7 | withWarmModulesAndLockfile: 889 8 | withWarmModules: 11639 9 | size: 120112616 10 | - firstInstall: 12486 11 | repeatInstall: 883 12 | withWarmCacheAndLockfile: 4031 13 | withWarmCache: 6871 14 | withLockfile: 10646 15 | withWarmCacheAndModules: 6070 16 | withWarmModulesAndLockfile: 862 17 | withWarmModules: 11395 18 | size: 120112616 19 | - firstInstall: 13516 20 | repeatInstall: 860 21 | withWarmCacheAndLockfile: 4090 22 | withWarmCache: 7188 23 | withLockfile: 10777 24 | withWarmCacheAndModules: 5750 25 | withWarmModulesAndLockfile: 885 26 | withWarmModules: 11130 27 | size: 120112616 28 | -------------------------------------------------------------------------------- /results/pnpm/2.17.0/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 15927 2 | repeatInstall: 1012 3 | withWarmCacheAndLockfile: 5124 4 | withWarmCache: 7842 5 | withLockfile: 15132 6 | withWarmCacheAndModules: 7577 7 | withWarmModulesAndLockfile: 1026 8 | withWarmModules: 13992 9 | size: 194904797 10 | - firstInstall: 15170 11 | repeatInstall: 1055 12 | withWarmCacheAndLockfile: 4893 13 | withWarmCache: 7837 14 | withLockfile: 13420 15 | withWarmCacheAndModules: 6497 16 | withWarmModulesAndLockfile: 988 17 | withWarmModules: 13403 18 | size: 194904797 19 | - firstInstall: 15272 20 | repeatInstall: 1015 21 | withWarmCacheAndLockfile: 4882 22 | withWarmCache: 7955 23 | withLockfile: 13737 24 | withWarmCacheAndModules: 6678 25 | withWarmModulesAndLockfile: 975 26 | withWarmModules: 13781 27 | size: 194904797 28 | -------------------------------------------------------------------------------- /results/pnpm/2.22.0/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 23310 2 | repeatInstall: 1431 3 | withWarmCacheAndLockfile: 6062 4 | withWarmCache: 11120 5 | withLockfile: 17632 6 | withWarmCacheAndModules: 3234 7 | withWarmModulesAndLockfile: 1277 8 | withWarmModules: 7111 9 | size: 203422346 10 | - firstInstall: 20392 11 | repeatInstall: 1221 12 | withWarmCacheAndLockfile: 5855 13 | withWarmCache: 10643 14 | withLockfile: 16201 15 | withWarmCacheAndModules: 3166 16 | withWarmModulesAndLockfile: 1275 17 | withWarmModules: 6762 18 | size: 203422346 19 | - firstInstall: 20884 20 | repeatInstall: 1319 21 | withWarmCacheAndLockfile: 5840 22 | withWarmCache: 10896 23 | withLockfile: 16295 24 | withWarmCacheAndModules: 3172 25 | withWarmModulesAndLockfile: 1185 26 | withWarmModules: 6653 27 | size: 203422346 28 | -------------------------------------------------------------------------------- /results/pnpm/2.22.0/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 22308 2 | repeatInstall: 1134 3 | withWarmCacheAndLockfile: 6247 4 | withWarmCache: 10459 5 | withLockfile: 18741 6 | withWarmCacheAndModules: 2960 7 | withWarmModulesAndLockfile: 1245 8 | withWarmModules: 6918 9 | size: 196150513 10 | - firstInstall: 18607 11 | repeatInstall: 1041 12 | withWarmCacheAndLockfile: 5454 13 | withWarmCache: 9171 14 | withLockfile: 15027 15 | withWarmCacheAndModules: 2816 16 | withWarmModulesAndLockfile: 1178 17 | withWarmModules: 6836 18 | size: 196150513 19 | - firstInstall: 18530 20 | repeatInstall: 1209 21 | withWarmCacheAndLockfile: 5538 22 | withWarmCache: 9322 23 | withLockfile: 15456 24 | withWarmCacheAndModules: 2828 25 | withWarmModulesAndLockfile: 1134 26 | withWarmModules: 6789 27 | size: 196150513 28 | -------------------------------------------------------------------------------- /results/pnpm/2.24.0/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 19080 2 | repeatInstall: 1180 3 | withWarmCacheAndLockfile: 5485 4 | withWarmCache: 9791 5 | withLockfile: 15608 6 | withWarmCacheAndModules: 2836 7 | withWarmModulesAndLockfile: 1140 8 | withWarmModules: 6355 9 | size: 199458651 10 | - firstInstall: 20549 11 | repeatInstall: 1192 12 | withWarmCacheAndLockfile: 5418 13 | withWarmCache: 10923 14 | withLockfile: 16637 15 | withWarmCacheAndModules: 2924 16 | withWarmModulesAndLockfile: 1206 17 | withWarmModules: 7619 18 | size: 199458651 19 | - firstInstall: 21200 20 | repeatInstall: 1331 21 | withWarmCacheAndLockfile: 6011 22 | withWarmCache: 9610 23 | withLockfile: 15289 24 | withWarmCacheAndModules: 2854 25 | withWarmModulesAndLockfile: 1116 26 | withWarmModules: 6344 27 | size: 199458651 28 | -------------------------------------------------------------------------------- /results/pnpm/2.24.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 16202 2 | repeatInstall: 1156 3 | withWarmCacheAndLockfile: 5638 4 | withWarmCache: 9805 5 | withLockfile: 14698 6 | withWarmCacheAndModules: 1570 7 | withWarmModulesAndLockfile: 1026 8 | withWarmModules: 2350 9 | size: 119961749 10 | - firstInstall: 13800 11 | repeatInstall: 1001 12 | withWarmCacheAndLockfile: 4259 13 | withWarmCache: 7327 14 | withLockfile: 11524 15 | withWarmCacheAndModules: 1422 16 | withWarmModulesAndLockfile: 988 17 | withWarmModules: 2220 18 | size: 119961749 19 | - firstInstall: 15375 20 | repeatInstall: 1078 21 | withWarmCacheAndLockfile: 4525 22 | withWarmCache: 7434 23 | withLockfile: 12893 24 | withWarmCacheAndModules: 1350 25 | withWarmModulesAndLockfile: 963 26 | withWarmModules: 2306 27 | size: 119961749 28 | -------------------------------------------------------------------------------- /results/pnpm/2.24.0/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 17774 2 | repeatInstall: 1116 3 | withWarmCacheAndLockfile: 5832 4 | withWarmCache: 8883 5 | withLockfile: 15719 6 | withWarmCacheAndModules: 3135 7 | withWarmModulesAndLockfile: 1169 8 | withWarmModules: 6684 9 | size: 196363248 10 | - firstInstall: 17217 11 | repeatInstall: 1017 12 | withWarmCacheAndLockfile: 5208 13 | withWarmCache: 8379 14 | withLockfile: 14358 15 | withWarmCacheAndModules: 2655 16 | withWarmModulesAndLockfile: 1027 17 | withWarmModules: 6561 18 | size: 196363248 19 | - firstInstall: 17237 20 | repeatInstall: 1054 21 | withWarmCacheAndLockfile: 5163 22 | withWarmCache: 8758 23 | withLockfile: 14842 24 | withWarmCacheAndModules: 2652 25 | withWarmModulesAndLockfile: 1053 26 | withWarmModules: 6488 27 | size: 196363248 28 | -------------------------------------------------------------------------------- /results/pnpm/2.25.7/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 17724 2 | repeatInstall: 1225 3 | withWarmCacheAndLockfile: 5644 4 | withWarmCache: 9486 5 | withLockfile: 15445 6 | withWarmCacheAndModules: 2945 7 | withWarmModulesAndLockfile: 1233 8 | withWarmModules: 6546 9 | size: 200021539 10 | - firstInstall: 19292 11 | repeatInstall: 1267 12 | withWarmCacheAndLockfile: 5684 13 | withWarmCache: 10975 14 | withLockfile: 16941 15 | withWarmCacheAndModules: 2904 16 | withWarmModulesAndLockfile: 1249 17 | withWarmModules: 6469 18 | size: 200021539 19 | - firstInstall: 22361 20 | repeatInstall: 1303 21 | withWarmCacheAndLockfile: 6128 22 | withWarmCache: 10322 23 | withLockfile: 17897 24 | withWarmCacheAndModules: 3053 25 | withWarmModulesAndLockfile: 1209 26 | withWarmModules: 6542 27 | size: 200021539 28 | -------------------------------------------------------------------------------- /results/pnpm/2.25.7/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 14354 2 | repeatInstall: 1009 3 | withWarmCacheAndLockfile: 4476 4 | withWarmCache: 7604 5 | withLockfile: 12969 6 | withWarmCacheAndModules: 1435 7 | withWarmModulesAndLockfile: 1065 8 | withWarmModules: 2518 9 | size: 121131872 10 | - firstInstall: 16218 11 | repeatInstall: 1036 12 | withWarmCacheAndLockfile: 4345 13 | withWarmCache: 7362 14 | withLockfile: 11660 15 | withWarmCacheAndModules: 1466 16 | withWarmModulesAndLockfile: 1009 17 | withWarmModules: 2272 18 | size: 121131872 19 | - firstInstall: 16573 20 | repeatInstall: 1190 21 | withWarmCacheAndLockfile: 4749 22 | withWarmCache: 7903 23 | withLockfile: 12246 24 | withWarmCacheAndModules: 1513 25 | withWarmModulesAndLockfile: 1016 26 | withWarmModules: 2167 27 | size: 121131872 28 | -------------------------------------------------------------------------------- /results/pnpm/2.25.7/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 17544 2 | repeatInstall: 1128 3 | withWarmCacheAndLockfile: 5402 4 | withWarmCache: 8242 5 | withLockfile: 15457 6 | withWarmCacheAndModules: 2905 7 | withWarmModulesAndLockfile: 1044 8 | withWarmModules: 6496 9 | size: 194647709 10 | - firstInstall: 17781 11 | repeatInstall: 1148 12 | withWarmCacheAndLockfile: 5704 13 | withWarmCache: 9086 14 | withLockfile: 16905 15 | withWarmCacheAndModules: 2709 16 | withWarmModulesAndLockfile: 1139 17 | withWarmModules: 6800 18 | size: 194647709 19 | - firstInstall: 17622 20 | repeatInstall: 1091 21 | withWarmCacheAndLockfile: 5300 22 | withWarmCache: 8760 23 | withLockfile: 14736 24 | withWarmCacheAndModules: 2672 25 | withWarmModulesAndLockfile: 1127 26 | withWarmModules: 6630 27 | size: 194647709 28 | -------------------------------------------------------------------------------- /results/yarn/1.10.0/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 32288 2 | repeatInstall: 750 3 | withWarmCacheAndLockfile: 7386 4 | withWarmCache: 17399 5 | withLockfile: 18054 6 | withWarmCacheAndModules: 17798 7 | withWarmModulesAndLockfile: 780 8 | withWarmModules: 25774 9 | size: 229021756 10 | - firstInstall: 39883 11 | repeatInstall: 777 12 | withWarmCacheAndLockfile: 7387 13 | withWarmCache: 19920 14 | withLockfile: 16802 15 | withWarmCacheAndModules: 15743 16 | withWarmModulesAndLockfile: 749 17 | withWarmModules: 25118 18 | size: 229017660 19 | - firstInstall: 25261 20 | repeatInstall: 777 21 | withWarmCacheAndLockfile: 7489 22 | withWarmCache: 17680 23 | withLockfile: 16378 24 | withWarmCacheAndModules: 14526 25 | withWarmModulesAndLockfile: 811 26 | withWarmModules: 26511 27 | size: 229021756 28 | -------------------------------------------------------------------------------- /results/yarn/1.10.0/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 32417 2 | repeatInstall: 698 3 | withWarmCacheAndLockfile: 7497 4 | withWarmCache: 13472 5 | withLockfile: 32264 6 | withWarmCacheAndModules: 9396 7 | withWarmModulesAndLockfile: 718 8 | withWarmModules: 28083 9 | size: 292306770 10 | - firstInstall: 30491 11 | repeatInstall: 705 12 | withWarmCacheAndLockfile: 7692 13 | withWarmCache: 12528 14 | withLockfile: 25515 15 | withWarmCacheAndModules: 11293 16 | withWarmModulesAndLockfile: 718 17 | withWarmModules: 30991 18 | size: 292306770 19 | - firstInstall: 31712 20 | repeatInstall: 727 21 | withWarmCacheAndLockfile: 7719 22 | withWarmCache: 11916 23 | withLockfile: 24758 24 | withWarmCacheAndModules: 9092 25 | withWarmModulesAndLockfile: 743 26 | withWarmModules: 29561 27 | size: 292306770 28 | -------------------------------------------------------------------------------- /results/yarn/1.10.0/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 20207 2 | repeatInstall: 733 3 | withWarmCacheAndLockfile: 4445 4 | withWarmCache: 17820 5 | withLockfile: 12414 6 | withWarmCacheAndModules: 9948 7 | withWarmModulesAndLockfile: 747 8 | withWarmModules: 18026 9 | size: 195611031 10 | - firstInstall: 17989 11 | repeatInstall: 729 12 | withWarmCacheAndLockfile: 4210 13 | withWarmCache: 11322 14 | withLockfile: 13151 15 | withWarmCacheAndModules: 9467 16 | withWarmModulesAndLockfile: 747 17 | withWarmModules: 18414 18 | size: 195606935 19 | - firstInstall: 22782 20 | repeatInstall: 732 21 | withWarmCacheAndLockfile: 4367 22 | withWarmCache: 14598 23 | withLockfile: 12601 24 | withWarmCacheAndModules: 11280 25 | withWarmModulesAndLockfile: 744 26 | withWarmModules: 18738 27 | size: 195611031 28 | -------------------------------------------------------------------------------- /results/yarn/1.10.1/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 31810 2 | repeatInstall: 748 3 | withWarmCacheAndLockfile: 7218 4 | withWarmCache: 17644 5 | withLockfile: 15359 6 | withWarmCacheAndModules: 16104 7 | withWarmModulesAndLockfile: 716 8 | withWarmModules: 27319 9 | size: 225829400 10 | - firstInstall: 28929 11 | repeatInstall: 760 12 | withWarmCacheAndLockfile: 6985 13 | withWarmCache: 18793 14 | withLockfile: 16638 15 | withWarmCacheAndModules: 13667 16 | withWarmModulesAndLockfile: 730 17 | withWarmModules: 25734 18 | size: 225829400 19 | - firstInstall: 26647 20 | repeatInstall: 799 21 | withWarmCacheAndLockfile: 7399 22 | withWarmCache: 16852 23 | withLockfile: 15747 24 | withWarmCacheAndModules: 16217 25 | withWarmModulesAndLockfile: 780 26 | withWarmModules: 25549 27 | size: 225837592 28 | -------------------------------------------------------------------------------- /results/yarn/1.10.1/medium-size-app.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 19708 2 | repeatInstall: 732 3 | withWarmCacheAndLockfile: 4370 4 | withWarmCache: 12015 5 | withLockfile: 12208 6 | withWarmCacheAndModules: 10529 7 | withWarmModulesAndLockfile: 691 8 | withWarmModules: 17923 9 | size: 196172966 10 | - firstInstall: 19152 11 | repeatInstall: 700 12 | withWarmCacheAndLockfile: 4092 13 | withWarmCache: 14290 14 | withLockfile: 12144 15 | withWarmCacheAndModules: 9315 16 | withWarmModulesAndLockfile: 661 17 | withWarmModules: 19555 18 | size: 196172966 19 | - firstInstall: 18575 20 | repeatInstall: 694 21 | withWarmCacheAndLockfile: 4239 22 | withWarmCache: 15107 23 | withLockfile: 11952 24 | withWarmCacheAndModules: 10585 25 | withWarmModulesAndLockfile: 688 26 | withWarmModules: 21103 27 | size: 196172966 28 | -------------------------------------------------------------------------------- /results/yarn/1.12.3/alotta-files.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 31759 2 | repeatInstall: 832 3 | withWarmCacheAndLockfile: 8466 4 | withWarmCache: 19697 5 | withLockfile: 17085 6 | withWarmCacheAndModules: 18795 7 | withWarmModulesAndLockfile: 731 8 | withWarmModules: 27111 9 | size: 225131782 10 | - firstInstall: 32692 11 | repeatInstall: 826 12 | withWarmCacheAndLockfile: 8185 13 | withWarmCache: 19963 14 | withLockfile: 16893 15 | withWarmCacheAndModules: 14579 16 | withWarmModulesAndLockfile: 926 17 | withWarmModules: 27149 18 | size: 225135878 19 | - firstInstall: 29747 20 | repeatInstall: 820 21 | withWarmCacheAndLockfile: 7821 22 | withWarmCache: 20491 23 | withLockfile: 17016 24 | withWarmCacheAndModules: 15347 25 | withWarmModulesAndLockfile: 746 26 | withWarmModules: 26958 27 | size: 225127686 28 | -------------------------------------------------------------------------------- /results/yarn/1.12.3/ember-quickstart.yaml: -------------------------------------------------------------------------------- 1 | - firstInstall: 38489 2 | repeatInstall: 770 3 | withWarmCacheAndLockfile: 3928 4 | withWarmCache: 9602 5 | withLockfile: 11358 6 | withWarmCacheAndModules: 8087 7 | withWarmModulesAndLockfile: 759 8 | withWarmModules: 15651 9 | size: 113331014 10 | - firstInstall: 15646 11 | repeatInstall: 741 12 | withWarmCacheAndLockfile: 3633 13 | withWarmCache: 9396 14 | withLockfile: 10302 15 | withWarmCacheAndModules: 8352 16 | withWarmModulesAndLockfile: 735 17 | withWarmModules: 15121 18 | size: 113331015 19 | - firstInstall: 16336 20 | repeatInstall: 726 21 | withWarmCacheAndLockfile: 3778 22 | withWarmCache: 8327 23 | withLockfile: 11324 24 | withWarmCacheAndModules: 8994 25 | withWarmModulesAndLockfile: 787 26 | withWarmModules: 16377 27 | size: 113331015 28 | --------------------------------------------------------------------------------