├── .circleci └── config.yml ├── .git2gus └── config.json ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── enhancement-request.md ├── dependabot.yml └── workflows │ └── check_changelog.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── bin ├── compile ├── detect ├── release ├── report ├── test └── test-compile ├── ci-profile └── nodejs.sh ├── cmd └── resolve-version │ ├── main.go │ ├── main_integration_test.go │ └── main_test.go ├── etc ├── ci-setup.sh ├── hatchet.sh └── publish.sh ├── features ├── go.mod ├── go.sum ├── hatchet.json ├── hatchet.lock ├── inventory ├── node.toml └── yarn.toml ├── lib ├── binaries.sh ├── builddata.sh ├── cache.sh ├── dependencies.sh ├── environment.sh ├── failure.sh ├── features.sh ├── json.sh ├── kvstore.sh ├── metadata.sh ├── monitor.sh ├── output.sh ├── plugin.sh ├── pnpm.sh ├── uuid.sh ├── vendor │ ├── resolve │ ├── resolve-version-darwin │ ├── resolve-version-linux │ ├── stdlib_v7.sh │ ├── yq-darwin │ └── yq-linux └── yarn-2.sh ├── makefile ├── plugin ├── download.sh ├── heroku-nodejs-plugin-node-10.sha512 ├── heroku-nodejs-plugin-node-10.tar.gz ├── heroku-nodejs-plugin-node-11.sha512 ├── heroku-nodejs-plugin-node-11.tar.gz ├── heroku-nodejs-plugin-node-12.sha512 ├── heroku-nodejs-plugin-node-12.tar.gz ├── heroku-nodejs-plugin-node-13.sha512 ├── heroku-nodejs-plugin-node-13.tar.gz ├── heroku-nodejs-plugin-node-14.sha512 ├── heroku-nodejs-plugin-node-14.tar.gz ├── heroku-nodejs-plugin-node-15.sha512 ├── heroku-nodejs-plugin-node-15.tar.gz ├── heroku-nodejs-plugin-node-16.sha512 ├── heroku-nodejs-plugin-node-16.tar.gz ├── heroku-nodejs-plugin-node-8.sha512 ├── heroku-nodejs-plugin-node-8.tar.gz ├── heroku-nodejs-plugin-node-9.sha512 ├── heroku-nodejs-plugin-node-9.tar.gz └── version ├── profile ├── WEB_CONCURRENCY.sh └── nodejs.sh ├── spec ├── ci │ ├── node_10_metrics_spec.rb │ ├── node_10_spec.rb │ ├── node_12_metrics_spec.rb │ ├── node_12_spec.rb │ ├── node_14_metrics_spec.rb │ ├── node_14_spec.rb │ ├── node_15_metrics_spec.rb │ ├── node_15_spec.rb │ └── node_metrics_conflict_spec.rb ├── fixtures │ └── repos │ │ ├── node-10-metrics │ │ ├── Procfile │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ │ ├── node-10 │ │ ├── Procfile │ │ ├── app.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ │ ├── node-12-metrics │ │ ├── Procfile │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ │ ├── node-12 │ │ ├── Procfile │ │ ├── app.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ │ ├── node-14-metrics │ │ ├── Procfile │ │ ├── index.js │ │ └── package.json │ │ ├── node-14 │ │ ├── Procfile │ │ ├── app.json │ │ ├── index.js │ │ └── package.json │ │ ├── node-15-metrics │ │ ├── Procfile │ │ ├── index.js │ │ └── package.json │ │ ├── node-15 │ │ ├── Procfile │ │ ├── app.json │ │ ├── index.js │ │ └── package.json │ │ └── node-metrics-conflict │ │ ├── Procfile │ │ ├── package.json │ │ └── src │ │ └── index.js ├── hatchet │ ├── absolute_path_spec.rb │ ├── ci_spec.rb │ ├── getting_started_spec.rb │ ├── stack_spec.rb │ └── version_spec.rb ├── nodebin │ ├── node_vX_metrics_spec.rb │ └── node_vX_spec.rb └── spec_helper.rb └── test ├── fixtures ├── bad-json │ ├── README.md │ └── package.json ├── build-script-override │ ├── README.md │ └── package.json ├── build-script-yarn │ ├── README.md │ ├── package.json │ └── yarn.lock ├── build-script │ ├── README.md │ └── package.json ├── cache-directories-camel │ ├── README.md │ ├── bower.json │ ├── client │ │ └── package.json │ ├── package.json │ └── server │ │ └── package.json ├── cache-directories │ ├── README.md │ ├── bower.json │ └── package.json ├── cache-prebuild │ ├── README.md │ └── package.json ├── caching │ ├── README.md │ └── package.json ├── ci-dependencies-yarn │ ├── README.md │ ├── package.json │ └── yarn.lock ├── ci-dependencies │ ├── README.md │ ├── package-lock.json │ └── package.json ├── ci-env-test │ ├── README.md │ └── package.json ├── cleanup-scripts │ ├── README.md │ └── package.json ├── complex-scripts │ ├── README.md │ └── package.json ├── dangerous-range-greater-than │ ├── README.md │ └── package.json ├── dangerous-range-star │ ├── README.md │ └── package.json ├── dependencies-modules-checked-in-with-devdependencies │ ├── README.md │ ├── node_modules │ │ ├── @heroku │ │ │ └── linewrap │ │ │ │ ├── linewrap.js │ │ │ │ └── package.json │ │ └── lodash │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── dist │ │ │ ├── lodash.compat.js │ │ │ ├── lodash.compat.min.js │ │ │ ├── lodash.js │ │ │ ├── lodash.min.js │ │ │ ├── lodash.underscore.js │ │ │ └── lodash.underscore.min.js │ │ │ ├── lodash.js │ │ │ └── package.json │ ├── package-lock.json │ └── package.json ├── dependencies-modules-checked-in-without-devdependencies │ ├── README.md │ ├── node_modules │ │ └── @heroku │ │ │ └── linewrap │ │ │ ├── linewrap.js │ │ │ └── package.json │ ├── package-lock.json │ └── package.json ├── dependencies-yarn │ ├── README.md │ ├── package.json │ └── yarn.lock ├── dependencies │ ├── README.md │ └── package.json ├── dev-dependencies-npmrc │ ├── .npmrc │ ├── README.md │ └── package.json ├── dot-heroku-collision-2 │ ├── .heroku │ │ └── random-file │ └── package.json ├── dot-heroku-collision │ ├── .heroku │ └── package.json ├── dot-heroku-node-collision │ ├── .heroku │ │ └── node │ └── package.json ├── dummy-feature │ ├── heroku-buildpack-features │ └── package.json ├── dynamic-procfile │ └── package.json ├── echo-lang │ └── package.json ├── econnreset-mock │ └── package.json ├── empty-heroku-postbuild-yarn │ ├── README.md │ ├── package.json │ └── yarn.lock ├── empty-heroku-postbuild │ ├── README.md │ └── package.json ├── failing-build │ └── package.json ├── flatmap-stream │ ├── package-lock.json │ └── package.json ├── gitignore-package-json │ └── .gitignore ├── has-script-fixtures │ └── package.json ├── info-empty │ ├── README.md │ └── package.json ├── invalid-dependency │ ├── README.md │ └── package.json ├── invalid-node-semver │ ├── README.md │ └── package.json ├── invalid-node │ ├── README.md │ └── package.json ├── iojs │ └── package.json ├── many-warnings │ └── package.json ├── missing-devdeps-1 │ ├── package.json │ └── postinstall.js ├── missing-grunt │ ├── README.md │ └── package.json ├── modules-checked-in │ ├── README.md │ ├── node_modules │ │ └── @heroku │ │ │ └── linewrap │ │ │ ├── linewrap.js │ │ │ └── package.json │ ├── package-lock.json │ └── package.json ├── ng-build-script │ ├── README.md │ └── package.json ├── no-package-json │ └── Gemfile ├── no-start │ └── package.json ├── no-version │ ├── README.md │ └── package.json ├── node-0.12.6 │ ├── README.md │ └── package.json ├── node-0.12.7 │ ├── README.md │ └── package.json ├── node-10-npm-ci-shrinkwrap │ ├── npm-shrinkwrap.json │ └── package.json ├── node-10 │ ├── README.md │ └── package.json ├── node-11 │ ├── README.md │ └── package.json ├── node-12 │ ├── README.md │ └── package.json ├── node-13 │ ├── README.md │ └── package.json ├── node-14-npm-ci-no-lockfile │ └── package.json ├── node-14-npm-ci │ ├── package-lock.json │ └── package.json ├── node-14 │ ├── README.md │ └── package.json ├── node-6 │ ├── README.md │ └── package.json ├── node-8 │ ├── README.md │ └── package.json ├── node-9 │ ├── README.md │ └── package.json ├── node-env-consistency │ ├── package-lock.json │ └── package.json ├── node-modules-cache-1 │ ├── README.md │ └── package.json ├── node-modules-cache-2 │ ├── README.md │ └── package.json ├── node-project-missing-package-json │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── src │ │ ├── CHANGELOG.md │ │ ├── app.js │ │ └── webpack.config.js ├── nonexistent-npm │ └── package.json ├── npm-lockfile-no-version │ ├── package-lock.json │ └── package.json ├── npm-lockfile-node-6-no-version │ ├── package-lock.json │ └── package.json ├── npm-lockfile-old-version │ ├── package-lock.json │ └── package.json ├── npm-prune-5-3-issue │ ├── package-lock.json │ └── package.json ├── npm-prune-5-6-issue │ ├── package-lock.json │ └── package.json ├── npm-version-range │ ├── README.md │ └── package.json ├── npm-version-specific │ ├── README.md │ └── package.json ├── npm5 │ ├── package-lock.json │ └── package.json ├── old-npm │ └── package.json ├── optional-dependencies │ ├── README.md │ └── package.json ├── pre-post-build-scripts │ ├── README.md │ └── package.json ├── print-node-options │ ├── README.md │ └── package.json ├── range-with-space │ ├── README.md │ └── package.json ├── same-npm │ └── package.json ├── shrinkwrap │ ├── README.md │ ├── npm-shrinkwrap.json │ └── package.json ├── skip-modules-checked-in │ ├── README.md │ ├── node_modules │ │ └── .keep │ ├── package.json │ └── yarn.lock ├── slugignore-package-json │ └── .slugignore ├── specific-version │ ├── README.md │ └── package.json ├── stable-node │ ├── README.md │ └── package.json ├── unstable-version │ ├── README.md │ └── package.json ├── userconfig │ ├── .npmrc │ ├── README.md │ └── package.json ├── yarn-2-with-engine │ ├── .pnp.js │ ├── .yarn │ │ ├── cache │ │ │ ├── debug-npm-4.1.1-540248b3aa-2.zip │ │ │ ├── lodash-npm-4.17.15-566d9324f7-2.zip │ │ │ └── ms-npm-2.1.2-ec0c1512ff-2.zip │ │ ├── install-state.gz │ │ └── releases │ │ │ └── yarn-rc.js │ ├── .yarnrc.yml │ ├── package.json │ └── yarn.lock ├── yarn-2-with-invalid-rc-files │ ├── .npmrc │ ├── .pnp.js │ ├── .yarn │ │ ├── cache │ │ │ ├── debug-npm-4.1.1-540248b3aa-2.zip │ │ │ ├── lodash-npm-4.17.15-566d9324f7-2.zip │ │ │ └── ms-npm-2.1.2-ec0c1512ff-2.zip │ │ ├── install-state.gz │ │ └── releases │ │ │ └── yarn-rc.js │ ├── .yarnrc │ ├── .yarnrc.yml │ ├── package.json │ └── yarn.lock ├── yarn-2-with-node-modules │ ├── .yarn │ │ ├── cache │ │ │ ├── debug-npm-4.2.0-9392baba7e-dcfb8ede26.zip │ │ │ ├── lodash-npm-4.17.19-fa87a8e838-ff2b7a95f0.zip │ │ │ ├── ms-npm-2.1.2-ec0c1512ff-9b65fb709b.zip │ │ │ ├── typescript-npm-3.9.7-47ffbad2e0-10848a9c35.zip │ │ │ └── typescript-patch-ba0dbfd217-f0d3d9c987.zip │ │ ├── install-state.gz │ │ └── releases │ │ │ └── yarn-berry.js │ ├── .yarnrc.yml │ ├── package.json │ └── yarn.lock ├── yarn-2-without-cache │ ├── .pnp.js │ ├── .yarn │ │ ├── install-state.gz │ │ └── releases │ │ │ └── yarn-berry.js │ ├── .yarnrc.yml │ ├── package.json │ └── yarn.lock ├── yarn-2-without-workspace-plugin │ ├── .pnp.js │ ├── .yarn │ │ ├── cache │ │ │ ├── debug-npm-4.3.2-f0148b6afe-5543570879.zip │ │ │ ├── lodash-npm-4.17.20-c0db62021c-c62101d250.zip │ │ │ ├── ms-npm-2.1.2-ec0c1512ff-9b65fb709b.zip │ │ │ ├── typescript-npm-3.9.7-47ffbad2e0-10848a9c35.zip │ │ │ └── typescript-patch-2adb05d63d-f0d3d9c987.zip │ │ ├── install-state.gz │ │ └── releases │ │ │ └── yarn-berry.cjs │ ├── .yarnrc.yml │ ├── package.json │ └── yarn.lock ├── yarn-2-without-yarn-path │ ├── .pnp.js │ ├── .yarn │ │ ├── cache │ │ │ ├── debug-npm-4.1.1-540248b3aa-1.zip │ │ │ ├── lodash-npm-4.17.15-566d9324f7-1.zip │ │ │ └── ms-npm-2.1.2-ec0c1512ff-1.zip │ │ └── releases │ │ │ └── yarn-rc.js │ ├── .yarnrc.yml │ ├── package.json │ └── yarn.lock ├── yarn-2-without-yarn │ ├── .yarnrc.yml │ ├── package.json │ └── yarn.lock ├── yarn-2-without-yarnrc-yml │ ├── .pnp.js │ ├── .yarn │ │ └── cache │ │ │ ├── debug-npm-4.1.1-540248b3aa-1.zip │ │ │ ├── lodash-npm-4.17.15-566d9324f7-1.zip │ │ │ └── ms-npm-2.1.2-ec0c1512ff-1.zip │ ├── package.json │ └── yarn.lock ├── yarn-2 │ ├── .pnp.js │ ├── .yarn │ │ ├── cache │ │ │ ├── debug-npm-4.3.2-f0148b6afe-5543570879.zip │ │ │ ├── lodash-npm-4.17.20-c0db62021c-c62101d250.zip │ │ │ ├── ms-npm-2.1.2-ec0c1512ff-9b65fb709b.zip │ │ │ ├── typescript-npm-3.9.7-47ffbad2e0-10848a9c35.zip │ │ │ └── typescript-patch-2adb05d63d-f0d3d9c987.zip │ │ ├── install-state.gz │ │ ├── plugins │ │ │ └── @yarnpkg │ │ │ │ └── plugin-workspace-tools.cjs │ │ └── releases │ │ │ └── yarn-berry.cjs │ ├── .yarnrc.yml │ ├── package.json │ └── yarn.lock ├── yarn-and-npm-lockfiles │ ├── package-lock.json │ ├── package.json │ └── yarn.lock ├── yarn-and-shrinkwrap-lockfiles │ ├── npm-shrinkwrap.json │ ├── package.json │ └── yarn.lock ├── yarn-engine-with-monorepo │ └── package.json ├── yarn-engine │ ├── package.json │ └── yarn.lock ├── yarn-invalid-semver │ ├── package.json │ └── yarn.lock ├── yarn-invalid │ ├── package.json │ └── yarn.lock ├── yarn-lockfile-out-of-date │ ├── package.json │ └── yarn.lock ├── yarn-native-cache-false │ ├── heroku-buildpack-features │ ├── package.json │ └── yarn.lock ├── yarn-native-cache │ ├── heroku-buildpack-features │ ├── package.json │ └── yarn.lock ├── yarn-old-deprecated-version │ ├── package.json │ └── yarn.lock ├── yarn-only-engine │ └── package.json ├── yarn-run │ ├── package.json │ └── yarn.lock ├── yarn-semver │ ├── package.json │ └── yarn.lock ├── yarn-v1-semver │ ├── package.json │ └── yarn.lock ├── yarn-workspaces │ ├── .yarnrc │ ├── package.json │ ├── packages │ │ ├── a │ │ │ ├── index.js │ │ │ └── package.json │ │ └── b │ │ │ ├── index.js │ │ │ └── package.json │ └── yarn.lock └── yarn │ ├── package.json │ └── yarn.lock ├── quick ├── run ├── shunit2 ├── unit ├── unit-fixtures ├── features │ ├── build-dir-blank │ │ └── heroku-buildpack-features │ ├── build-dir-override │ │ └── heroku-buildpack-features │ ├── features │ └── features-v2 └── kvstore │ ├── empty-line │ └── no-new-line └── utils /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.git2gus/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/.git2gus/config.json -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @heroku/languages 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/.github/ISSUE_TEMPLATE/enhancement-request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/check_changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/.github/workflows/check_changelog.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .anvil 2 | .DS_Store 3 | repos/* 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/README.md -------------------------------------------------------------------------------- /bin/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/bin/compile -------------------------------------------------------------------------------- /bin/detect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/bin/detect -------------------------------------------------------------------------------- /bin/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/bin/release -------------------------------------------------------------------------------- /bin/report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/bin/report -------------------------------------------------------------------------------- /bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/bin/test -------------------------------------------------------------------------------- /bin/test-compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/bin/test-compile -------------------------------------------------------------------------------- /ci-profile/nodejs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/ci-profile/nodejs.sh -------------------------------------------------------------------------------- /cmd/resolve-version/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/cmd/resolve-version/main.go -------------------------------------------------------------------------------- /cmd/resolve-version/main_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/cmd/resolve-version/main_integration_test.go -------------------------------------------------------------------------------- /cmd/resolve-version/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/cmd/resolve-version/main_test.go -------------------------------------------------------------------------------- /etc/ci-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/etc/ci-setup.sh -------------------------------------------------------------------------------- /etc/hatchet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/etc/hatchet.sh -------------------------------------------------------------------------------- /etc/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/etc/publish.sh -------------------------------------------------------------------------------- /features: -------------------------------------------------------------------------------- 1 | cache-native-yarn-cache=100 2 | -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/go.sum -------------------------------------------------------------------------------- /hatchet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/hatchet.json -------------------------------------------------------------------------------- /hatchet.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/hatchet.lock -------------------------------------------------------------------------------- /inventory/node.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/inventory/node.toml -------------------------------------------------------------------------------- /inventory/yarn.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/inventory/yarn.toml -------------------------------------------------------------------------------- /lib/binaries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/lib/binaries.sh -------------------------------------------------------------------------------- /lib/builddata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/lib/builddata.sh -------------------------------------------------------------------------------- /lib/cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/lib/cache.sh -------------------------------------------------------------------------------- /lib/dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/lib/dependencies.sh -------------------------------------------------------------------------------- /lib/environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/lib/environment.sh -------------------------------------------------------------------------------- /lib/failure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/lib/failure.sh -------------------------------------------------------------------------------- /lib/features.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/lib/features.sh -------------------------------------------------------------------------------- /lib/json.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/lib/json.sh -------------------------------------------------------------------------------- /lib/kvstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/lib/kvstore.sh -------------------------------------------------------------------------------- /lib/metadata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/lib/metadata.sh -------------------------------------------------------------------------------- /lib/monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/lib/monitor.sh -------------------------------------------------------------------------------- /lib/output.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/lib/output.sh -------------------------------------------------------------------------------- /lib/plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/lib/plugin.sh -------------------------------------------------------------------------------- /lib/pnpm.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | YQ="$BP_DIR/lib/vendor/yq-$(get_os)" 4 | 5 | detect_pnpm() { 6 | echo "true" 7 | } 8 | -------------------------------------------------------------------------------- /lib/uuid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/lib/uuid.sh -------------------------------------------------------------------------------- /lib/vendor/resolve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/lib/vendor/resolve -------------------------------------------------------------------------------- /lib/vendor/resolve-version-darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/lib/vendor/resolve-version-darwin -------------------------------------------------------------------------------- /lib/vendor/resolve-version-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/lib/vendor/resolve-version-linux -------------------------------------------------------------------------------- /lib/vendor/stdlib_v7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/lib/vendor/stdlib_v7.sh -------------------------------------------------------------------------------- /lib/vendor/yq-darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/lib/vendor/yq-darwin -------------------------------------------------------------------------------- /lib/vendor/yq-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/lib/vendor/yq-linux -------------------------------------------------------------------------------- /lib/yarn-2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/lib/yarn-2.sh -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/makefile -------------------------------------------------------------------------------- /plugin/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/plugin/download.sh -------------------------------------------------------------------------------- /plugin/heroku-nodejs-plugin-node-10.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/plugin/heroku-nodejs-plugin-node-10.sha512 -------------------------------------------------------------------------------- /plugin/heroku-nodejs-plugin-node-10.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/plugin/heroku-nodejs-plugin-node-10.tar.gz -------------------------------------------------------------------------------- /plugin/heroku-nodejs-plugin-node-11.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/plugin/heroku-nodejs-plugin-node-11.sha512 -------------------------------------------------------------------------------- /plugin/heroku-nodejs-plugin-node-11.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/plugin/heroku-nodejs-plugin-node-11.tar.gz -------------------------------------------------------------------------------- /plugin/heroku-nodejs-plugin-node-12.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/plugin/heroku-nodejs-plugin-node-12.sha512 -------------------------------------------------------------------------------- /plugin/heroku-nodejs-plugin-node-12.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/plugin/heroku-nodejs-plugin-node-12.tar.gz -------------------------------------------------------------------------------- /plugin/heroku-nodejs-plugin-node-13.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/plugin/heroku-nodejs-plugin-node-13.sha512 -------------------------------------------------------------------------------- /plugin/heroku-nodejs-plugin-node-13.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/plugin/heroku-nodejs-plugin-node-13.tar.gz -------------------------------------------------------------------------------- /plugin/heroku-nodejs-plugin-node-14.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/plugin/heroku-nodejs-plugin-node-14.sha512 -------------------------------------------------------------------------------- /plugin/heroku-nodejs-plugin-node-14.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/plugin/heroku-nodejs-plugin-node-14.tar.gz -------------------------------------------------------------------------------- /plugin/heroku-nodejs-plugin-node-15.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/plugin/heroku-nodejs-plugin-node-15.sha512 -------------------------------------------------------------------------------- /plugin/heroku-nodejs-plugin-node-15.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/plugin/heroku-nodejs-plugin-node-15.tar.gz -------------------------------------------------------------------------------- /plugin/heroku-nodejs-plugin-node-16.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/plugin/heroku-nodejs-plugin-node-16.sha512 -------------------------------------------------------------------------------- /plugin/heroku-nodejs-plugin-node-16.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/plugin/heroku-nodejs-plugin-node-16.tar.gz -------------------------------------------------------------------------------- /plugin/heroku-nodejs-plugin-node-8.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/plugin/heroku-nodejs-plugin-node-8.sha512 -------------------------------------------------------------------------------- /plugin/heroku-nodejs-plugin-node-8.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/plugin/heroku-nodejs-plugin-node-8.tar.gz -------------------------------------------------------------------------------- /plugin/heroku-nodejs-plugin-node-9.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/plugin/heroku-nodejs-plugin-node-9.sha512 -------------------------------------------------------------------------------- /plugin/heroku-nodejs-plugin-node-9.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/plugin/heroku-nodejs-plugin-node-9.tar.gz -------------------------------------------------------------------------------- /plugin/version: -------------------------------------------------------------------------------- 1 | v9 2 | -------------------------------------------------------------------------------- /profile/WEB_CONCURRENCY.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/profile/WEB_CONCURRENCY.sh -------------------------------------------------------------------------------- /profile/nodejs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/profile/nodejs.sh -------------------------------------------------------------------------------- /spec/ci/node_10_metrics_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/ci/node_10_metrics_spec.rb -------------------------------------------------------------------------------- /spec/ci/node_10_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/ci/node_10_spec.rb -------------------------------------------------------------------------------- /spec/ci/node_12_metrics_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/ci/node_12_metrics_spec.rb -------------------------------------------------------------------------------- /spec/ci/node_12_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/ci/node_12_spec.rb -------------------------------------------------------------------------------- /spec/ci/node_14_metrics_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/ci/node_14_metrics_spec.rb -------------------------------------------------------------------------------- /spec/ci/node_14_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/ci/node_14_spec.rb -------------------------------------------------------------------------------- /spec/ci/node_15_metrics_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/ci/node_15_metrics_spec.rb -------------------------------------------------------------------------------- /spec/ci/node_15_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/ci/node_15_spec.rb -------------------------------------------------------------------------------- /spec/ci/node_metrics_conflict_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/ci/node_metrics_conflict_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/repos/node-10-metrics/Procfile: -------------------------------------------------------------------------------- 1 | web: node src/index.js 2 | -------------------------------------------------------------------------------- /spec/fixtures/repos/node-10-metrics/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/fixtures/repos/node-10-metrics/package.json -------------------------------------------------------------------------------- /spec/fixtures/repos/node-10-metrics/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/fixtures/repos/node-10-metrics/src/index.js -------------------------------------------------------------------------------- /spec/fixtures/repos/node-10/Procfile: -------------------------------------------------------------------------------- 1 | web: node src/index.js 2 | -------------------------------------------------------------------------------- /spec/fixtures/repos/node-10/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hello-world" 3 | } 4 | -------------------------------------------------------------------------------- /spec/fixtures/repos/node-10/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/fixtures/repos/node-10/package.json -------------------------------------------------------------------------------- /spec/fixtures/repos/node-10/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/fixtures/repos/node-10/src/index.js -------------------------------------------------------------------------------- /spec/fixtures/repos/node-12-metrics/Procfile: -------------------------------------------------------------------------------- 1 | web: node src/index.js 2 | -------------------------------------------------------------------------------- /spec/fixtures/repos/node-12-metrics/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/fixtures/repos/node-12-metrics/package.json -------------------------------------------------------------------------------- /spec/fixtures/repos/node-12-metrics/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/fixtures/repos/node-12-metrics/src/index.js -------------------------------------------------------------------------------- /spec/fixtures/repos/node-12/Procfile: -------------------------------------------------------------------------------- 1 | web: node src/index.js 2 | -------------------------------------------------------------------------------- /spec/fixtures/repos/node-12/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hello-world" 3 | } 4 | -------------------------------------------------------------------------------- /spec/fixtures/repos/node-12/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/fixtures/repos/node-12/package.json -------------------------------------------------------------------------------- /spec/fixtures/repos/node-12/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/fixtures/repos/node-12/src/index.js -------------------------------------------------------------------------------- /spec/fixtures/repos/node-14-metrics/Procfile: -------------------------------------------------------------------------------- 1 | web: node index.js 2 | -------------------------------------------------------------------------------- /spec/fixtures/repos/node-14-metrics/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/fixtures/repos/node-14-metrics/index.js -------------------------------------------------------------------------------- /spec/fixtures/repos/node-14-metrics/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/fixtures/repos/node-14-metrics/package.json -------------------------------------------------------------------------------- /spec/fixtures/repos/node-14/Procfile: -------------------------------------------------------------------------------- 1 | web: node index.js 2 | -------------------------------------------------------------------------------- /spec/fixtures/repos/node-14/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hello-world" 3 | } 4 | -------------------------------------------------------------------------------- /spec/fixtures/repos/node-14/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/fixtures/repos/node-14/index.js -------------------------------------------------------------------------------- /spec/fixtures/repos/node-14/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/fixtures/repos/node-14/package.json -------------------------------------------------------------------------------- /spec/fixtures/repos/node-15-metrics/Procfile: -------------------------------------------------------------------------------- 1 | web: node index.js 2 | -------------------------------------------------------------------------------- /spec/fixtures/repos/node-15-metrics/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/fixtures/repos/node-15-metrics/index.js -------------------------------------------------------------------------------- /spec/fixtures/repos/node-15-metrics/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/fixtures/repos/node-15-metrics/package.json -------------------------------------------------------------------------------- /spec/fixtures/repos/node-15/Procfile: -------------------------------------------------------------------------------- 1 | web: node index.js 2 | -------------------------------------------------------------------------------- /spec/fixtures/repos/node-15/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hello-world" 3 | } 4 | -------------------------------------------------------------------------------- /spec/fixtures/repos/node-15/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/fixtures/repos/node-15/index.js -------------------------------------------------------------------------------- /spec/fixtures/repos/node-15/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/fixtures/repos/node-15/package.json -------------------------------------------------------------------------------- /spec/fixtures/repos/node-metrics-conflict/Procfile: -------------------------------------------------------------------------------- 1 | web: node src/index.js 2 | -------------------------------------------------------------------------------- /spec/fixtures/repos/node-metrics-conflict/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/fixtures/repos/node-metrics-conflict/package.json -------------------------------------------------------------------------------- /spec/fixtures/repos/node-metrics-conflict/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/fixtures/repos/node-metrics-conflict/src/index.js -------------------------------------------------------------------------------- /spec/hatchet/absolute_path_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/hatchet/absolute_path_spec.rb -------------------------------------------------------------------------------- /spec/hatchet/ci_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/hatchet/ci_spec.rb -------------------------------------------------------------------------------- /spec/hatchet/getting_started_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/hatchet/getting_started_spec.rb -------------------------------------------------------------------------------- /spec/hatchet/stack_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/hatchet/stack_spec.rb -------------------------------------------------------------------------------- /spec/hatchet/version_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/hatchet/version_spec.rb -------------------------------------------------------------------------------- /spec/nodebin/node_vX_metrics_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/nodebin/node_vX_metrics_spec.rb -------------------------------------------------------------------------------- /spec/nodebin/node_vX_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/nodebin/node_vX_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /test/fixtures/bad-json/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/bad-json/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/bad-json/package.json -------------------------------------------------------------------------------- /test/fixtures/build-script-override/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/build-script-override/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/build-script-override/package.json -------------------------------------------------------------------------------- /test/fixtures/build-script-yarn/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/build-script-yarn/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/build-script-yarn/package.json -------------------------------------------------------------------------------- /test/fixtures/build-script-yarn/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/build-script-yarn/yarn.lock -------------------------------------------------------------------------------- /test/fixtures/build-script/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/build-script/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/build-script/package.json -------------------------------------------------------------------------------- /test/fixtures/cache-directories-camel/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/cache-directories-camel/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/cache-directories-camel/bower.json -------------------------------------------------------------------------------- /test/fixtures/cache-directories-camel/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/cache-directories-camel/client/package.json -------------------------------------------------------------------------------- /test/fixtures/cache-directories-camel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/cache-directories-camel/package.json -------------------------------------------------------------------------------- /test/fixtures/cache-directories-camel/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/cache-directories-camel/server/package.json -------------------------------------------------------------------------------- /test/fixtures/cache-directories/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/cache-directories/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/cache-directories/bower.json -------------------------------------------------------------------------------- /test/fixtures/cache-directories/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/cache-directories/package.json -------------------------------------------------------------------------------- /test/fixtures/cache-prebuild/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/cache-prebuild/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/cache-prebuild/package.json -------------------------------------------------------------------------------- /test/fixtures/caching/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/caching/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/caching/package.json -------------------------------------------------------------------------------- /test/fixtures/ci-dependencies-yarn/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/ci-dependencies-yarn/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/ci-dependencies-yarn/package.json -------------------------------------------------------------------------------- /test/fixtures/ci-dependencies-yarn/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/ci-dependencies-yarn/yarn.lock -------------------------------------------------------------------------------- /test/fixtures/ci-dependencies/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/ci-dependencies/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/ci-dependencies/package-lock.json -------------------------------------------------------------------------------- /test/fixtures/ci-dependencies/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/ci-dependencies/package.json -------------------------------------------------------------------------------- /test/fixtures/ci-env-test/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/ci-env-test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/ci-env-test/package.json -------------------------------------------------------------------------------- /test/fixtures/cleanup-scripts/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/cleanup-scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/cleanup-scripts/package.json -------------------------------------------------------------------------------- /test/fixtures/complex-scripts/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/complex-scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/complex-scripts/package.json -------------------------------------------------------------------------------- /test/fixtures/dangerous-range-greater-than/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/dangerous-range-greater-than/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/dangerous-range-greater-than/package.json -------------------------------------------------------------------------------- /test/fixtures/dangerous-range-star/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/dangerous-range-star/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/dangerous-range-star/package.json -------------------------------------------------------------------------------- /test/fixtures/dependencies-modules-checked-in-with-devdependencies/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/dependencies-modules-checked-in-with-devdependencies/node_modules/@heroku/linewrap/linewrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/dependencies-modules-checked-in-with-devdependencies/node_modules/@heroku/linewrap/linewrap.js -------------------------------------------------------------------------------- /test/fixtures/dependencies-modules-checked-in-with-devdependencies/node_modules/@heroku/linewrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/dependencies-modules-checked-in-with-devdependencies/node_modules/@heroku/linewrap/package.json -------------------------------------------------------------------------------- /test/fixtures/dependencies-modules-checked-in-with-devdependencies/node_modules/lodash/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/dependencies-modules-checked-in-with-devdependencies/node_modules/lodash/LICENSE.txt -------------------------------------------------------------------------------- /test/fixtures/dependencies-modules-checked-in-with-devdependencies/node_modules/lodash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/dependencies-modules-checked-in-with-devdependencies/node_modules/lodash/README.md -------------------------------------------------------------------------------- /test/fixtures/dependencies-modules-checked-in-with-devdependencies/node_modules/lodash/dist/lodash.compat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/dependencies-modules-checked-in-with-devdependencies/node_modules/lodash/dist/lodash.compat.js -------------------------------------------------------------------------------- /test/fixtures/dependencies-modules-checked-in-with-devdependencies/node_modules/lodash/dist/lodash.compat.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/dependencies-modules-checked-in-with-devdependencies/node_modules/lodash/dist/lodash.compat.min.js -------------------------------------------------------------------------------- /test/fixtures/dependencies-modules-checked-in-with-devdependencies/node_modules/lodash/dist/lodash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/dependencies-modules-checked-in-with-devdependencies/node_modules/lodash/dist/lodash.js -------------------------------------------------------------------------------- /test/fixtures/dependencies-modules-checked-in-with-devdependencies/node_modules/lodash/dist/lodash.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/dependencies-modules-checked-in-with-devdependencies/node_modules/lodash/dist/lodash.min.js -------------------------------------------------------------------------------- /test/fixtures/dependencies-modules-checked-in-with-devdependencies/node_modules/lodash/dist/lodash.underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/dependencies-modules-checked-in-with-devdependencies/node_modules/lodash/dist/lodash.underscore.js -------------------------------------------------------------------------------- /test/fixtures/dependencies-modules-checked-in-with-devdependencies/node_modules/lodash/dist/lodash.underscore.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/dependencies-modules-checked-in-with-devdependencies/node_modules/lodash/dist/lodash.underscore.min.js -------------------------------------------------------------------------------- /test/fixtures/dependencies-modules-checked-in-with-devdependencies/node_modules/lodash/lodash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/dependencies-modules-checked-in-with-devdependencies/node_modules/lodash/lodash.js -------------------------------------------------------------------------------- /test/fixtures/dependencies-modules-checked-in-with-devdependencies/node_modules/lodash/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/dependencies-modules-checked-in-with-devdependencies/node_modules/lodash/package.json -------------------------------------------------------------------------------- /test/fixtures/dependencies-modules-checked-in-with-devdependencies/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/dependencies-modules-checked-in-with-devdependencies/package-lock.json -------------------------------------------------------------------------------- /test/fixtures/dependencies-modules-checked-in-with-devdependencies/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/dependencies-modules-checked-in-with-devdependencies/package.json -------------------------------------------------------------------------------- /test/fixtures/dependencies-modules-checked-in-without-devdependencies/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/dependencies-modules-checked-in-without-devdependencies/node_modules/@heroku/linewrap/linewrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/dependencies-modules-checked-in-without-devdependencies/node_modules/@heroku/linewrap/linewrap.js -------------------------------------------------------------------------------- /test/fixtures/dependencies-modules-checked-in-without-devdependencies/node_modules/@heroku/linewrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/dependencies-modules-checked-in-without-devdependencies/node_modules/@heroku/linewrap/package.json -------------------------------------------------------------------------------- /test/fixtures/dependencies-modules-checked-in-without-devdependencies/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/dependencies-modules-checked-in-without-devdependencies/package-lock.json -------------------------------------------------------------------------------- /test/fixtures/dependencies-modules-checked-in-without-devdependencies/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/dependencies-modules-checked-in-without-devdependencies/package.json -------------------------------------------------------------------------------- /test/fixtures/dependencies-yarn/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/dependencies-yarn/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/dependencies-yarn/package.json -------------------------------------------------------------------------------- /test/fixtures/dependencies-yarn/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/dependencies-yarn/yarn.lock -------------------------------------------------------------------------------- /test/fixtures/dependencies/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/dependencies/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/dependencies/package.json -------------------------------------------------------------------------------- /test/fixtures/dev-dependencies-npmrc/.npmrc: -------------------------------------------------------------------------------- 1 | dev=true 2 | -------------------------------------------------------------------------------- /test/fixtures/dev-dependencies-npmrc/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/dev-dependencies-npmrc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/dev-dependencies-npmrc/package.json -------------------------------------------------------------------------------- /test/fixtures/dot-heroku-collision-2/.heroku/random-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/dot-heroku-collision-2/.heroku/random-file -------------------------------------------------------------------------------- /test/fixtures/dot-heroku-collision-2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/dot-heroku-collision-2/package.json -------------------------------------------------------------------------------- /test/fixtures/dot-heroku-collision/.heroku: -------------------------------------------------------------------------------- 1 | This file could be anything! 2 | -------------------------------------------------------------------------------- /test/fixtures/dot-heroku-collision/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/dot-heroku-collision/package.json -------------------------------------------------------------------------------- /test/fixtures/dot-heroku-node-collision/.heroku/node: -------------------------------------------------------------------------------- 1 | Filler file 2 | -------------------------------------------------------------------------------- /test/fixtures/dot-heroku-node-collision/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/dot-heroku-node-collision/package.json -------------------------------------------------------------------------------- /test/fixtures/dummy-feature/heroku-buildpack-features: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/dummy-feature/heroku-buildpack-features -------------------------------------------------------------------------------- /test/fixtures/dummy-feature/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/dummy-feature/package.json -------------------------------------------------------------------------------- /test/fixtures/dynamic-procfile/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/dynamic-procfile/package.json -------------------------------------------------------------------------------- /test/fixtures/echo-lang/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/echo-lang/package.json -------------------------------------------------------------------------------- /test/fixtures/econnreset-mock/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/econnreset-mock/package.json -------------------------------------------------------------------------------- /test/fixtures/empty-heroku-postbuild-yarn/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/empty-heroku-postbuild-yarn/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/empty-heroku-postbuild-yarn/package.json -------------------------------------------------------------------------------- /test/fixtures/empty-heroku-postbuild-yarn/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/empty-heroku-postbuild-yarn/yarn.lock -------------------------------------------------------------------------------- /test/fixtures/empty-heroku-postbuild/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/empty-heroku-postbuild/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/empty-heroku-postbuild/package.json -------------------------------------------------------------------------------- /test/fixtures/failing-build/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/failing-build/package.json -------------------------------------------------------------------------------- /test/fixtures/flatmap-stream/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/flatmap-stream/package-lock.json -------------------------------------------------------------------------------- /test/fixtures/flatmap-stream/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/flatmap-stream/package.json -------------------------------------------------------------------------------- /test/fixtures/gitignore-package-json/.gitignore: -------------------------------------------------------------------------------- 1 | package.json 2 | -------------------------------------------------------------------------------- /test/fixtures/has-script-fixtures/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/has-script-fixtures/package.json -------------------------------------------------------------------------------- /test/fixtures/info-empty/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/info-empty/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/info-empty/package.json -------------------------------------------------------------------------------- /test/fixtures/invalid-dependency/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/invalid-dependency/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/invalid-dependency/package.json -------------------------------------------------------------------------------- /test/fixtures/invalid-node-semver/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/invalid-node-semver/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/invalid-node-semver/package.json -------------------------------------------------------------------------------- /test/fixtures/invalid-node/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/invalid-node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/invalid-node/package.json -------------------------------------------------------------------------------- /test/fixtures/iojs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/iojs/package.json -------------------------------------------------------------------------------- /test/fixtures/many-warnings/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/many-warnings/package.json -------------------------------------------------------------------------------- /test/fixtures/missing-devdeps-1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/missing-devdeps-1/package.json -------------------------------------------------------------------------------- /test/fixtures/missing-devdeps-1/postinstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/missing-devdeps-1/postinstall.js -------------------------------------------------------------------------------- /test/fixtures/missing-grunt/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/missing-grunt/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/missing-grunt/package.json -------------------------------------------------------------------------------- /test/fixtures/modules-checked-in/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/modules-checked-in/node_modules/@heroku/linewrap/linewrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/modules-checked-in/node_modules/@heroku/linewrap/linewrap.js -------------------------------------------------------------------------------- /test/fixtures/modules-checked-in/node_modules/@heroku/linewrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/modules-checked-in/node_modules/@heroku/linewrap/package.json -------------------------------------------------------------------------------- /test/fixtures/modules-checked-in/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/modules-checked-in/package-lock.json -------------------------------------------------------------------------------- /test/fixtures/modules-checked-in/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/modules-checked-in/package.json -------------------------------------------------------------------------------- /test/fixtures/ng-build-script/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/ng-build-script/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/ng-build-script/package.json -------------------------------------------------------------------------------- /test/fixtures/no-package-json/Gemfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/no-start/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/no-start/package.json -------------------------------------------------------------------------------- /test/fixtures/no-version/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/no-version/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/no-version/package.json -------------------------------------------------------------------------------- /test/fixtures/node-0.12.6/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/node-0.12.6/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/node-0.12.6/package.json -------------------------------------------------------------------------------- /test/fixtures/node-0.12.7/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/node-0.12.7/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/node-0.12.7/package.json -------------------------------------------------------------------------------- /test/fixtures/node-10-npm-ci-shrinkwrap/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/node-10-npm-ci-shrinkwrap/npm-shrinkwrap.json -------------------------------------------------------------------------------- /test/fixtures/node-10-npm-ci-shrinkwrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/node-10-npm-ci-shrinkwrap/package.json -------------------------------------------------------------------------------- /test/fixtures/node-10/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/node-10/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/node-10/package.json -------------------------------------------------------------------------------- /test/fixtures/node-11/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/node-11/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/node-11/package.json -------------------------------------------------------------------------------- /test/fixtures/node-12/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/node-12/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/node-12/package.json -------------------------------------------------------------------------------- /test/fixtures/node-13/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/node-13/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/node-13/package.json -------------------------------------------------------------------------------- /test/fixtures/node-14-npm-ci-no-lockfile/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/node-14-npm-ci-no-lockfile/package.json -------------------------------------------------------------------------------- /test/fixtures/node-14-npm-ci/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/node-14-npm-ci/package-lock.json -------------------------------------------------------------------------------- /test/fixtures/node-14-npm-ci/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/node-14-npm-ci/package.json -------------------------------------------------------------------------------- /test/fixtures/node-14/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/node-14/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/node-14/package.json -------------------------------------------------------------------------------- /test/fixtures/node-6/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/node-6/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/node-6/package.json -------------------------------------------------------------------------------- /test/fixtures/node-8/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/node-8/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/node-8/package.json -------------------------------------------------------------------------------- /test/fixtures/node-9/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/node-9/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/node-9/package.json -------------------------------------------------------------------------------- /test/fixtures/node-env-consistency/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/node-env-consistency/package-lock.json -------------------------------------------------------------------------------- /test/fixtures/node-env-consistency/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/node-env-consistency/package.json -------------------------------------------------------------------------------- /test/fixtures/node-modules-cache-1/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/node-modules-cache-1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/node-modules-cache-1/package.json -------------------------------------------------------------------------------- /test/fixtures/node-modules-cache-2/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/node-modules-cache-2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/node-modules-cache-2/package.json -------------------------------------------------------------------------------- /test/fixtures/node-project-missing-package-json/LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/node-project-missing-package-json/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/node-project-missing-package-json/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/node-project-missing-package-json/src/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/node-project-missing-package-json/src/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/node-project-missing-package-json/src/webpack.config.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/nonexistent-npm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/nonexistent-npm/package.json -------------------------------------------------------------------------------- /test/fixtures/npm-lockfile-no-version/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/npm-lockfile-no-version/package-lock.json -------------------------------------------------------------------------------- /test/fixtures/npm-lockfile-no-version/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/npm-lockfile-no-version/package.json -------------------------------------------------------------------------------- /test/fixtures/npm-lockfile-node-6-no-version/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/npm-lockfile-node-6-no-version/package-lock.json -------------------------------------------------------------------------------- /test/fixtures/npm-lockfile-node-6-no-version/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/npm-lockfile-node-6-no-version/package.json -------------------------------------------------------------------------------- /test/fixtures/npm-lockfile-old-version/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/npm-lockfile-old-version/package-lock.json -------------------------------------------------------------------------------- /test/fixtures/npm-lockfile-old-version/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/npm-lockfile-old-version/package.json -------------------------------------------------------------------------------- /test/fixtures/npm-prune-5-3-issue/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/npm-prune-5-3-issue/package-lock.json -------------------------------------------------------------------------------- /test/fixtures/npm-prune-5-3-issue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/npm-prune-5-3-issue/package.json -------------------------------------------------------------------------------- /test/fixtures/npm-prune-5-6-issue/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/npm-prune-5-6-issue/package-lock.json -------------------------------------------------------------------------------- /test/fixtures/npm-prune-5-6-issue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/npm-prune-5-6-issue/package.json -------------------------------------------------------------------------------- /test/fixtures/npm-version-range/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/npm-version-range/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/npm-version-range/package.json -------------------------------------------------------------------------------- /test/fixtures/npm-version-specific/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/npm-version-specific/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/npm-version-specific/package.json -------------------------------------------------------------------------------- /test/fixtures/npm5/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/npm5/package-lock.json -------------------------------------------------------------------------------- /test/fixtures/npm5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/npm5/package.json -------------------------------------------------------------------------------- /test/fixtures/old-npm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/old-npm/package.json -------------------------------------------------------------------------------- /test/fixtures/optional-dependencies/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/optional-dependencies/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/optional-dependencies/package.json -------------------------------------------------------------------------------- /test/fixtures/pre-post-build-scripts/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/pre-post-build-scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/pre-post-build-scripts/package.json -------------------------------------------------------------------------------- /test/fixtures/print-node-options/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/print-node-options/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/print-node-options/package.json -------------------------------------------------------------------------------- /test/fixtures/range-with-space/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/range-with-space/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/range-with-space/package.json -------------------------------------------------------------------------------- /test/fixtures/same-npm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/same-npm/package.json -------------------------------------------------------------------------------- /test/fixtures/shrinkwrap/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/shrinkwrap/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/shrinkwrap/npm-shrinkwrap.json -------------------------------------------------------------------------------- /test/fixtures/shrinkwrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/shrinkwrap/package.json -------------------------------------------------------------------------------- /test/fixtures/skip-modules-checked-in/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/skip-modules-checked-in/node_modules/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/skip-modules-checked-in/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/skip-modules-checked-in/package.json -------------------------------------------------------------------------------- /test/fixtures/skip-modules-checked-in/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/skip-modules-checked-in/yarn.lock -------------------------------------------------------------------------------- /test/fixtures/slugignore-package-json/.slugignore: -------------------------------------------------------------------------------- 1 | package.json 2 | -------------------------------------------------------------------------------- /test/fixtures/specific-version/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/specific-version/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/specific-version/package.json -------------------------------------------------------------------------------- /test/fixtures/stable-node/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/stable-node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/stable-node/package.json -------------------------------------------------------------------------------- /test/fixtures/unstable-version/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/unstable-version/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/unstable-version/package.json -------------------------------------------------------------------------------- /test/fixtures/userconfig/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/userconfig/.npmrc -------------------------------------------------------------------------------- /test/fixtures/userconfig/README.md: -------------------------------------------------------------------------------- 1 | A fake README, to keep npm from polluting stderr. -------------------------------------------------------------------------------- /test/fixtures/userconfig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/userconfig/package.json -------------------------------------------------------------------------------- /test/fixtures/yarn-2-with-engine/.pnp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-with-engine/.pnp.js -------------------------------------------------------------------------------- /test/fixtures/yarn-2-with-engine/.yarn/cache/debug-npm-4.1.1-540248b3aa-2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-with-engine/.yarn/cache/debug-npm-4.1.1-540248b3aa-2.zip -------------------------------------------------------------------------------- /test/fixtures/yarn-2-with-engine/.yarn/cache/lodash-npm-4.17.15-566d9324f7-2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-with-engine/.yarn/cache/lodash-npm-4.17.15-566d9324f7-2.zip -------------------------------------------------------------------------------- /test/fixtures/yarn-2-with-engine/.yarn/cache/ms-npm-2.1.2-ec0c1512ff-2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-with-engine/.yarn/cache/ms-npm-2.1.2-ec0c1512ff-2.zip -------------------------------------------------------------------------------- /test/fixtures/yarn-2-with-engine/.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-with-engine/.yarn/install-state.gz -------------------------------------------------------------------------------- /test/fixtures/yarn-2-with-engine/.yarn/releases/yarn-rc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-with-engine/.yarn/releases/yarn-rc.js -------------------------------------------------------------------------------- /test/fixtures/yarn-2-with-engine/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-with-engine/.yarnrc.yml -------------------------------------------------------------------------------- /test/fixtures/yarn-2-with-engine/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-with-engine/package.json -------------------------------------------------------------------------------- /test/fixtures/yarn-2-with-engine/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-with-engine/yarn.lock -------------------------------------------------------------------------------- /test/fixtures/yarn-2-with-invalid-rc-files/.npmrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/yarn-2-with-invalid-rc-files/.pnp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-with-invalid-rc-files/.pnp.js -------------------------------------------------------------------------------- /test/fixtures/yarn-2-with-invalid-rc-files/.yarn/cache/debug-npm-4.1.1-540248b3aa-2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-with-invalid-rc-files/.yarn/cache/debug-npm-4.1.1-540248b3aa-2.zip -------------------------------------------------------------------------------- /test/fixtures/yarn-2-with-invalid-rc-files/.yarn/cache/lodash-npm-4.17.15-566d9324f7-2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-with-invalid-rc-files/.yarn/cache/lodash-npm-4.17.15-566d9324f7-2.zip -------------------------------------------------------------------------------- /test/fixtures/yarn-2-with-invalid-rc-files/.yarn/cache/ms-npm-2.1.2-ec0c1512ff-2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-with-invalid-rc-files/.yarn/cache/ms-npm-2.1.2-ec0c1512ff-2.zip -------------------------------------------------------------------------------- /test/fixtures/yarn-2-with-invalid-rc-files/.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-with-invalid-rc-files/.yarn/install-state.gz -------------------------------------------------------------------------------- /test/fixtures/yarn-2-with-invalid-rc-files/.yarn/releases/yarn-rc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-with-invalid-rc-files/.yarn/releases/yarn-rc.js -------------------------------------------------------------------------------- /test/fixtures/yarn-2-with-invalid-rc-files/.yarnrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/yarn-2-with-invalid-rc-files/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-with-invalid-rc-files/.yarnrc.yml -------------------------------------------------------------------------------- /test/fixtures/yarn-2-with-invalid-rc-files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-with-invalid-rc-files/package.json -------------------------------------------------------------------------------- /test/fixtures/yarn-2-with-invalid-rc-files/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-with-invalid-rc-files/yarn.lock -------------------------------------------------------------------------------- /test/fixtures/yarn-2-with-node-modules/.yarn/cache/debug-npm-4.2.0-9392baba7e-dcfb8ede26.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-with-node-modules/.yarn/cache/debug-npm-4.2.0-9392baba7e-dcfb8ede26.zip -------------------------------------------------------------------------------- /test/fixtures/yarn-2-with-node-modules/.yarn/cache/lodash-npm-4.17.19-fa87a8e838-ff2b7a95f0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-with-node-modules/.yarn/cache/lodash-npm-4.17.19-fa87a8e838-ff2b7a95f0.zip -------------------------------------------------------------------------------- /test/fixtures/yarn-2-with-node-modules/.yarn/cache/ms-npm-2.1.2-ec0c1512ff-9b65fb709b.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-with-node-modules/.yarn/cache/ms-npm-2.1.2-ec0c1512ff-9b65fb709b.zip -------------------------------------------------------------------------------- /test/fixtures/yarn-2-with-node-modules/.yarn/cache/typescript-npm-3.9.7-47ffbad2e0-10848a9c35.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-with-node-modules/.yarn/cache/typescript-npm-3.9.7-47ffbad2e0-10848a9c35.zip -------------------------------------------------------------------------------- /test/fixtures/yarn-2-with-node-modules/.yarn/cache/typescript-patch-ba0dbfd217-f0d3d9c987.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-with-node-modules/.yarn/cache/typescript-patch-ba0dbfd217-f0d3d9c987.zip -------------------------------------------------------------------------------- /test/fixtures/yarn-2-with-node-modules/.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-with-node-modules/.yarn/install-state.gz -------------------------------------------------------------------------------- /test/fixtures/yarn-2-with-node-modules/.yarn/releases/yarn-berry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-with-node-modules/.yarn/releases/yarn-berry.js -------------------------------------------------------------------------------- /test/fixtures/yarn-2-with-node-modules/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-with-node-modules/.yarnrc.yml -------------------------------------------------------------------------------- /test/fixtures/yarn-2-with-node-modules/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-with-node-modules/package.json -------------------------------------------------------------------------------- /test/fixtures/yarn-2-with-node-modules/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-with-node-modules/yarn.lock -------------------------------------------------------------------------------- /test/fixtures/yarn-2-without-cache/.pnp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-without-cache/.pnp.js -------------------------------------------------------------------------------- /test/fixtures/yarn-2-without-cache/.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-without-cache/.yarn/install-state.gz -------------------------------------------------------------------------------- /test/fixtures/yarn-2-without-cache/.yarn/releases/yarn-berry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-without-cache/.yarn/releases/yarn-berry.js -------------------------------------------------------------------------------- /test/fixtures/yarn-2-without-cache/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-without-cache/.yarnrc.yml -------------------------------------------------------------------------------- /test/fixtures/yarn-2-without-cache/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-without-cache/package.json -------------------------------------------------------------------------------- /test/fixtures/yarn-2-without-cache/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-without-cache/yarn.lock -------------------------------------------------------------------------------- /test/fixtures/yarn-2-without-workspace-plugin/.pnp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-without-workspace-plugin/.pnp.js -------------------------------------------------------------------------------- /test/fixtures/yarn-2-without-workspace-plugin/.yarn/cache/debug-npm-4.3.2-f0148b6afe-5543570879.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-without-workspace-plugin/.yarn/cache/debug-npm-4.3.2-f0148b6afe-5543570879.zip -------------------------------------------------------------------------------- /test/fixtures/yarn-2-without-workspace-plugin/.yarn/cache/lodash-npm-4.17.20-c0db62021c-c62101d250.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-without-workspace-plugin/.yarn/cache/lodash-npm-4.17.20-c0db62021c-c62101d250.zip -------------------------------------------------------------------------------- /test/fixtures/yarn-2-without-workspace-plugin/.yarn/cache/ms-npm-2.1.2-ec0c1512ff-9b65fb709b.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-without-workspace-plugin/.yarn/cache/ms-npm-2.1.2-ec0c1512ff-9b65fb709b.zip -------------------------------------------------------------------------------- /test/fixtures/yarn-2-without-workspace-plugin/.yarn/cache/typescript-npm-3.9.7-47ffbad2e0-10848a9c35.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-without-workspace-plugin/.yarn/cache/typescript-npm-3.9.7-47ffbad2e0-10848a9c35.zip -------------------------------------------------------------------------------- /test/fixtures/yarn-2-without-workspace-plugin/.yarn/cache/typescript-patch-2adb05d63d-f0d3d9c987.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-without-workspace-plugin/.yarn/cache/typescript-patch-2adb05d63d-f0d3d9c987.zip -------------------------------------------------------------------------------- /test/fixtures/yarn-2-without-workspace-plugin/.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-without-workspace-plugin/.yarn/install-state.gz -------------------------------------------------------------------------------- /test/fixtures/yarn-2-without-workspace-plugin/.yarn/releases/yarn-berry.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-without-workspace-plugin/.yarn/releases/yarn-berry.cjs -------------------------------------------------------------------------------- /test/fixtures/yarn-2-without-workspace-plugin/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-without-workspace-plugin/.yarnrc.yml -------------------------------------------------------------------------------- /test/fixtures/yarn-2-without-workspace-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-without-workspace-plugin/package.json -------------------------------------------------------------------------------- /test/fixtures/yarn-2-without-workspace-plugin/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-without-workspace-plugin/yarn.lock -------------------------------------------------------------------------------- /test/fixtures/yarn-2-without-yarn-path/.pnp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-without-yarn-path/.pnp.js -------------------------------------------------------------------------------- /test/fixtures/yarn-2-without-yarn-path/.yarn/cache/debug-npm-4.1.1-540248b3aa-1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-without-yarn-path/.yarn/cache/debug-npm-4.1.1-540248b3aa-1.zip -------------------------------------------------------------------------------- /test/fixtures/yarn-2-without-yarn-path/.yarn/cache/lodash-npm-4.17.15-566d9324f7-1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-without-yarn-path/.yarn/cache/lodash-npm-4.17.15-566d9324f7-1.zip -------------------------------------------------------------------------------- /test/fixtures/yarn-2-without-yarn-path/.yarn/cache/ms-npm-2.1.2-ec0c1512ff-1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-without-yarn-path/.yarn/cache/ms-npm-2.1.2-ec0c1512ff-1.zip -------------------------------------------------------------------------------- /test/fixtures/yarn-2-without-yarn-path/.yarn/releases/yarn-rc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-without-yarn-path/.yarn/releases/yarn-rc.js -------------------------------------------------------------------------------- /test/fixtures/yarn-2-without-yarn-path/.yarnrc.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/yarn-2-without-yarn-path/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-without-yarn-path/package.json -------------------------------------------------------------------------------- /test/fixtures/yarn-2-without-yarn-path/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-without-yarn-path/yarn.lock -------------------------------------------------------------------------------- /test/fixtures/yarn-2-without-yarn/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-without-yarn/.yarnrc.yml -------------------------------------------------------------------------------- /test/fixtures/yarn-2-without-yarn/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-without-yarn/package.json -------------------------------------------------------------------------------- /test/fixtures/yarn-2-without-yarn/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-without-yarn/yarn.lock -------------------------------------------------------------------------------- /test/fixtures/yarn-2-without-yarnrc-yml/.pnp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-without-yarnrc-yml/.pnp.js -------------------------------------------------------------------------------- /test/fixtures/yarn-2-without-yarnrc-yml/.yarn/cache/debug-npm-4.1.1-540248b3aa-1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-without-yarnrc-yml/.yarn/cache/debug-npm-4.1.1-540248b3aa-1.zip -------------------------------------------------------------------------------- /test/fixtures/yarn-2-without-yarnrc-yml/.yarn/cache/lodash-npm-4.17.15-566d9324f7-1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-without-yarnrc-yml/.yarn/cache/lodash-npm-4.17.15-566d9324f7-1.zip -------------------------------------------------------------------------------- /test/fixtures/yarn-2-without-yarnrc-yml/.yarn/cache/ms-npm-2.1.2-ec0c1512ff-1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-without-yarnrc-yml/.yarn/cache/ms-npm-2.1.2-ec0c1512ff-1.zip -------------------------------------------------------------------------------- /test/fixtures/yarn-2-without-yarnrc-yml/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-without-yarnrc-yml/package.json -------------------------------------------------------------------------------- /test/fixtures/yarn-2-without-yarnrc-yml/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2-without-yarnrc-yml/yarn.lock -------------------------------------------------------------------------------- /test/fixtures/yarn-2/.pnp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2/.pnp.js -------------------------------------------------------------------------------- /test/fixtures/yarn-2/.yarn/cache/debug-npm-4.3.2-f0148b6afe-5543570879.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2/.yarn/cache/debug-npm-4.3.2-f0148b6afe-5543570879.zip -------------------------------------------------------------------------------- /test/fixtures/yarn-2/.yarn/cache/lodash-npm-4.17.20-c0db62021c-c62101d250.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2/.yarn/cache/lodash-npm-4.17.20-c0db62021c-c62101d250.zip -------------------------------------------------------------------------------- /test/fixtures/yarn-2/.yarn/cache/ms-npm-2.1.2-ec0c1512ff-9b65fb709b.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2/.yarn/cache/ms-npm-2.1.2-ec0c1512ff-9b65fb709b.zip -------------------------------------------------------------------------------- /test/fixtures/yarn-2/.yarn/cache/typescript-npm-3.9.7-47ffbad2e0-10848a9c35.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2/.yarn/cache/typescript-npm-3.9.7-47ffbad2e0-10848a9c35.zip -------------------------------------------------------------------------------- /test/fixtures/yarn-2/.yarn/cache/typescript-patch-2adb05d63d-f0d3d9c987.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2/.yarn/cache/typescript-patch-2adb05d63d-f0d3d9c987.zip -------------------------------------------------------------------------------- /test/fixtures/yarn-2/.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2/.yarn/install-state.gz -------------------------------------------------------------------------------- /test/fixtures/yarn-2/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs -------------------------------------------------------------------------------- /test/fixtures/yarn-2/.yarn/releases/yarn-berry.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2/.yarn/releases/yarn-berry.cjs -------------------------------------------------------------------------------- /test/fixtures/yarn-2/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2/.yarnrc.yml -------------------------------------------------------------------------------- /test/fixtures/yarn-2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2/package.json -------------------------------------------------------------------------------- /test/fixtures/yarn-2/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-2/yarn.lock -------------------------------------------------------------------------------- /test/fixtures/yarn-and-npm-lockfiles/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-and-npm-lockfiles/package-lock.json -------------------------------------------------------------------------------- /test/fixtures/yarn-and-npm-lockfiles/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-and-npm-lockfiles/package.json -------------------------------------------------------------------------------- /test/fixtures/yarn-and-npm-lockfiles/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-and-npm-lockfiles/yarn.lock -------------------------------------------------------------------------------- /test/fixtures/yarn-and-shrinkwrap-lockfiles/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-and-shrinkwrap-lockfiles/npm-shrinkwrap.json -------------------------------------------------------------------------------- /test/fixtures/yarn-and-shrinkwrap-lockfiles/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-and-shrinkwrap-lockfiles/package.json -------------------------------------------------------------------------------- /test/fixtures/yarn-and-shrinkwrap-lockfiles/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-and-shrinkwrap-lockfiles/yarn.lock -------------------------------------------------------------------------------- /test/fixtures/yarn-engine-with-monorepo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-engine-with-monorepo/package.json -------------------------------------------------------------------------------- /test/fixtures/yarn-engine/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-engine/package.json -------------------------------------------------------------------------------- /test/fixtures/yarn-engine/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-engine/yarn.lock -------------------------------------------------------------------------------- /test/fixtures/yarn-invalid-semver/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-invalid-semver/package.json -------------------------------------------------------------------------------- /test/fixtures/yarn-invalid-semver/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-invalid-semver/yarn.lock -------------------------------------------------------------------------------- /test/fixtures/yarn-invalid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-invalid/package.json -------------------------------------------------------------------------------- /test/fixtures/yarn-invalid/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-invalid/yarn.lock -------------------------------------------------------------------------------- /test/fixtures/yarn-lockfile-out-of-date/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-lockfile-out-of-date/package.json -------------------------------------------------------------------------------- /test/fixtures/yarn-lockfile-out-of-date/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-lockfile-out-of-date/yarn.lock -------------------------------------------------------------------------------- /test/fixtures/yarn-native-cache-false/heroku-buildpack-features: -------------------------------------------------------------------------------- 1 | cache-native-yarn-cache=false 2 | -------------------------------------------------------------------------------- /test/fixtures/yarn-native-cache-false/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-native-cache-false/package.json -------------------------------------------------------------------------------- /test/fixtures/yarn-native-cache-false/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-native-cache-false/yarn.lock -------------------------------------------------------------------------------- /test/fixtures/yarn-native-cache/heroku-buildpack-features: -------------------------------------------------------------------------------- 1 | cache-native-yarn-cache=true 2 | -------------------------------------------------------------------------------- /test/fixtures/yarn-native-cache/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-native-cache/package.json -------------------------------------------------------------------------------- /test/fixtures/yarn-native-cache/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-native-cache/yarn.lock -------------------------------------------------------------------------------- /test/fixtures/yarn-old-deprecated-version/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-old-deprecated-version/package.json -------------------------------------------------------------------------------- /test/fixtures/yarn-old-deprecated-version/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-old-deprecated-version/yarn.lock -------------------------------------------------------------------------------- /test/fixtures/yarn-only-engine/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-only-engine/package.json -------------------------------------------------------------------------------- /test/fixtures/yarn-run/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-run/package.json -------------------------------------------------------------------------------- /test/fixtures/yarn-run/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-run/yarn.lock -------------------------------------------------------------------------------- /test/fixtures/yarn-semver/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-semver/package.json -------------------------------------------------------------------------------- /test/fixtures/yarn-semver/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-semver/yarn.lock -------------------------------------------------------------------------------- /test/fixtures/yarn-v1-semver/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-v1-semver/package.json -------------------------------------------------------------------------------- /test/fixtures/yarn-v1-semver/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-v1-semver/yarn.lock -------------------------------------------------------------------------------- /test/fixtures/yarn-workspaces/.yarnrc: -------------------------------------------------------------------------------- 1 | workspaces-experimental true -------------------------------------------------------------------------------- /test/fixtures/yarn-workspaces/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-workspaces/package.json -------------------------------------------------------------------------------- /test/fixtures/yarn-workspaces/packages/a/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-workspaces/packages/a/index.js -------------------------------------------------------------------------------- /test/fixtures/yarn-workspaces/packages/a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-workspaces/packages/a/package.json -------------------------------------------------------------------------------- /test/fixtures/yarn-workspaces/packages/b/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-workspaces/packages/b/index.js -------------------------------------------------------------------------------- /test/fixtures/yarn-workspaces/packages/b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-workspaces/packages/b/package.json -------------------------------------------------------------------------------- /test/fixtures/yarn-workspaces/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn-workspaces/yarn.lock -------------------------------------------------------------------------------- /test/fixtures/yarn/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn/package.json -------------------------------------------------------------------------------- /test/fixtures/yarn/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/fixtures/yarn/yarn.lock -------------------------------------------------------------------------------- /test/quick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/quick -------------------------------------------------------------------------------- /test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/run -------------------------------------------------------------------------------- /test/shunit2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/shunit2 -------------------------------------------------------------------------------- /test/unit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/unit -------------------------------------------------------------------------------- /test/unit-fixtures/features/build-dir-blank/heroku-buildpack-features: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unit-fixtures/features/build-dir-override/heroku-buildpack-features: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/unit-fixtures/features/build-dir-override/heroku-buildpack-features -------------------------------------------------------------------------------- /test/unit-fixtures/features/features: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/unit-fixtures/features/features -------------------------------------------------------------------------------- /test/unit-fixtures/features/features-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/unit-fixtures/features/features-v2 -------------------------------------------------------------------------------- /test/unit-fixtures/kvstore/empty-line: -------------------------------------------------------------------------------- 1 | 2 | a=b 3 | b=c 4 | -------------------------------------------------------------------------------- /test/unit-fixtures/kvstore/no-new-line: -------------------------------------------------------------------------------- 1 | a=b 2 | b=c -------------------------------------------------------------------------------- /test/utils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unfold/heroku-buildpack-pnpm/HEAD/test/utils --------------------------------------------------------------------------------