├── .devcontainer ├── Dockerfile ├── devcontainer.json └── post-create.sh ├── .dockerignore ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── DISCUSSION_TEMPLATE │ ├── request-help.yml │ └── suggest-an-idea.yml ├── ISSUE_TEMPLATE │ ├── administration-only.yml │ └── config.yml ├── actions │ ├── calculate-prefetch-matrix │ │ └── action.yml │ └── setup-node │ │ └── action.yml ├── contributing.md ├── label-actions.yml ├── pull_request_template.md ├── semantic.yml └── workflows │ ├── build.yml │ ├── codeql-analysis.yml │ ├── dependency-review.yml │ ├── devcontainer.yml │ ├── label-actions.yml │ ├── lock.yml │ ├── mend-slack.yml │ ├── scorecard.yml │ ├── trivy.yml │ ├── update-data.yml │ └── ws_scan.yaml ├── .gitignore ├── .husky └── pre-commit ├── .lgtm.yml ├── .ls-lint.yml ├── .markdownlint-cli2.jsonc ├── .npmrc ├── .nvmrc ├── .prettierignore ├── .prettierrc.json ├── .releaserc.json ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── SECURITY.md ├── __mocks__ └── fs.ts ├── codecov.yml ├── data ├── debian-distro-info.json ├── kubernetes-api.json5 ├── node-js-schedule.json └── ubuntu-distro-info.json ├── docs ├── development │ ├── adding-a-package-manager.md │ ├── assets │ │ ├── renovate-flow.md │ │ └── renovate-logic-flow.jpg │ ├── best-practices.md │ ├── branches-commits.md │ ├── bump-node-major.md │ ├── configuration.md │ ├── creating-editing-renovate-presets.md │ ├── design-decisions.md │ ├── help-us-help-you.md │ ├── issue-labeling.md │ ├── local-development.md │ ├── minimal-reproductions.md │ ├── new-package-manager-template.md │ ├── readme.md │ ├── remote-development.md │ ├── static-data.md │ ├── style-guide.md │ ├── triage-guide.md │ └── zod.md └── usage │ ├── .pages │ ├── about-us.md │ ├── assets │ └── images │ │ ├── all-dead.jpg │ │ ├── automerged-pr.png │ │ ├── azure-devops-setup-1.png │ │ ├── azure-devops-setup-2.png │ │ ├── broken-lockfile.jpg │ │ ├── gerrit-http-password.png │ │ ├── github-app-choose-repos.png │ │ ├── github-app-install.png │ │ ├── logo.png │ │ ├── merge-confidence.png │ │ ├── onboarding.png │ │ ├── opentelemetry_choose_trace.png │ │ ├── opentelemetry_pick_service.png │ │ ├── opentelemetry_trace_viewer.png │ │ ├── swissquote_cat_whack_a_mole.jpg │ │ ├── swissquote_stats.png │ │ ├── swissquote_sweating_guy.jpg │ │ └── swissquote_xkcd.png │ ├── bazel.md │ ├── bicep.md │ ├── bot-comparison.md │ ├── config-overview.md │ ├── config-presets.md │ ├── config-validation.md │ ├── configuration-options.md │ ├── configuration-templates.md │ ├── contributing-to-renovate.md │ ├── dependency-pinning.md │ ├── docker.md │ ├── examples │ ├── opentelemetry.md │ └── self-hosting.md │ ├── faq.md │ ├── getting-started │ ├── .pages │ ├── installing-onboarding.md │ ├── private-packages.md │ ├── running.md │ └── use-cases.md │ ├── gitlab-bot-security.md │ ├── golang.md │ ├── java.md │ ├── javascript.md │ ├── key-concepts │ ├── .pages │ ├── automerge.md │ ├── changelogs.md │ ├── dashboard.md │ ├── how-renovate-works.md │ ├── presets.md │ ├── pull-requests.md │ └── scheduling.md │ ├── known-limitations.md │ ├── merge-confidence.md │ ├── modules │ ├── .pages │ ├── datasource │ │ ├── .pages │ │ └── index.md │ ├── manager │ │ ├── .pages │ │ └── index.md │ ├── platform │ │ ├── .pages │ │ └── index.md │ └── versioning.md │ ├── node.md │ ├── noise-reduction.md │ ├── nuget.md │ ├── opentelemetry.md │ ├── php.md │ ├── python.md │ ├── reading-list.md │ ├── ruby.md │ ├── rust.md │ ├── security-and-permissions.md │ ├── self-hosted-configuration.md │ ├── self-hosted-experimental.md │ ├── semantic-commits.md │ ├── string-pattern-matching.md │ ├── templates.md │ ├── troubleshooting.md │ ├── updating-rebasing.md │ ├── upgrade-best-practices.md │ └── user-stories │ ├── .pages │ ├── maintaining-aur-packages-with-renovate.md │ └── swissquote.md ├── jest.config.ts ├── lib ├── config-validator.ts ├── config │ ├── __fixtures__ │ │ ├── private-pgp.pem │ │ └── private.pem │ ├── __snapshots__ │ │ ├── decrypt.spec.ts.snap │ │ ├── index.spec.ts.snap │ │ ├── massage.spec.ts.snap │ │ ├── migrate-validate.spec.ts.snap │ │ ├── migration.spec.ts.snap │ │ └── validation.spec.ts.snap │ ├── app-strings.ts │ ├── decrypt.spec.ts │ ├── decrypt.ts │ ├── defaults.spec.ts │ ├── defaults.ts │ ├── global.ts │ ├── index.spec.ts │ ├── index.ts │ ├── massage.spec.ts │ ├── massage.ts │ ├── migrate-validate.spec.ts │ ├── migrate-validate.ts │ ├── migration.spec.ts │ ├── migration.ts │ ├── migrations │ │ ├── base │ │ │ ├── abstract-migration.spec.ts │ │ │ ├── abstract-migration.ts │ │ │ ├── remove-property-migration.ts │ │ │ └── rename-property-migration.ts │ │ ├── custom │ │ │ ├── automerge-major-migration.spec.ts │ │ │ ├── automerge-major-migration.ts │ │ │ ├── automerge-migration.spec.ts │ │ │ ├── automerge-migration.ts │ │ │ ├── automerge-minor-migration.spec.ts │ │ │ ├── automerge-minor-migration.ts │ │ │ ├── automerge-patch-migration.spec.ts │ │ │ ├── automerge-patch-migration.ts │ │ │ ├── automerge-type-migration.spec.ts │ │ │ ├── automerge-type-migration.ts │ │ │ ├── azure-gitlab-automerge-migration.spec.ts │ │ │ ├── azure-gitlab-automerge-migration.ts │ │ │ ├── base-branch-migration.spec.ts │ │ │ ├── base-branch-migration.ts │ │ │ ├── binary-source-migration.spec.ts │ │ │ ├── binary-source-migration.ts │ │ │ ├── branch-name-migration.spec.ts │ │ │ ├── branch-name-migration.ts │ │ │ ├── branch-prefix-migration.spec.ts │ │ │ ├── branch-prefix-migration.ts │ │ │ ├── compatibility-migration.spec.ts │ │ │ ├── compatibility-migration.ts │ │ │ ├── composer-ignore-platform-reqs-migration.spec.ts │ │ │ ├── composer-ignore-platform-reqs-migration.ts │ │ │ ├── custom-managers-migration.spec.ts │ │ │ ├── custom-managers-migration.ts │ │ │ ├── datasource-migration.spec.ts │ │ │ ├── datasource-migration.ts │ │ │ ├── dep-types-migration.spec.ts │ │ │ ├── dep-types-migration.ts │ │ │ ├── dry-run-migration.spec.ts │ │ │ ├── dry-run-migration.ts │ │ │ ├── enabled-managers-migration.spec.ts │ │ │ ├── enabled-managers-migration.ts │ │ │ ├── extends-migration.spec.ts │ │ │ ├── extends-migration.ts │ │ │ ├── fetch-release-notes-migration.spec.ts │ │ │ ├── fetch-release-notes-migration.ts │ │ │ ├── go-mod-tidy-migration.spec.ts │ │ │ ├── go-mod-tidy-migration.ts │ │ │ ├── host-rules-migration.spec.ts │ │ │ ├── host-rules-migration.ts │ │ │ ├── ignore-node-modules-migration.spec.ts │ │ │ ├── ignore-node-modules-migration.ts │ │ │ ├── ignore-npmrc-file-migration.spec.ts │ │ │ ├── ignore-npmrc-file-migration.ts │ │ │ ├── include-forks-migration.spec.ts │ │ │ ├── include-forks-migration.ts │ │ │ ├── match-datasources-migration.spec.ts │ │ │ ├── match-datasources-migration.ts │ │ │ ├── match-managers-migration.spec.ts │ │ │ ├── match-managers-migration.ts │ │ │ ├── match-strings-migration.spec.ts │ │ │ ├── match-strings-migration.ts │ │ │ ├── node-migration.spec.ts │ │ │ ├── node-migration.ts │ │ │ ├── package-files-migration.spec.ts │ │ │ ├── package-files-migration.ts │ │ │ ├── package-name-migration.spec.ts │ │ │ ├── package-name-migration.ts │ │ │ ├── package-pattern-migration.spec.ts │ │ │ ├── package-pattern-migration.ts │ │ │ ├── package-rules-migration.spec.ts │ │ │ ├── package-rules-migration.ts │ │ │ ├── packages-migration.spec.ts │ │ │ ├── packages-migration.ts │ │ │ ├── path-rules-migration.spec.ts │ │ │ ├── path-rules-migration.ts │ │ │ ├── pin-versions-migration.spec.ts │ │ │ ├── pin-versions-migration.ts │ │ │ ├── post-update-options-migration.spec.ts │ │ │ ├── post-update-options-migration.ts │ │ │ ├── raise-deprecation-warnings-migration.spec.ts │ │ │ ├── raise-deprecation-warnings-migration.ts │ │ │ ├── rebase-conflicted-prs-migration.spec.ts │ │ │ ├── rebase-conflicted-prs-migration.ts │ │ │ ├── rebase-stale-prs-migration.spec.ts │ │ │ ├── rebase-stale-prs-migration.ts │ │ │ ├── recreate-closed-migration.spec.ts │ │ │ ├── recreate-closed-migration.ts │ │ │ ├── renovate-fork-migration.spec.ts │ │ │ ├── renovate-fork-migration.ts │ │ │ ├── require-config-migration.spec.ts │ │ │ ├── require-config-migration.ts │ │ │ ├── required-status-checks-migration.spec.ts │ │ │ ├── required-status-checks-migration.ts │ │ │ ├── schedule-migration.spec.ts │ │ │ ├── schedule-migration.ts │ │ │ ├── semantic-commits-migration.spec.ts │ │ │ ├── semantic-commits-migration.ts │ │ │ ├── semantic-prefix-migration.spec.ts │ │ │ ├── semantic-prefix-migration.ts │ │ │ ├── separate-major-release-migration.spec.ts │ │ │ ├── separate-major-release-migration.ts │ │ │ ├── separate-multiple-major-migration.spec.ts │ │ │ ├── separate-multiple-major-migration.ts │ │ │ ├── stability-days-migration.spec.ts │ │ │ ├── stability-days-migration.ts │ │ │ ├── suppress-notifications-migration.spec.ts │ │ │ ├── suppress-notifications-migration.ts │ │ │ ├── trust-level-migration.spec.ts │ │ │ ├── trust-level-migration.ts │ │ │ ├── unpublish-safe-migration.spec.ts │ │ │ ├── unpublish-safe-migration.ts │ │ │ ├── upgrade-in-range-migration.spec.ts │ │ │ ├── upgrade-in-range-migration.ts │ │ │ ├── version-strategy-migration.spec.ts │ │ │ └── version-strategy-migration.ts │ │ ├── index.ts │ │ ├── migrations-service.spec.ts │ │ ├── migrations-service.ts │ │ └── types.ts │ ├── options │ │ ├── index.spec.ts │ │ └── index.ts │ ├── parse.ts │ ├── presets │ │ ├── __fixtures__ │ │ │ └── renovate-config-ikatyang.json │ │ ├── __snapshots__ │ │ │ └── index.spec.ts.snap │ │ ├── common.ts │ │ ├── gitea │ │ │ ├── index.spec.ts │ │ │ └── index.ts │ │ ├── github │ │ │ ├── index.spec.ts │ │ │ └── index.ts │ │ ├── gitlab │ │ │ ├── index.spec.ts │ │ │ └── index.ts │ │ ├── http │ │ │ ├── index.spec.ts │ │ │ └── index.ts │ │ ├── index.spec.ts │ │ ├── index.ts │ │ ├── internal │ │ │ ├── auto-generate-replacements.ts │ │ │ ├── config.ts │ │ │ ├── default.ts │ │ │ ├── docker.ts │ │ │ ├── group.ts │ │ │ ├── helpers.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── merge-confidence.ts │ │ │ ├── monorepo.spec.ts │ │ │ ├── monorepo.ts │ │ │ ├── npm.ts │ │ │ ├── packages.ts │ │ │ ├── preview.ts │ │ │ ├── regex-managers.spec.ts │ │ │ ├── regex-managers.ts │ │ │ ├── replacements.ts │ │ │ ├── schedule.ts │ │ │ ├── security.ts │ │ │ └── workarounds.ts │ │ ├── local │ │ │ ├── common.spec.ts │ │ │ ├── common.ts │ │ │ ├── index.spec.ts │ │ │ └── index.ts │ │ ├── npm │ │ │ ├── index.spec.ts │ │ │ └── index.ts │ │ ├── types.ts │ │ ├── util.spec.ts │ │ └── util.ts │ ├── schema.ts │ ├── secrets.spec.ts │ ├── secrets.ts │ ├── types.ts │ ├── utils.ts │ ├── validation-helpers │ │ ├── managers.spec.ts │ │ ├── managers.ts │ │ └── types.ts │ ├── validation.spec.ts │ └── validation.ts ├── constants │ ├── category.ts │ ├── error-messages.ts │ ├── index.ts │ ├── platform.spec.ts │ └── platforms.ts ├── expose.cjs ├── globals.d.ts ├── instrumentation │ ├── decorator.spec.ts │ ├── decorator.ts │ ├── index.spec.ts │ ├── index.ts │ ├── reporting.spec.ts │ ├── reporting.ts │ ├── types.ts │ └── utils.ts ├── logger │ ├── __snapshots__ │ │ ├── config-serializer.spec.ts.snap │ │ └── err-serializer.spec.ts.snap │ ├── cmd-serializer.ts │ ├── config-serializer.spec.ts │ ├── config-serializer.ts │ ├── err-serializer.spec.ts │ ├── err-serializer.ts │ ├── index.spec.ts │ ├── index.ts │ ├── once.spec.ts │ ├── once.ts │ ├── pretty-stdout.spec.ts │ ├── pretty-stdout.ts │ ├── remap.spec.ts │ ├── remap.ts │ ├── types.ts │ ├── utils.spec.ts │ └── utils.ts ├── modules │ ├── datasource │ │ ├── __snapshots__ │ │ │ └── metadata.spec.ts.snap │ │ ├── api.ts │ │ ├── artifactory │ │ │ ├── __fixtures__ │ │ │ │ ├── releases-as-files.html │ │ │ │ └── releases-as-folders.html │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── common.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── aws-machine-image │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── types.ts │ │ ├── aws-rds │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── azure-bicep-resource │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── schema.ts │ │ ├── azure-pipelines-tasks │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── bazel │ │ │ ├── __fixtures__ │ │ │ │ ├── metadata-no-yanked-versions.json │ │ │ │ └── metadata-with-yanked-versions.json │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ ├── schema.spec.ts │ │ │ └── schema.ts │ │ ├── bitbucket-tags │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── cdnjs │ │ │ ├── __fixtures__ │ │ │ │ ├── d3-force.json │ │ │ │ └── sri.json │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ └── schema.ts │ │ ├── clojure │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── common.ts │ │ │ ├── index.spec.ts │ │ │ └── index.ts │ │ ├── common.spec.ts │ │ ├── common.ts │ │ ├── conan │ │ │ ├── __fixtures__ │ │ │ │ ├── fake.json │ │ │ │ ├── malformed.json │ │ │ │ ├── mixed_case.json │ │ │ │ ├── poco.json │ │ │ │ ├── poco.yaml │ │ │ │ └── poco_revisions.json │ │ │ ├── common.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── conda │ │ │ ├── __fixtures__ │ │ │ │ ├── pytest.json │ │ │ │ └── readme.md │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── common.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── types.ts │ │ ├── cpan │ │ │ ├── __fixtures__ │ │ │ │ ├── Plack.json │ │ │ │ └── empty.json │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── crate │ │ │ ├── __fixtures__ │ │ │ │ ├── amethyst │ │ │ │ ├── amethyst.json │ │ │ │ ├── libc │ │ │ │ ├── libc.json │ │ │ │ └── mypkg │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── custom │ │ │ ├── __fixtures__ │ │ │ │ └── nginx-downloads.html │ │ │ ├── formats │ │ │ │ ├── html.ts │ │ │ │ ├── index.ts │ │ │ │ ├── json.ts │ │ │ │ ├── plain.ts │ │ │ │ ├── types.ts │ │ │ │ └── yaml.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ ├── schema.ts │ │ │ └── utils.ts │ │ ├── dart-version │ │ │ ├── __fixtures__ │ │ │ │ ├── beta.json │ │ │ │ ├── dev.json │ │ │ │ └── stable.json │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── dart │ │ │ ├── __fixtures__ │ │ │ │ └── shared_preferences.json │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── datasource.spec.ts │ │ ├── datasource.ts │ │ ├── deno │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── schema.ts │ │ ├── docker │ │ │ ├── common.spec.ts │ │ │ ├── common.ts │ │ │ ├── ecr.ts │ │ │ ├── google.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ ├── schema.spec.ts │ │ │ ├── schema.ts │ │ │ └── types.ts │ │ ├── dotnet-version │ │ │ ├── __fixtures__ │ │ │ │ ├── releases-3.1.json │ │ │ │ ├── releases-5.0.json │ │ │ │ ├── releases-6.0.json │ │ │ │ ├── releases-7.0.json │ │ │ │ └── releases-index.json │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── schema.ts │ │ ├── endoflife-date │ │ │ ├── __fixtures__ │ │ │ │ ├── apache-cassandra.json │ │ │ │ ├── eks.json │ │ │ │ └── fairphone.json │ │ │ ├── common.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── schema.ts │ │ ├── flutter-version │ │ │ ├── __fixtures__ │ │ │ │ └── index.json │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── galaxy-collection │ │ │ ├── __fixtures__ │ │ │ │ ├── community_kubernetes_base.json │ │ │ │ ├── community_kubernetes_version_details_0.11.1.json │ │ │ │ ├── community_kubernetes_version_details_1.2.0.json │ │ │ │ ├── community_kubernetes_version_details_1.2.1.json │ │ │ │ └── community_kubernetes_versions.json │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── schema.ts │ │ ├── galaxy │ │ │ ├── __fixtures__ │ │ │ │ ├── empty │ │ │ │ └── timezone.json │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ └── schema.ts │ │ ├── git-refs │ │ │ ├── __fixtures__ │ │ │ │ └── ls-remote-1.txt │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── base.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── types.ts │ │ ├── git-tags │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── index.spec.ts │ │ │ └── index.ts │ │ ├── gitea-releases │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── schema.ts │ │ ├── gitea-tags │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── schema.ts │ │ ├── github-release-attachments │ │ │ ├── digest.spec.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ └── test │ │ │ │ └── index.ts │ │ ├── github-releases │ │ │ ├── index.spec.ts │ │ │ └── index.ts │ │ ├── github-runners │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── github-tags │ │ │ ├── index.spec.ts │ │ │ └── index.ts │ │ ├── gitlab-packages │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── common.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── types.ts │ │ ├── gitlab-releases │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── types.ts │ │ ├── gitlab-tags │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ ├── types.ts │ │ │ ├── util.spec.ts │ │ │ └── util.ts │ │ ├── go │ │ │ ├── __fixtures__ │ │ │ │ ├── go-get-digest.html │ │ │ │ ├── go-get-git-digest.html │ │ │ │ ├── go-get-github-ee.html │ │ │ │ ├── go-get-github.html │ │ │ │ ├── go-get-gitlab-ee-private-subgroup-api.html │ │ │ │ ├── go-get-gitlab-ee-private-subgroup.html │ │ │ │ ├── go-get-gitlab-ee-subgroup.html │ │ │ │ ├── go-get-gitlab-ee.html │ │ │ │ ├── go-get-gitlab.html │ │ │ │ └── go-kit.list.txt │ │ │ ├── __snapshots__ │ │ │ │ ├── index.spec.ts.snap │ │ │ │ └── releases-direct.spec.ts.snap │ │ │ ├── base.spec.ts │ │ │ ├── base.ts │ │ │ ├── common.ts │ │ │ ├── goproxy-parser.spec.ts │ │ │ ├── goproxy-parser.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ ├── releases-direct.spec.ts │ │ │ ├── releases-direct.ts │ │ │ ├── releases-goproxy.spec.ts │ │ │ ├── releases-goproxy.ts │ │ │ └── types.ts │ │ ├── golang-version │ │ │ ├── __fixtures__ │ │ │ │ ├── releases-invalid.go │ │ │ │ ├── releases-invalid2.go │ │ │ │ ├── releases-invalid3.go │ │ │ │ ├── releases-invalid4.go │ │ │ │ ├── releases-invalid5.go │ │ │ │ ├── releases-invalid6.go │ │ │ │ └── releases.go │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── index.spec.ts │ │ │ └── index.ts │ │ ├── gradle-version │ │ │ ├── __fixtures__ │ │ │ │ └── all.json │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── helm │ │ │ ├── __fixtures__ │ │ │ │ ├── index.yaml │ │ │ │ ├── index_blank-digest.yaml │ │ │ │ ├── index_emptypackage.yaml │ │ │ │ └── sample.yaml │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── common.spec.ts │ │ │ ├── common.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── hermit │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── types.ts │ │ ├── hex │ │ │ ├── __fixtures__ │ │ │ │ ├── certifi.json │ │ │ │ └── private_package.json │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ └── schema.ts │ │ ├── hexpm-bob │ │ │ ├── __fixtures__ │ │ │ │ ├── elixir │ │ │ │ │ └── builds.txt │ │ │ │ └── otp │ │ │ │ │ └── ubuntu-20.04 │ │ │ │ │ └── builds.txt │ │ │ ├── common.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── types.ts │ │ ├── index.spec.ts │ │ ├── index.ts │ │ ├── java-version │ │ │ ├── __fixtures__ │ │ │ │ ├── jre.json │ │ │ │ └── page.json │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── common.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── types.ts │ │ ├── jenkins-plugins │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── types.ts │ │ ├── kubernetes-api │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── maven │ │ │ ├── __fixtures__ │ │ │ │ ├── child-all-info │ │ │ │ │ ├── meta.xml │ │ │ │ │ └── pom.xml │ │ │ │ ├── child-empty │ │ │ │ │ ├── meta.xml │ │ │ │ │ └── pom.xml │ │ │ │ ├── child-no-info │ │ │ │ │ ├── meta.xml │ │ │ │ │ └── pom.xml │ │ │ │ ├── child-parent-cycle │ │ │ │ │ ├── child.meta.xml │ │ │ │ │ ├── child.pom.xml │ │ │ │ │ └── parent.pom.xml │ │ │ │ ├── child-scm-gitatcolon │ │ │ │ │ ├── meta.xml │ │ │ │ │ └── pom.xml │ │ │ │ ├── child-scm-gitatslash │ │ │ │ │ ├── meta.xml │ │ │ │ │ └── pom.xml │ │ │ │ ├── child-scm-gitprotocol │ │ │ │ │ ├── meta.xml │ │ │ │ │ └── pom.xml │ │ │ │ ├── child-scm │ │ │ │ │ ├── meta.xml │ │ │ │ │ └── pom.xml │ │ │ │ ├── child-url │ │ │ │ │ ├── meta.xml │ │ │ │ │ └── pom.xml │ │ │ │ ├── index.html │ │ │ │ ├── index.xml │ │ │ │ ├── metadata-extra.xml │ │ │ │ ├── metadata-invalid.xml │ │ │ │ ├── metadata-s3.xml │ │ │ │ ├── metadata-snapshot-only.xml │ │ │ │ ├── metadata-snapshot-version-invalid.xml │ │ │ │ ├── metadata-snapshot-version.xml │ │ │ │ ├── metadata.xml │ │ │ │ ├── parent-scm-homepage │ │ │ │ │ ├── meta.xml │ │ │ │ │ └── pom.xml │ │ │ │ ├── pom.scm-prefix.xml │ │ │ │ └── pom.xml │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── common.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ ├── s3.spec.ts │ │ │ ├── types.ts │ │ │ ├── util.spec.ts │ │ │ └── util.ts │ │ ├── metadata-manual.ts │ │ ├── metadata.spec.ts │ │ ├── metadata.ts │ │ ├── node-version │ │ │ ├── __fixtures__ │ │ │ │ └── index.json │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── common.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── types.ts │ │ ├── npm │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── common.ts │ │ │ ├── get.spec.ts │ │ │ ├── get.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── npmrc.spec.ts │ │ │ ├── npmrc.ts │ │ │ └── types.ts │ │ ├── nuget │ │ │ ├── __fixtures__ │ │ │ │ ├── azure_devops │ │ │ │ │ ├── nunit │ │ │ │ │ │ ├── nuspec.xml │ │ │ │ │ │ └── v3_registration.json │ │ │ │ │ └── v3_index.json │ │ │ │ ├── nlog │ │ │ │ │ ├── nuspec.xml │ │ │ │ │ ├── v3_catalog_1.json │ │ │ │ │ ├── v3_catalog_2.json │ │ │ │ │ ├── v3_catalog_3.json │ │ │ │ │ └── v3_registration.json │ │ │ │ ├── nunit │ │ │ │ │ ├── v2.xml │ │ │ │ │ ├── v2_noGitHubProjectUrl.xml │ │ │ │ │ ├── v2_no_release.xml │ │ │ │ │ ├── v2_paginated_1.xml │ │ │ │ │ ├── v2_paginated_2.xml │ │ │ │ │ ├── v2_withoutProjectUrl.xml │ │ │ │ │ ├── v3_nuget_org.xml │ │ │ │ │ └── v3_registration.json │ │ │ │ └── v3_index.json │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── common.spec.ts │ │ │ ├── common.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── types.ts │ │ │ ├── v2.ts │ │ │ └── v3.ts │ │ ├── orb │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── packagist │ │ │ ├── __fixtures__ │ │ │ │ ├── 1beyt.json │ │ │ │ ├── includes.json │ │ │ │ ├── mailchimp-api.json │ │ │ │ └── mailchimp-api~dev.json │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── schema.spec.ts │ │ │ └── schema.ts │ │ ├── pod │ │ │ ├── index.spec.ts │ │ │ └── index.ts │ │ ├── puppet-forge │ │ │ ├── __fixtures__ │ │ │ │ ├── puppetforge-deprecated-for.json │ │ │ │ ├── puppetforge-no-releases.json │ │ │ │ ├── puppetforge-response-with-nulls.json │ │ │ │ └── puppetforge-response.json │ │ │ ├── common.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── pypi │ │ │ ├── __fixtures__ │ │ │ │ ├── azure-cli-monitor-updated.json │ │ │ │ ├── azure-cli-monitor.json │ │ │ │ ├── versions-html-badfile.html │ │ │ │ ├── versions-html-data-requires-python.html │ │ │ │ ├── versions-html-hyphens.html │ │ │ │ ├── versions-html-mixed-case.html │ │ │ │ ├── versions-html-mixed-hyphens.html │ │ │ │ ├── versions-html-with-periods.html │ │ │ │ ├── versions-html-with-whitespaces.html │ │ │ │ └── versions-html.html │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── common.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── readme.md │ │ ├── repology │ │ │ ├── __fixtures__ │ │ │ │ ├── gcc-defaults.json │ │ │ │ ├── gcc.json │ │ │ │ ├── nginx.json │ │ │ │ ├── openjdk.json │ │ │ │ ├── pulseaudio.json │ │ │ │ └── python.json │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── types.ts │ │ ├── ruby-version │ │ │ ├── __fixtures__ │ │ │ │ └── releases.html │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── index.spec.ts │ │ │ └── index.ts │ │ ├── rubygems │ │ │ ├── common.ts │ │ │ ├── http.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── metadata-cache.spec.ts │ │ │ ├── metadata-cache.ts │ │ │ ├── readme.md │ │ │ ├── schema.spec.ts │ │ │ ├── schema.ts │ │ │ ├── versions-endpoint-cache.spec.ts │ │ │ └── versions-endpoint-cache.ts │ │ ├── sbt-package │ │ │ ├── __fixtures__ │ │ │ │ ├── maven-index.html │ │ │ │ └── sbt-plugins-index.html │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── util.spec.ts │ │ │ └── util.ts │ │ ├── sbt-plugin │ │ │ ├── __fixtures__ │ │ │ │ ├── maven-index.html │ │ │ │ └── sbt-plugins-index.html │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── index.spec.ts │ │ │ └── index.ts │ │ ├── schema.ts │ │ ├── terraform-module │ │ │ ├── __fixtures__ │ │ │ │ ├── registry-consul-versions.json │ │ │ │ ├── registry-consul.json │ │ │ │ ├── registry-versions-with-source.json │ │ │ │ ├── service-custom-discovery.json │ │ │ │ └── service-discovery.json │ │ │ ├── base.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── types.ts │ │ │ ├── utils.spec.ts │ │ │ └── utils.ts │ │ ├── terraform-provider │ │ │ ├── __fixtures__ │ │ │ │ ├── azurerm-provider-versions.json │ │ │ │ ├── azurerm-provider.json │ │ │ │ ├── releaseBackendIndexGoogleBeta.json │ │ │ │ ├── service-discovery.json │ │ │ │ └── telmate-proxmox-versions-response.json │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── types.ts │ │ ├── unity3d │ │ │ ├── __fixtures__ │ │ │ │ ├── beta.xml │ │ │ │ ├── lts.xml │ │ │ │ ├── no_channel.xml │ │ │ │ ├── no_item.xml │ │ │ │ ├── no_title.xml │ │ │ │ └── stable.xml │ │ │ ├── index.spec.ts │ │ │ └── index.ts │ │ ├── util.ts │ │ └── utils.spec.ts │ ├── manager │ │ ├── ansible-galaxy │ │ │ ├── __fixtures__ │ │ │ │ ├── collections1.yml │ │ │ │ ├── collections2.yml │ │ │ │ ├── galaxy.yml │ │ │ │ ├── helmRequirements.yml │ │ │ │ ├── requirements01.yml │ │ │ │ └── requirements02.yml │ │ │ ├── __snapshots__ │ │ │ │ └── extract.spec.ts.snap │ │ │ ├── collections-metadata.ts │ │ │ ├── collections.ts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ ├── roles.ts │ │ │ ├── types.ts │ │ │ └── util.ts │ │ ├── ansible │ │ │ ├── __fixtures__ │ │ │ │ ├── main1.yaml │ │ │ │ └── main2.yaml │ │ │ ├── __snapshots__ │ │ │ │ └── extract.spec.ts.snap │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── api.ts │ │ ├── argocd │ │ │ ├── __fixtures__ │ │ │ │ ├── malformedApplications.yml │ │ │ │ ├── randomManifest.yml │ │ │ │ ├── validApplication.yml │ │ │ │ └── validApplicationSet.yml │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ ├── schema.ts │ │ │ └── util.ts │ │ ├── asdf │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── upgradeable-tooling.ts │ │ ├── azure-pipelines │ │ │ ├── __fixtures__ │ │ │ │ ├── azure-pipelines-no-dependency.yaml │ │ │ │ └── azure-pipelines.yaml │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── schema.ts │ │ ├── batect-wrapper │ │ │ ├── __fixtures__ │ │ │ │ ├── malformed-wrapper │ │ │ │ └── valid-wrapper │ │ │ ├── artifacts.spec.ts │ │ │ ├── artifacts.ts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── batect │ │ │ ├── __fixtures__ │ │ │ │ ├── empty │ │ │ │ │ └── batect.yml │ │ │ │ ├── invalid │ │ │ │ │ └── batect.yml │ │ │ │ ├── no-containers-or-includes │ │ │ │ │ └── batect.yml │ │ │ │ └── valid │ │ │ │ │ ├── another-include.yml │ │ │ │ │ ├── batect.yml │ │ │ │ │ ├── include.yml │ │ │ │ │ └── subdir │ │ │ │ │ └── file.yml │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── types.ts │ │ ├── bazel-module │ │ │ ├── __fixtures__ │ │ │ │ └── extract │ │ │ │ │ └── multiple-bazelrcs │ │ │ │ │ ├── .bazelrc │ │ │ │ │ ├── MODULE.bazel │ │ │ │ │ ├── foo.bazelrc │ │ │ │ │ └── shared.bazelrc │ │ │ ├── bazelrc.spec.ts │ │ │ ├── bazelrc.ts │ │ │ ├── context.spec.ts │ │ │ ├── context.ts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── fragments.spec.ts │ │ │ ├── fragments.ts │ │ │ ├── index.ts │ │ │ ├── parser.spec.ts │ │ │ ├── parser.ts │ │ │ ├── readme.md │ │ │ ├── rules.spec.ts │ │ │ ├── rules.ts │ │ │ ├── starlark.spec.ts │ │ │ └── starlark.ts │ │ ├── bazel │ │ │ ├── __fixtures__ │ │ │ │ ├── WORKSPACE1 │ │ │ │ ├── WORKSPACE2 │ │ │ │ ├── WORKSPACE3 │ │ │ │ ├── container_pull │ │ │ │ └── repositories.bzl │ │ │ ├── __snapshots__ │ │ │ │ └── extract.spec.ts.snap │ │ │ ├── artifacts.spec.ts │ │ │ ├── artifacts.ts │ │ │ ├── common.spec.ts │ │ │ ├── common.ts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── parser.spec.ts │ │ │ ├── parser.ts │ │ │ ├── readme.md │ │ │ ├── rules │ │ │ │ ├── docker.ts │ │ │ │ ├── git.ts │ │ │ │ ├── go.ts │ │ │ │ ├── http.ts │ │ │ │ ├── index.spec.ts │ │ │ │ ├── index.ts │ │ │ │ ├── maven.ts │ │ │ │ └── oci.ts │ │ │ └── types.ts │ │ ├── bazelisk │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── bicep │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── bitbucket-pipelines │ │ │ ├── __fixtures__ │ │ │ │ └── bitbucket-pipelines.yaml │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── util.ts │ │ ├── buildkite │ │ │ ├── __fixtures__ │ │ │ │ ├── pipeline1.yml │ │ │ │ ├── pipeline2.yml │ │ │ │ ├── pipeline3.yml │ │ │ │ ├── pipeline4.yml │ │ │ │ ├── pipeline5.yml │ │ │ │ ├── pipeline6.yml │ │ │ │ ├── pipeline7.yml │ │ │ │ ├── pipeline8.yml │ │ │ │ └── pipeline9.yml │ │ │ ├── __snapshots__ │ │ │ │ └── extract.spec.ts.snap │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── bun │ │ │ ├── artifacts.spec.ts │ │ │ ├── artifacts.ts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── bundler │ │ │ ├── __fixtures__ │ │ │ │ ├── Gemfile.gitlab-foss │ │ │ │ ├── Gemfile.gitlab-foss.lock │ │ │ │ ├── Gemfile.mastodon │ │ │ │ ├── Gemfile.mastodon.lock │ │ │ │ ├── Gemfile.rails │ │ │ │ ├── Gemfile.rails.lock │ │ │ │ ├── Gemfile.rubyci │ │ │ │ ├── Gemfile.rubyci.lock │ │ │ │ ├── Gemfile.sourceBlock │ │ │ │ ├── Gemfile.sourceBlockWithGroups │ │ │ │ ├── Gemfile.sourceBlockWithNewLines │ │ │ │ ├── Gemfile.sourceBlockWithNewLines.lock │ │ │ │ ├── Gemfile.sourceGroup │ │ │ │ ├── Gemfile.webpacker │ │ │ │ └── Gemfile.webpacker.lock │ │ │ ├── __snapshots__ │ │ │ │ ├── extract.spec.ts.snap │ │ │ │ ├── gemfile.spec.ts.snap │ │ │ │ └── locked-version.spec.ts.snap │ │ │ ├── artifacts.spec.ts │ │ │ ├── artifacts.ts │ │ │ ├── common.spec.ts │ │ │ ├── common.ts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── gemfile.spec.ts │ │ │ ├── host-rules.spec.ts │ │ │ ├── host-rules.ts │ │ │ ├── index.ts │ │ │ ├── locked-version.spec.ts │ │ │ ├── locked-version.ts │ │ │ ├── readme.md │ │ │ ├── update-locked.spec.ts │ │ │ └── update-locked.ts │ │ ├── cake │ │ │ ├── __fixtures__ │ │ │ │ └── build.cake │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── cargo │ │ │ ├── __fixtures__ │ │ │ │ ├── Cargo.1.toml │ │ │ │ ├── Cargo.2.toml │ │ │ │ ├── Cargo.3.toml │ │ │ │ ├── Cargo.4.toml │ │ │ │ ├── Cargo.5.toml │ │ │ │ ├── Cargo.6.toml │ │ │ │ ├── cargo.6.config.toml │ │ │ │ ├── lockfile-parsing │ │ │ │ │ ├── Cargo.v1.lock │ │ │ │ │ ├── Cargo.v2.lock │ │ │ │ │ └── Cargo.v3.lock │ │ │ │ └── lockfile-update │ │ │ │ │ ├── Cargo.1.lock │ │ │ │ │ ├── Cargo.2.lock │ │ │ │ │ ├── Cargo.3.lock │ │ │ │ │ └── Cargo.toml │ │ │ ├── __snapshots__ │ │ │ │ ├── artifacts.spec.ts.snap │ │ │ │ └── extract.spec.ts.snap │ │ │ ├── artifacts.spec.ts │ │ │ ├── artifacts.ts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── locked-version.spec.ts │ │ │ ├── locked-version.ts │ │ │ ├── range.spec.ts │ │ │ ├── range.ts │ │ │ ├── readme.md │ │ │ ├── schema.ts │ │ │ ├── types.ts │ │ │ ├── update-locked.spec.ts │ │ │ ├── update-locked.ts │ │ │ ├── update.spec.ts │ │ │ ├── update.ts │ │ │ └── utils.ts │ │ ├── cdnurl │ │ │ ├── __fixtures__ │ │ │ │ └── sample.txt │ │ │ ├── __snapshots__ │ │ │ │ └── extract.spec.ts.snap │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── circleci │ │ │ ├── __fixtures__ │ │ │ │ ├── config.yml │ │ │ │ ├── config2.yml │ │ │ │ └── config3.yml │ │ │ ├── __snapshots__ │ │ │ │ └── extract.spec.ts.snap │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── range.spec.ts │ │ │ ├── range.ts │ │ │ └── readme.md │ │ ├── cloudbuild │ │ │ ├── __fixtures__ │ │ │ │ └── cloudbuild.yml │ │ │ ├── __snapshots__ │ │ │ │ └── extract.spec.ts.snap │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── cocoapods │ │ │ ├── __fixtures__ │ │ │ │ ├── Podfile.complex │ │ │ │ └── Podfile.simple │ │ │ ├── __snapshots__ │ │ │ │ └── artifacts.spec.ts.snap │ │ │ ├── artifacts.spec.ts │ │ │ ├── artifacts.ts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── types.ts │ │ ├── composer │ │ │ ├── __fixtures__ │ │ │ │ ├── composer1.json │ │ │ │ ├── composer2.json │ │ │ │ ├── composer3.json │ │ │ │ ├── composer4.json │ │ │ │ ├── composer5.json │ │ │ │ ├── composer5.lock │ │ │ │ └── composer6.json │ │ │ ├── __snapshots__ │ │ │ │ └── extract.spec.ts.snap │ │ │ ├── artifacts.spec.ts │ │ │ ├── artifacts.ts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── range.spec.ts │ │ │ ├── range.ts │ │ │ ├── readme.md │ │ │ ├── schema.spec.ts │ │ │ ├── schema.ts │ │ │ ├── types.ts │ │ │ ├── update-locked.spec.ts │ │ │ ├── update-locked.ts │ │ │ ├── utils.spec.ts │ │ │ └── utils.ts │ │ ├── conan │ │ │ ├── __fixtures__ │ │ │ │ ├── conanfile.py │ │ │ │ ├── conanfile.txt │ │ │ │ └── conanfile2.txt │ │ │ ├── common.ts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── range.spec.ts │ │ │ ├── range.ts │ │ │ └── readme.md │ │ ├── cpanfile │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── language.ts │ │ │ ├── parser.ts │ │ │ └── readme.md │ │ ├── crossplane │ │ │ ├── __fixtures__ │ │ │ │ ├── malformedPackages.yml │ │ │ │ ├── mixedManifest.yml │ │ │ │ ├── randomManifest.yml │ │ │ │ └── validPackages.yml │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── schema.ts │ │ ├── custom │ │ │ ├── api.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── regex │ │ │ │ ├── __fixtures__ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── ansible.yml │ │ │ │ │ ├── example.json │ │ │ │ │ └── gitlab-ci.yml │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ ├── index.spec.ts │ │ │ │ ├── index.ts │ │ │ │ ├── readme.md │ │ │ │ ├── strategies.ts │ │ │ │ ├── types.ts │ │ │ │ ├── utils.spec.ts │ │ │ │ └── utils.ts │ │ │ └── types.ts │ │ ├── deps-edn │ │ │ ├── __fixtures__ │ │ │ │ └── deps.edn │ │ │ ├── __snapshots__ │ │ │ │ └── parser.spec.ts.snap │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── parser.spec.ts │ │ │ ├── parser.ts │ │ │ ├── readme.md │ │ │ └── types.ts │ │ ├── docker-compose │ │ │ ├── __fixtures__ │ │ │ │ ├── docker-compose.1.yml │ │ │ │ ├── docker-compose.3-default-val.yml │ │ │ │ ├── docker-compose.3-no-version.yml │ │ │ │ └── docker-compose.3.yml │ │ │ ├── __snapshots__ │ │ │ │ └── extract.spec.ts.snap │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── schema.ts │ │ ├── dockerfile │ │ │ ├── __fixtures__ │ │ │ │ ├── 1.Dockerfile │ │ │ │ ├── 2.Dockerfile │ │ │ │ ├── 3.Dockerfile │ │ │ │ └── 4.Dockerfile │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── droneci │ │ │ ├── __fixtures__ │ │ │ │ ├── .drone.yml │ │ │ │ └── .drone2.yml │ │ │ ├── __snapshots__ │ │ │ │ └── extract.spec.ts.snap │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── fingerprint.spec.ts │ │ ├── fleet │ │ │ ├── __fixtures__ │ │ │ │ ├── invalid_fleet.yaml │ │ │ │ ├── invalid_gitrepo.yaml │ │ │ │ ├── valid_fleet.yaml │ │ │ │ ├── valid_fleet_helm_target_customization.yaml │ │ │ │ └── valid_gitrepo.yaml │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── schema.ts │ │ ├── flux │ │ │ ├── __fixtures__ │ │ │ │ ├── flux-system │ │ │ │ │ └── gotk-components.yaml │ │ │ │ ├── gitSource.yaml │ │ │ │ ├── helmOCIRelease.yaml │ │ │ │ ├── helmOCIRelease2.yaml │ │ │ │ ├── helmOCISource.yaml │ │ │ │ ├── helmOCISource2.yaml │ │ │ │ ├── helmRelease.yaml │ │ │ │ ├── helmSource.yaml │ │ │ │ ├── multidoc.yaml │ │ │ │ └── ociSource.yaml │ │ │ ├── artifacts.spec.ts │ │ │ ├── artifacts.ts │ │ │ ├── common.ts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ ├── schema.ts │ │ │ └── types.ts │ │ ├── fvm │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── git-submodules │ │ │ ├── __fixtures__ │ │ │ │ ├── .gitmodules.1 │ │ │ │ ├── .gitmodules.2 │ │ │ │ ├── .gitmodules.3 │ │ │ │ ├── .gitmodules.4 │ │ │ │ ├── .gitmodules.5 │ │ │ │ ├── .gitmodules.6 │ │ │ │ └── .gitmodules.7 │ │ │ ├── artifact.spec.ts │ │ │ ├── artifacts.ts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ ├── types.ts │ │ │ ├── update.spec.ts │ │ │ └── update.ts │ │ ├── github-actions │ │ │ ├── __fixtures__ │ │ │ │ ├── workflow_1.yml │ │ │ │ ├── workflow_2.yml │ │ │ │ ├── workflow_3.yml │ │ │ │ └── workflow_4.yml │ │ │ ├── __snapshots__ │ │ │ │ └── extract.spec.ts.snap │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── types.ts │ │ ├── gitlabci-include │ │ │ ├── __fixtures__ │ │ │ │ ├── gitlab-ci.1.yaml │ │ │ │ ├── gitlab-ci.2.yaml │ │ │ │ ├── gitlab-ci.3.yaml │ │ │ │ ├── gitlab-ci.4.yaml │ │ │ │ ├── include.1.yml │ │ │ │ └── include.2.yml │ │ │ ├── __snapshots__ │ │ │ │ └── extract.spec.ts.snap │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── gitlabci │ │ │ ├── __fixtures__ │ │ │ │ ├── gitlab-ci.1.yaml │ │ │ │ ├── gitlab-ci.2.yaml │ │ │ │ ├── gitlab-ci.3.yaml │ │ │ │ ├── gitlab-ci.4.yaml │ │ │ │ ├── gitlab-ci.5.yaml │ │ │ │ ├── gitlab-ci.6.yaml │ │ │ │ ├── gitlab-ci.7.yaml │ │ │ │ ├── gitlab-ci.reference.yaml │ │ │ │ ├── gitlab-ci.yaml │ │ │ │ ├── include.1.yml │ │ │ │ └── include.yml │ │ │ ├── __snapshots__ │ │ │ │ └── extract.spec.ts.snap │ │ │ ├── common.spec.ts │ │ │ ├── common.ts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ ├── types.ts │ │ │ ├── utils.spec.ts │ │ │ └── utils.ts │ │ ├── gomod │ │ │ ├── __fixtures__ │ │ │ │ ├── 1 │ │ │ │ │ └── go-mod │ │ │ │ ├── 2 │ │ │ │ │ └── go-mod │ │ │ │ └── 3 │ │ │ │ │ └── go-mod │ │ │ ├── __snapshots__ │ │ │ │ ├── extract.spec.ts.snap │ │ │ │ └── update.spec.ts.snap │ │ │ ├── artifacts.spec.ts │ │ │ ├── artifacts.ts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ ├── types.ts │ │ │ ├── update.spec.ts │ │ │ └── update.ts │ │ ├── gradle-wrapper │ │ │ ├── __fixtures__ │ │ │ │ ├── custom-gradle-wrapper-all.properties │ │ │ │ ├── custom-gradle-wrapper-bin.properties │ │ │ │ ├── expectedFiles │ │ │ │ │ ├── gradle │ │ │ │ │ │ └── wrapper │ │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ │ ├── gradlew │ │ │ │ │ └── gradlew.bat │ │ │ │ ├── gradle-wrapper-all.properties │ │ │ │ ├── gradle-wrapper-bin.properties │ │ │ │ ├── gradle-wrapper-prerelease.properties │ │ │ │ ├── gradle-wrapper-sum.properties │ │ │ │ ├── gradle-wrapper-unknown-format.properties │ │ │ │ ├── gradle-wrapper-whitespace.properties │ │ │ │ ├── testFiles-copy │ │ │ │ │ ├── gradle │ │ │ │ │ │ └── wrapper │ │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ │ ├── gradlew │ │ │ │ │ └── gradlew.bat │ │ │ │ ├── testFiles │ │ │ │ │ ├── gradle │ │ │ │ │ │ └── wrapper │ │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ │ ├── gradlew │ │ │ │ │ └── gradlew.bat │ │ │ │ └── wrongCmd │ │ │ │ │ ├── gradlew │ │ │ │ │ └── gradlew.bat │ │ │ ├── artifacts.spec.ts │ │ │ ├── artifacts.ts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ ├── types.ts │ │ │ ├── util.spec.ts │ │ │ └── utils.ts │ │ ├── gradle │ │ │ ├── __fixtures__ │ │ │ │ ├── 1 │ │ │ │ │ └── libs.versions.toml │ │ │ │ ├── 2 │ │ │ │ │ └── libs.versions.toml │ │ │ │ ├── 3 │ │ │ │ │ └── libs.versions.toml │ │ │ │ └── build.gradle.example1 │ │ │ ├── __snapshots__ │ │ │ │ └── parser.spec.ts.snap │ │ │ ├── artifacts.spec.ts │ │ │ ├── artifacts.ts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── extract │ │ │ │ ├── catalog.ts │ │ │ │ ├── consistent-versions-plugin.spec.ts │ │ │ │ └── consistent-versions-plugin.ts │ │ │ ├── index.ts │ │ │ ├── parser.spec.ts │ │ │ ├── parser.ts │ │ │ ├── parser │ │ │ │ ├── apply-from.ts │ │ │ │ ├── assignments.ts │ │ │ │ ├── common.spec.ts │ │ │ │ ├── common.ts │ │ │ │ ├── dependencies.ts │ │ │ │ ├── handlers.ts │ │ │ │ ├── objects.ts │ │ │ │ ├── plugins.ts │ │ │ │ ├── registry-urls.ts │ │ │ │ └── version-catalogs.ts │ │ │ ├── readme.md │ │ │ ├── types.ts │ │ │ ├── update.spec.ts │ │ │ ├── update.ts │ │ │ ├── utils.spec.ts │ │ │ └── utils.ts │ │ ├── helm-requirements │ │ │ ├── __snapshots__ │ │ │ │ └── extract.spec.ts.snap │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── helm-values │ │ │ ├── __fixtures__ │ │ │ │ ├── default_chart_init_values.yaml │ │ │ │ ├── multi_and_nested_image_values.yaml │ │ │ │ └── single_file_with_multiple_documents.yaml │ │ │ ├── __snapshots__ │ │ │ │ └── extract.spec.ts.snap │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ ├── types.ts │ │ │ └── util.ts │ │ ├── helmfile │ │ │ ├── __fixtures__ │ │ │ │ ├── go-template.yaml │ │ │ │ ├── multidoc.yaml │ │ │ │ └── uses-kustomization.yaml │ │ │ ├── __snapshots__ │ │ │ │ └── extract.spec.ts.snap │ │ │ ├── artifacts.spec.ts │ │ │ ├── artifacts.ts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ ├── schema.ts │ │ │ └── utils.ts │ │ ├── helmsman │ │ │ ├── __fixtures__ │ │ │ │ ├── empty.yaml │ │ │ │ └── validHelmsfile.yaml │ │ │ ├── __snapshots__ │ │ │ │ └── extract.spec.ts.snap │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── types.ts │ │ ├── helmv3 │ │ │ ├── __fixtures__ │ │ │ │ ├── Chart.yaml │ │ │ │ ├── ChartAlias.yaml │ │ │ │ ├── ChartECR.yaml │ │ │ │ ├── oci_1.lock │ │ │ │ ├── oci_1_alias.lock │ │ │ │ ├── oci_1_ecr.lock │ │ │ │ ├── oci_2.lock │ │ │ │ ├── oci_2_alias.lock │ │ │ │ └── oci_2_ecr.lock │ │ │ ├── __snapshots__ │ │ │ │ ├── artifacts.spec.ts.snap │ │ │ │ └── extract.spec.ts.snap │ │ │ ├── artifacts.spec.ts │ │ │ ├── artifacts.ts │ │ │ ├── common.ts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ ├── types.ts │ │ │ ├── update.spec.ts │ │ │ ├── update.ts │ │ │ ├── utils.spec.ts │ │ │ └── utils.ts │ │ ├── hermit │ │ │ ├── artifacts.spec.ts │ │ │ ├── artifacts.ts │ │ │ ├── default-config.spec.ts │ │ │ ├── default-config.ts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ ├── types.ts │ │ │ ├── update.spec.ts │ │ │ └── update.ts │ │ ├── homebrew │ │ │ ├── __fixtures__ │ │ │ │ ├── aalib.rb │ │ │ │ ├── aap.rb │ │ │ │ ├── acmetool.rb │ │ │ │ ├── aide.rb │ │ │ │ └── ibazel.rb │ │ │ ├── __snapshots__ │ │ │ │ ├── extract.spec.ts.snap │ │ │ │ └── update.spec.ts.snap │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ ├── types.ts │ │ │ ├── update.spec.ts │ │ │ ├── update.ts │ │ │ ├── util.spec.ts │ │ │ └── util.ts │ │ ├── html │ │ │ ├── __fixtures__ │ │ │ │ ├── axios.json │ │ │ │ ├── nothing.html │ │ │ │ └── sample.html │ │ │ ├── __snapshots__ │ │ │ │ └── extract.spec.ts.snap │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── index.spec.ts │ │ ├── index.ts │ │ ├── jenkins │ │ │ ├── __fixtures__ │ │ │ │ ├── empty.txt │ │ │ │ ├── empty.yaml │ │ │ │ ├── invalid.yaml │ │ │ │ ├── plugins.txt │ │ │ │ └── plugins.yaml │ │ │ ├── __snapshots__ │ │ │ │ └── extract.spec.ts.snap │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── types.ts │ │ ├── jsonnet-bundler │ │ │ ├── __fixtures__ │ │ │ │ ├── jsonnetfile-local-dependencies.json │ │ │ │ ├── jsonnetfile-no-dependencies.json │ │ │ │ ├── jsonnetfile-with-name.json │ │ │ │ └── jsonnetfile.json │ │ │ ├── __snapshots__ │ │ │ │ ├── artifacts.spec.ts.snap │ │ │ │ └── extract.spec.ts.snap │ │ │ ├── artifacts.spec.ts │ │ │ ├── artifacts.ts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── types.ts │ │ ├── kotlin-script │ │ │ ├── __fixtures__ │ │ │ │ ├── custom-repositories.main.kts │ │ │ │ ├── generic-case.main.kts │ │ │ │ └── missing-parts.main.kts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── kubernetes │ │ │ ├── __fixtures__ │ │ │ │ ├── array-syntax.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── gitlab-ci.yaml │ │ │ │ ├── kubernetes.registry-alias.yaml │ │ │ │ └── kubernetes.yaml │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── types.ts │ │ ├── kustomize │ │ │ ├── __fixtures__ │ │ │ │ ├── component.yaml │ │ │ │ ├── depsInResources.yaml │ │ │ │ ├── digest.yaml │ │ │ │ ├── gitImages.yaml │ │ │ │ ├── gitSshBase.yaml │ │ │ │ ├── gitSubdir.yaml │ │ │ │ ├── kustomizeEmpty.yaml │ │ │ │ ├── kustomizeHelmChart.yaml │ │ │ │ ├── kustomizeHttp.yaml │ │ │ │ ├── kustomizeWithLocal.yaml │ │ │ │ ├── newName.yaml │ │ │ │ ├── newTag.yaml │ │ │ │ ├── service-1 │ │ │ │ │ └── kustomization.yaml │ │ │ │ └── service.yaml │ │ │ ├── __snapshots__ │ │ │ │ └── extract.spec.ts.snap │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── types.ts │ │ ├── leiningen │ │ │ ├── __fixtures__ │ │ │ │ └── project.clj │ │ │ ├── __snapshots__ │ │ │ │ └── extract.spec.ts.snap │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── types.ts │ │ ├── maven-wrapper │ │ │ ├── artifacts.spec.ts │ │ │ ├── artifacts.ts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── types.ts │ │ ├── maven │ │ │ ├── __fixtures__ │ │ │ │ ├── child.pom.xml │ │ │ │ ├── complex.settings.xml │ │ │ │ ├── grouping.pom.xml │ │ │ │ ├── infinite_recursive_props.pom.xml │ │ │ │ ├── minimum.pom.xml │ │ │ │ ├── mirror.settings.xml │ │ │ │ ├── multiple_usages_props.pom.xml │ │ │ │ ├── parent.pom.xml │ │ │ │ ├── prerelease.pom.xml │ │ │ │ ├── profile.settings.xml │ │ │ │ ├── recursive_props.pom.xml │ │ │ │ └── simple.pom.xml │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ ├── types.ts │ │ │ ├── update.spec.ts │ │ │ └── update.ts │ │ ├── metadata.spec.ts │ │ ├── meteor │ │ │ ├── __fixtures__ │ │ │ │ ├── package-1.js │ │ │ │ └── package-2.js │ │ │ ├── __snapshots__ │ │ │ │ └── extract.spec.ts.snap │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── mint │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── mix │ │ │ ├── __fixtures__ │ │ │ │ └── mix.exs │ │ │ ├── __snapshots__ │ │ │ │ └── artifacts.spec.ts.snap │ │ │ ├── artifacts.spec.ts │ │ │ ├── artifacts.ts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── nix │ │ │ ├── artifacts.spec.ts │ │ │ ├── artifacts.ts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── nodenv │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── npm │ │ │ ├── __fixtures__ │ │ │ │ ├── inputs │ │ │ │ │ ├── 01-glob.json │ │ │ │ │ ├── 01-package-manager.json │ │ │ │ │ ├── 01.json │ │ │ │ │ ├── 02.json │ │ │ │ │ ├── patch1.json │ │ │ │ │ ├── patch2.json │ │ │ │ │ └── workspaces.json │ │ │ │ ├── invalid-name.json │ │ │ │ ├── is-object.json │ │ │ │ ├── lockfile-parsing │ │ │ │ │ ├── package-lock.json │ │ │ │ │ ├── package.json │ │ │ │ │ └── pnpm-lock.yaml │ │ │ │ ├── npm7 │ │ │ │ │ ├── package-lock.json │ │ │ │ │ └── package.json │ │ │ │ ├── npm9 │ │ │ │ │ ├── package-lock.json │ │ │ │ │ └── package.json │ │ │ │ ├── outputs │ │ │ │ │ ├── 011.json │ │ │ │ │ ├── 012.json │ │ │ │ │ ├── 013.json │ │ │ │ │ ├── 014.json │ │ │ │ │ ├── patch1o.json │ │ │ │ │ └── patch2o.json │ │ │ │ ├── plocktest1 │ │ │ │ │ ├── package-lock.json │ │ │ │ │ ├── package.json │ │ │ │ │ └── yarn.lock │ │ │ │ ├── pnpm-monorepo │ │ │ │ │ ├── nested-packages │ │ │ │ │ │ └── group │ │ │ │ │ │ │ ├── a │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ └── b │ │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── non-nested-packages │ │ │ │ │ │ ├── a │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ └── b │ │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── package.json │ │ │ │ │ ├── pnpm-lock.yaml │ │ │ │ │ ├── pnpm-workspace.yaml │ │ │ │ │ ├── solo-package-leading-dot-slash │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── solo-package-leading-double-dot-slash │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── solo-package-trailing-slash │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── solo-package │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── test │ │ │ │ │ │ └── test-package │ │ │ │ │ │ │ └── package.json │ │ │ │ │ └── tests │ │ │ │ │ │ └── test-package2 │ │ │ │ │ │ └── package.json │ │ │ │ ├── yarn1-invalid-name │ │ │ │ │ ├── package.json │ │ │ │ │ └── yarn.lock │ │ │ │ ├── yarn2.2 │ │ │ │ │ ├── package.json │ │ │ │ │ └── yarn.lock │ │ │ │ └── yarn2 │ │ │ │ │ ├── package.json │ │ │ │ │ └── yarn.lock │ │ │ ├── __snapshots__ │ │ │ │ └── utils.spec.ts.snap │ │ │ ├── detect.spec.ts │ │ │ ├── detect.ts │ │ │ ├── extract │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── index.spec.ts.snap │ │ │ │ │ ├── pnpm.spec.ts.snap │ │ │ │ │ └── yarn.spec.ts.snap │ │ │ │ ├── common │ │ │ │ │ ├── dependency.ts │ │ │ │ │ ├── node.ts │ │ │ │ │ ├── overrides.ts │ │ │ │ │ └── package-file.ts │ │ │ │ ├── index.spec.ts │ │ │ │ ├── index.ts │ │ │ │ ├── npm.spec.ts │ │ │ │ ├── npm.ts │ │ │ │ ├── pnpm.spec.ts │ │ │ │ ├── pnpm.ts │ │ │ │ ├── post │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locked-versions.spec.ts │ │ │ │ │ ├── locked-versions.ts │ │ │ │ │ ├── monorepo.spec.ts │ │ │ │ │ └── monorepo.ts │ │ │ │ ├── types.ts │ │ │ │ ├── utils.spec.ts │ │ │ │ ├── utils.ts │ │ │ │ ├── yarn.spec.ts │ │ │ │ ├── yarn.ts │ │ │ │ ├── yarnrc.spec.ts │ │ │ │ └── yarnrc.ts │ │ │ ├── index.ts │ │ │ ├── post-update │ │ │ │ ├── __fixtures__ │ │ │ │ │ ├── manager-field │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── parent │ │ │ │ │ │ └── package.json │ │ │ │ │ └── update-lockfile-massage-1 │ │ │ │ │ │ ├── package-lock.json │ │ │ │ │ │ └── package.json │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── index.spec.ts.snap │ │ │ │ │ ├── npm.spec.ts.snap │ │ │ │ │ ├── pnpm.spec.ts.snap │ │ │ │ │ └── yarn.spec.ts.snap │ │ │ │ ├── index.spec.ts │ │ │ │ ├── index.ts │ │ │ │ ├── node-version.spec.ts │ │ │ │ ├── node-version.ts │ │ │ │ ├── npm.spec.ts │ │ │ │ ├── npm.ts │ │ │ │ ├── pnpm.spec.ts │ │ │ │ ├── pnpm.ts │ │ │ │ ├── rules.spec.ts │ │ │ │ ├── rules.ts │ │ │ │ ├── types.ts │ │ │ │ ├── utils.ts │ │ │ │ ├── yarn.spec.ts │ │ │ │ └── yarn.ts │ │ │ ├── range.spec.ts │ │ │ ├── range.ts │ │ │ ├── readme.md │ │ │ ├── schema.ts │ │ │ ├── types.ts │ │ │ ├── update │ │ │ │ ├── dependency │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ ├── index.spec.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ ├── locked-dependency │ │ │ │ │ ├── common │ │ │ │ │ │ ├── __fixtures__ │ │ │ │ │ │ │ └── express.json │ │ │ │ │ │ ├── parent-version.spec.ts │ │ │ │ │ │ └── parent-version.ts │ │ │ │ │ ├── index.spec.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── package-lock │ │ │ │ │ │ ├── __fixtures__ │ │ │ │ │ │ │ ├── accepts.json │ │ │ │ │ │ │ ├── bundled.package-lock.json │ │ │ │ │ │ │ ├── bundled.package.json │ │ │ │ │ │ │ ├── express.json │ │ │ │ │ │ │ ├── mime.json │ │ │ │ │ │ │ ├── package-lock-v1.json │ │ │ │ │ │ │ ├── package-lock-v2.json │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ ├── send.json │ │ │ │ │ │ │ ├── serve-static.json │ │ │ │ │ │ │ └── type-is.json │ │ │ │ │ │ ├── dep-constraints.spec.ts │ │ │ │ │ │ ├── dep-constraints.ts │ │ │ │ │ │ ├── get-locked.spec.ts │ │ │ │ │ │ ├── get-locked.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ └── yarn-lock │ │ │ │ │ │ ├── __fixtures__ │ │ │ │ │ │ ├── 2.yarn.lock │ │ │ │ │ │ ├── 3.yarn.lock │ │ │ │ │ │ ├── express.yarn.lock │ │ │ │ │ │ └── yarn2.lock │ │ │ │ │ │ ├── get-locked.spec.ts │ │ │ │ │ │ ├── get-locked.ts │ │ │ │ │ │ ├── index.spec.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── replace.spec.ts │ │ │ │ │ │ ├── replace.ts │ │ │ │ │ │ └── types.ts │ │ │ │ └── package-version │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ │ ├── index.spec.ts │ │ │ │ │ └── index.ts │ │ │ ├── utils.spec.ts │ │ │ └── utils.ts │ │ ├── nuget │ │ │ ├── __fixtures__ │ │ │ │ ├── .gitignore │ │ │ │ ├── circular-reference │ │ │ │ │ ├── one │ │ │ │ │ │ └── one.csproj │ │ │ │ │ └── two │ │ │ │ │ │ └── two.csproj │ │ │ │ ├── dotnet-tools.json │ │ │ │ ├── msbuild-sdk-files │ │ │ │ │ ├── global.1.json │ │ │ │ │ ├── global.json │ │ │ │ │ ├── invalid-json │ │ │ │ │ │ └── global.json │ │ │ │ │ └── not-nuget │ │ │ │ │ │ └── global.json │ │ │ │ ├── multiple-package-files │ │ │ │ │ ├── one │ │ │ │ │ │ ├── NuGet.config │ │ │ │ │ │ └── one.csproj │ │ │ │ │ └── two │ │ │ │ │ │ ├── NuGet.config │ │ │ │ │ │ └── two.csproj │ │ │ │ ├── packages.props │ │ │ │ ├── sample.csproj │ │ │ │ ├── single-project-file │ │ │ │ │ └── single.csproj │ │ │ │ ├── three-two-linear-references │ │ │ │ │ ├── one │ │ │ │ │ │ ├── one.csproj │ │ │ │ │ │ └── packages.lock.json │ │ │ │ │ ├── three │ │ │ │ │ │ ├── packages.lock.json │ │ │ │ │ │ └── three.csproj │ │ │ │ │ └── two │ │ │ │ │ │ ├── packages.lock.json │ │ │ │ │ │ └── two.csproj │ │ │ │ ├── three-two-treelike-references │ │ │ │ │ ├── one │ │ │ │ │ │ ├── one.csproj │ │ │ │ │ │ └── packages.lock.json │ │ │ │ │ ├── three │ │ │ │ │ │ ├── packages.lock.json │ │ │ │ │ │ └── three.csproj │ │ │ │ │ └── two │ │ │ │ │ │ ├── packages.lock.json │ │ │ │ │ │ └── two.csproj │ │ │ │ ├── two-no-reference │ │ │ │ │ ├── one.csproj │ │ │ │ │ └── two.csproj │ │ │ │ ├── two-one-reference-with-central-versions │ │ │ │ │ ├── Directory.Packages.props │ │ │ │ │ ├── one │ │ │ │ │ │ ├── one.csproj │ │ │ │ │ │ └── packages.lock.json │ │ │ │ │ └── two │ │ │ │ │ │ ├── packages.lock.json │ │ │ │ │ │ └── two.csproj │ │ │ │ ├── two-one-reference │ │ │ │ │ ├── one │ │ │ │ │ │ ├── one.csproj │ │ │ │ │ │ └── packages.lock.json │ │ │ │ │ └── two │ │ │ │ │ │ ├── packages.lock.json │ │ │ │ │ │ └── two.csproj │ │ │ │ ├── with-centralized-package-versions │ │ │ │ │ └── Directory.Packages.props │ │ │ │ ├── with-config-file │ │ │ │ │ ├── NuGet.config │ │ │ │ │ └── with-config-file.csproj │ │ │ │ ├── with-local-feed-in-config-file │ │ │ │ │ ├── NuGet.config │ │ │ │ │ └── with-local-feed-in-config-file.csproj │ │ │ │ ├── with-lower-case-config-file │ │ │ │ │ ├── nuget.config │ │ │ │ │ └── with-lower-case-config-file.csproj │ │ │ │ ├── with-malformed-config-file │ │ │ │ │ ├── NuGet.config │ │ │ │ │ └── with-malformed-config-file.csproj │ │ │ │ ├── with-pascal-case-config-file │ │ │ │ │ ├── NuGet.Config │ │ │ │ │ └── with-pascal-case-config-file.csproj │ │ │ │ ├── with-whitespaces │ │ │ │ │ ├── NuGet.config │ │ │ │ │ └── with-whitespaces.csproj │ │ │ │ └── without-package-sources │ │ │ │ │ ├── NuGet.config │ │ │ │ │ └── without-package-sources.csproj │ │ │ ├── __snapshots__ │ │ │ │ └── extract.spec.ts.snap │ │ │ ├── artifacts.spec.ts │ │ │ ├── artifacts.ts │ │ │ ├── config-formatter.spec.ts │ │ │ ├── config-formatter.ts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── extract │ │ │ │ └── global-manifest.ts │ │ │ ├── index.ts │ │ │ ├── package-tree.spec.ts │ │ │ ├── package-tree.ts │ │ │ ├── readme.md │ │ │ ├── types.ts │ │ │ ├── update.spec.ts │ │ │ ├── update.ts │ │ │ ├── util.spec.ts │ │ │ └── util.ts │ │ ├── nvm │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── ocb │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ ├── schema.ts │ │ │ ├── update.spec.ts │ │ │ └── update.ts │ │ ├── osgi │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── types.ts │ │ ├── pep621 │ │ │ ├── __fixtures__ │ │ │ │ ├── pyproject_pdm_lockedversion.lock │ │ │ │ ├── pyproject_pdm_lockedversion.toml │ │ │ │ ├── pyproject_pdm_sources.toml │ │ │ │ ├── pyproject_with_hatch.toml │ │ │ │ └── pyproject_with_pdm.toml │ │ │ ├── artifacts.spec.ts │ │ │ ├── artifacts.ts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── processors │ │ │ │ ├── hatch.ts │ │ │ │ ├── index.ts │ │ │ │ ├── pdm.spec.ts │ │ │ │ ├── pdm.ts │ │ │ │ └── types.ts │ │ │ ├── readme.md │ │ │ ├── schema.ts │ │ │ ├── types.ts │ │ │ ├── update.spec.ts │ │ │ ├── update.ts │ │ │ ├── utils.spec.ts │ │ │ └── utils.ts │ │ ├── pip-compile │ │ │ ├── __fixtures__ │ │ │ │ ├── requirementsCustomCommand.txt │ │ │ │ ├── requirementsNoHeaders.txt │ │ │ │ ├── requirementsWithExploitingArguments.txt │ │ │ │ ├── requirementsWithHashes.txt │ │ │ │ └── requirementsWithUnknownArguments.txt │ │ │ ├── artifacts.spec.ts │ │ │ ├── artifacts.ts │ │ │ ├── common.spec.ts │ │ │ ├── common.ts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ ├── types.ts │ │ │ ├── utils.spec.ts │ │ │ └── utils.ts │ │ ├── pip_requirements │ │ │ ├── __fixtures__ │ │ │ │ ├── requirements-env-markers.txt │ │ │ │ ├── requirements-git-packages.txt │ │ │ │ ├── requirements1.txt │ │ │ │ ├── requirements2.txt │ │ │ │ ├── requirements3.txt │ │ │ │ ├── requirements4.txt │ │ │ │ ├── requirements5.txt │ │ │ │ ├── requirements6.txt │ │ │ │ ├── requirements7.txt │ │ │ │ └── requirements8.txt │ │ │ ├── __snapshots__ │ │ │ │ └── extract.spec.ts.snap │ │ │ ├── artifacts.spec.ts │ │ │ ├── artifacts.ts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── types.ts │ │ ├── pip_setup │ │ │ ├── __fixtures__ │ │ │ │ ├── setup-2.py │ │ │ │ ├── setup.py │ │ │ │ └── setup.py.json │ │ │ ├── __snapshots__ │ │ │ │ └── extract.spec.ts.snap │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── types.ts │ │ ├── pipenv │ │ │ ├── __fixtures__ │ │ │ │ ├── Pipfile1 │ │ │ │ ├── Pipfile2 │ │ │ │ ├── Pipfile3 │ │ │ │ ├── Pipfile4 │ │ │ │ ├── Pipfile5 │ │ │ │ ├── Pipfile6 │ │ │ │ └── Pipfile7 │ │ │ ├── artifacts.spec.ts │ │ │ ├── artifacts.ts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ ├── schema.ts │ │ │ └── types.ts │ │ ├── poetry │ │ │ ├── __fixtures__ │ │ │ │ ├── poetry12.lock │ │ │ │ ├── poetry142.lock │ │ │ │ ├── pyproject.1.toml │ │ │ │ ├── pyproject.10.toml │ │ │ │ ├── pyproject.11.toml │ │ │ │ ├── pyproject.11.toml.lock │ │ │ │ ├── pyproject.12.toml │ │ │ │ ├── pyproject.2.toml │ │ │ │ ├── pyproject.3.toml │ │ │ │ ├── pyproject.4.toml │ │ │ │ ├── pyproject.5.toml │ │ │ │ ├── pyproject.6.toml │ │ │ │ ├── pyproject.7.toml │ │ │ │ ├── pyproject.8.toml │ │ │ │ └── pyproject.9.toml │ │ │ ├── __snapshots__ │ │ │ │ └── extract.spec.ts.snap │ │ │ ├── artifacts.spec.ts │ │ │ ├── artifacts.ts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ ├── schema.spec.ts │ │ │ ├── schema.ts │ │ │ ├── types.ts │ │ │ ├── update-locked.spec.ts │ │ │ └── update-locked.ts │ │ ├── pre-commit │ │ │ ├── __fixtures__ │ │ │ │ ├── .pre-commit-config.yaml │ │ │ │ ├── complex.pre-commit-config.yaml │ │ │ │ ├── empty_repos.pre-commit-config.yaml │ │ │ │ ├── enterprise.pre-commit-config.yaml │ │ │ │ ├── invalid_repo.pre-commit-config.yaml │ │ │ │ └── no_repos.pre-commit-config.yaml │ │ │ ├── __snapshots__ │ │ │ │ └── extract.spec.ts.snap │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── parsing.ts │ │ │ ├── readme.md │ │ │ └── types.ts │ │ ├── pub │ │ │ ├── artifacts.spec.ts │ │ │ ├── artifacts.ts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ ├── schema.ts │ │ │ ├── utils.spec.ts │ │ │ └── utils.ts │ │ ├── puppet │ │ │ ├── __fixtures__ │ │ │ │ ├── Puppetfile.git_tag │ │ │ │ ├── Puppetfile.github_tag │ │ │ │ ├── Puppetfile.multiple_forges │ │ │ │ └── Puppetfile.with_comments │ │ │ ├── common.spec.ts │ │ │ ├── common.ts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── puppetfile-parser.spec.ts │ │ │ ├── puppetfile-parser.ts │ │ │ ├── readme.md │ │ │ └── types.ts │ │ ├── pyenv │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── range.spec.ts │ │ ├── ruby-version │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── sbt │ │ │ ├── __fixtures__ │ │ │ │ ├── dependency-file.scala │ │ │ │ ├── missing-scala-version.sbt │ │ │ │ ├── private-variable-dependency-file.scala │ │ │ │ ├── sample.sbt │ │ │ │ └── scala-version-variable.sbt │ │ │ ├── __snapshots__ │ │ │ │ └── extract.spec.ts.snap │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ ├── update.spec.ts │ │ │ ├── update.ts │ │ │ └── util.ts │ │ ├── scalafmt │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── setup-cfg │ │ │ ├── __fixtures__ │ │ │ │ └── setup-cfg-1.txt │ │ │ ├── __snapshots__ │ │ │ │ └── extract.spec.ts.snap │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── swift │ │ │ ├── __fixtures__ │ │ │ │ └── SamplePackage.swift │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── extract.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── range.spec.ts │ │ │ ├── range.ts │ │ │ ├── readme.md │ │ │ └── types.ts │ │ ├── tekton │ │ │ ├── __fixtures__ │ │ │ │ ├── multi-doc-annotations.yaml │ │ │ │ └── multi-doc.yaml │ │ │ ├── __snapshots__ │ │ │ │ └── extract.spec.ts.snap │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── types.ts │ │ ├── terraform-version │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── terraform │ │ │ ├── __fixtures__ │ │ │ │ ├── azureDevOpsModules.tf │ │ │ │ ├── bitbucketModules.tf │ │ │ │ ├── docker.tf │ │ │ │ ├── helm.tf │ │ │ │ ├── kubernetes.tf │ │ │ │ ├── lockedVersion.tf │ │ │ │ ├── modules.tf │ │ │ │ ├── providers.tf │ │ │ │ ├── rangeStrategy.hcl │ │ │ │ ├── terraformBlock.tf │ │ │ │ └── tfeWorkspace.tf │ │ │ ├── base.ts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── extractors.ts │ │ │ ├── extractors │ │ │ │ ├── others │ │ │ │ │ ├── modules.spec.ts │ │ │ │ │ ├── modules.ts │ │ │ │ │ ├── providers.spec.ts │ │ │ │ │ └── providers.ts │ │ │ │ ├── resources │ │ │ │ │ ├── generic-docker-image-ref.spec.ts │ │ │ │ │ ├── generic-docker-image-ref.ts │ │ │ │ │ ├── helm-release.spec.ts │ │ │ │ │ ├── helm-release.ts │ │ │ │ │ ├── terraform-workspace.ts │ │ │ │ │ ├── terraform-workspaces.spec.ts │ │ │ │ │ └── utils.ts │ │ │ │ └── terraform-block │ │ │ │ │ ├── required-provider.spec.ts │ │ │ │ │ ├── required-provider.ts │ │ │ │ │ ├── terraform-version.spec.ts │ │ │ │ │ └── terraform-version.ts │ │ │ ├── hcl │ │ │ │ ├── __fixtures__ │ │ │ │ │ ├── lockedVersion.tf │ │ │ │ │ ├── modules.tf │ │ │ │ │ ├── resources.tf │ │ │ │ │ └── resources.tf.json │ │ │ │ ├── index.spec.ts │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ │ ├── index.ts │ │ │ ├── lockfile │ │ │ │ ├── __fixtures__ │ │ │ │ │ ├── releaseBackendAzurerm_2_56_0.json │ │ │ │ │ ├── releaseBackendGoogle_4_84_0_SHA256SUMS │ │ │ │ │ ├── terraformCloudBackendAzurermVersions.json │ │ │ │ │ ├── terraformCloudBackendGoogleVersions.json │ │ │ │ │ └── test.zip │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── hash.spec.ts.snap │ │ │ │ ├── hash.spec.ts │ │ │ │ ├── hash.ts │ │ │ │ ├── index.spec.ts │ │ │ │ ├── index.ts │ │ │ │ ├── types.ts │ │ │ │ ├── update-locked.spec.ts │ │ │ │ ├── update-locked.ts │ │ │ │ ├── util.spec.ts │ │ │ │ └── util.ts │ │ │ ├── readme.md │ │ │ ├── types.ts │ │ │ └── util.ts │ │ ├── terragrunt-version │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── terragrunt │ │ │ ├── __fixtures__ │ │ │ │ ├── 1.hcl │ │ │ │ ├── 2.hcl │ │ │ │ ├── 3.hcl │ │ │ │ └── 4.hcl │ │ │ ├── artifacts.spec.ts │ │ │ ├── artifacts.ts │ │ │ ├── common.ts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── modules.spec.ts │ │ │ ├── modules.ts │ │ │ ├── providers.ts │ │ │ ├── readme.md │ │ │ ├── types.ts │ │ │ ├── util.spec.ts │ │ │ └── util.ts │ │ ├── tflint-plugin │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── plugins.ts │ │ │ ├── readme.md │ │ │ ├── types.ts │ │ │ └── util.ts │ │ ├── travis │ │ │ ├── __fixtures__ │ │ │ │ ├── invalid.yml │ │ │ │ ├── matrix_alias.yml │ │ │ │ ├── matrix_invalid.yml │ │ │ │ ├── matrix_jobs.yml │ │ │ │ ├── matrix_jobs_array.yml │ │ │ │ ├── matrix_jobs_array2.yml │ │ │ │ └── travis.yml │ │ │ ├── __snapshots__ │ │ │ │ └── extract.spec.ts.snap │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── types.ts │ │ ├── types.ts │ │ ├── velaci │ │ │ ├── __fixtures__ │ │ │ │ ├── .vela-secrets.yml │ │ │ │ ├── .vela-services.yml │ │ │ │ ├── .vela-stages.yaml │ │ │ │ └── .vela-steps.yml │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── types.ts │ │ ├── vendir │ │ │ ├── __fixtures__ │ │ │ │ ├── invalid-contents.yaml │ │ │ │ ├── invalid-vendir.yaml │ │ │ │ ├── valid-contents.yaml │ │ │ │ ├── valid-vendir.yaml │ │ │ │ ├── vendir.yml │ │ │ │ ├── vendir_1.lock │ │ │ │ └── vendir_2.lock │ │ │ ├── __snapshots__ │ │ │ │ └── artifacts.spec.ts.snap │ │ │ ├── artifacts.spec.ts │ │ │ ├── artifacts.ts │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── schema.ts │ │ └── woodpecker │ │ │ ├── __fixtures__ │ │ │ └── .woodpecker.yml │ │ │ ├── extract.spec.ts │ │ │ ├── extract.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ └── types.ts │ ├── platform │ │ ├── api.ts │ │ ├── azure │ │ │ ├── __snapshots__ │ │ │ │ ├── azure-helper.spec.ts.snap │ │ │ │ ├── index.spec.ts.snap │ │ │ │ └── util.spec.ts.snap │ │ │ ├── azure-got-wrapper.spec.ts │ │ │ ├── azure-got-wrapper.ts │ │ │ ├── azure-helper.spec.ts │ │ │ ├── azure-helper.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ ├── schema.ts │ │ │ ├── types.ts │ │ │ ├── util.spec.ts │ │ │ └── util.ts │ │ ├── bitbucket-server │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ ├── types.ts │ │ │ ├── utils.spec.ts │ │ │ └── utils.ts │ │ ├── bitbucket │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── comments.spec.ts │ │ │ ├── comments.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── pr-cache.spec.ts │ │ │ ├── pr-cache.ts │ │ │ ├── readme.md │ │ │ ├── schema.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── codecommit │ │ │ ├── codecommit-client.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── comment.spec.ts │ │ ├── comment.ts │ │ ├── default-scm.spec.ts │ │ ├── default-scm.ts │ │ ├── gerrit │ │ │ ├── client.spec.ts │ │ │ ├── client.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ ├── scm.spec.ts │ │ │ ├── scm.ts │ │ │ ├── types.ts │ │ │ ├── utils.spec.ts │ │ │ └── utils.ts │ │ ├── gitea │ │ │ ├── gitea-helper.spec.ts │ │ │ ├── gitea-helper.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── pr-cache.ts │ │ │ ├── readme.md │ │ │ ├── schema.spec.ts │ │ │ ├── schema.ts │ │ │ ├── types.ts │ │ │ ├── utils.spec.ts │ │ │ └── utils.ts │ │ ├── github │ │ │ ├── __fixtures__ │ │ │ │ └── graphql │ │ │ │ │ ├── pullrequests-closed.json │ │ │ │ │ └── pullrequests-open.json │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── api-cache.spec.ts │ │ │ ├── api-cache.ts │ │ │ ├── branch.spec.ts │ │ │ ├── branch.ts │ │ │ ├── common.ts │ │ │ ├── graphql.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── issue.ts │ │ │ ├── massage-markdown-links.spec.ts │ │ │ ├── massage-markdown-links.ts │ │ │ ├── pr.ts │ │ │ ├── readme.md │ │ │ ├── scm.spec.ts │ │ │ ├── scm.ts │ │ │ ├── types.ts │ │ │ └── user.ts │ │ ├── gitlab │ │ │ ├── __snapshots__ │ │ │ │ └── index.spec.ts.snap │ │ │ ├── http.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── merge-request.ts │ │ │ ├── readme.md │ │ │ ├── schema.ts │ │ │ └── types.ts │ │ ├── index.spec.ts │ │ ├── index.ts │ │ ├── local │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── readme.md │ │ │ ├── scm.spec.ts │ │ │ └── scm.ts │ │ ├── pr-body.spec.ts │ │ ├── pr-body.ts │ │ ├── scm.spec.ts │ │ ├── scm.ts │ │ ├── types.ts │ │ ├── util.spec.ts │ │ ├── util.ts │ │ └── utils │ │ │ ├── __fixtures__ │ │ │ ├── issue-body.txt │ │ │ └── pr-body.txt │ │ │ ├── __snapshots__ │ │ │ └── pr-body.spec.ts.snap │ │ │ ├── pr-body.spec.ts │ │ │ ├── pr-body.ts │ │ │ ├── read-only-issue-body.spec.ts │ │ │ └── read-only-issue-body.ts │ └── versioning │ │ ├── api.ts │ │ ├── aws-machine-image │ │ ├── index.spec.ts │ │ ├── index.ts │ │ └── readme.md │ │ ├── azure-rest-api │ │ ├── index.spec.ts │ │ ├── index.ts │ │ └── readme.md │ │ ├── bazel-module │ │ ├── bzlmod-version.spec.ts │ │ ├── bzlmod-version.ts │ │ ├── index.spec.ts │ │ └── index.ts │ │ ├── cargo │ │ ├── index.spec.ts │ │ ├── index.ts │ │ └── readme.md │ │ ├── common.ts │ │ ├── composer │ │ ├── index.spec.ts │ │ ├── index.ts │ │ └── readme.md │ │ ├── conan │ │ ├── common.ts │ │ ├── index.spec.ts │ │ ├── index.ts │ │ ├── range.ts │ │ └── readme.md │ │ ├── deb │ │ ├── index.spec.ts │ │ ├── index.ts │ │ └── readme.md │ │ ├── debian │ │ ├── common.ts │ │ ├── index.spec.ts │ │ ├── index.ts │ │ └── readme.md │ │ ├── distro.spec.ts │ │ ├── distro.ts │ │ ├── docker │ │ ├── index.spec.ts │ │ ├── index.ts │ │ └── readme.md │ │ ├── generic.spec.ts │ │ ├── generic.ts │ │ ├── git │ │ ├── index.spec.ts │ │ ├── index.ts │ │ └── readme.md │ │ ├── go-mod-directive │ │ ├── index.spec.ts │ │ ├── index.ts │ │ └── readme.md │ │ ├── gradle │ │ ├── compare.ts │ │ ├── index.spec.ts │ │ └── index.ts │ │ ├── hashicorp │ │ ├── convertor.spec.ts │ │ ├── convertor.ts │ │ ├── index.spec.ts │ │ ├── index.ts │ │ └── readme.md │ │ ├── helm │ │ ├── index.spec.ts │ │ └── index.ts │ │ ├── hermit │ │ ├── index.spec.ts │ │ ├── index.ts │ │ └── readme.md │ │ ├── hex │ │ ├── index.spec.ts │ │ ├── index.ts │ │ └── readme.md │ │ ├── index.spec.ts │ │ ├── index.ts │ │ ├── ivy │ │ ├── index.spec.ts │ │ ├── index.ts │ │ └── parse.ts │ │ ├── kubernetes-api │ │ ├── index.spec.ts │ │ └── index.ts │ │ ├── loose │ │ ├── index.spec.ts │ │ ├── index.ts │ │ └── readme.md │ │ ├── maven │ │ ├── compare.spec.ts │ │ ├── compare.ts │ │ ├── index.spec.ts │ │ ├── index.ts │ │ └── readme.md │ │ ├── nixpkgs │ │ ├── index.spec.ts │ │ ├── index.ts │ │ └── readme.md │ │ ├── node │ │ ├── index.spec.ts │ │ ├── index.ts │ │ ├── readme.md │ │ └── schedule.ts │ │ ├── npm │ │ ├── index.spec.ts │ │ ├── index.ts │ │ ├── range.ts │ │ └── readme.md │ │ ├── nuget │ │ ├── index.spec.ts │ │ ├── index.ts │ │ └── readme.md │ │ ├── pep440 │ │ ├── index.spec.ts │ │ ├── index.ts │ │ ├── range.spec.ts │ │ ├── range.ts │ │ └── readme.md │ │ ├── perl │ │ ├── index.spec.ts │ │ ├── index.ts │ │ └── readme.md │ │ ├── poetry │ │ ├── index.spec.ts │ │ ├── index.ts │ │ ├── patterns.ts │ │ ├── readme.md │ │ └── transform.ts │ │ ├── python │ │ ├── index.spec.ts │ │ ├── index.ts │ │ └── readme.md │ │ ├── redhat │ │ ├── index.spec.ts │ │ ├── index.ts │ │ └── readme.md │ │ ├── regex │ │ ├── index.spec.ts │ │ ├── index.ts │ │ └── readme.md │ │ ├── rez │ │ ├── index.spec.ts │ │ ├── index.ts │ │ ├── pattern.ts │ │ ├── readme.md │ │ └── transform.ts │ │ ├── rpm │ │ ├── index.spec.ts │ │ └── index.ts │ │ ├── ruby │ │ ├── index.spec.ts │ │ ├── index.ts │ │ ├── operator.ts │ │ ├── range.ts │ │ ├── readme.md │ │ ├── strategies │ │ │ ├── bump.ts │ │ │ ├── index.ts │ │ │ ├── pin.ts │ │ │ ├── replace.ts │ │ │ └── widen.ts │ │ └── version.ts │ │ ├── schema.spec.ts │ │ ├── schema.ts │ │ ├── semver-coerced │ │ ├── index.spec.ts │ │ ├── index.ts │ │ └── readme.md │ │ ├── semver │ │ ├── common.spec.ts │ │ ├── common.ts │ │ ├── index.spec.ts │ │ ├── index.ts │ │ └── readme.md │ │ ├── swift │ │ ├── index.spec.ts │ │ ├── index.ts │ │ ├── range.ts │ │ └── readme.md │ │ ├── types.ts │ │ ├── ubuntu │ │ ├── common.ts │ │ ├── index.spec.ts │ │ ├── index.ts │ │ └── readme.md │ │ ├── unity3d │ │ ├── index.spec.ts │ │ ├── index.ts │ │ └── readme.md │ │ └── versioning-metadata.spec.ts ├── proxy.spec.ts ├── proxy.ts ├── renovate.spec.ts ├── renovate.ts ├── types │ ├── base.ts │ ├── branch-status.ts │ ├── commit-message-json.ts │ ├── errors │ │ └── external-host-error.ts │ ├── git.ts │ ├── host-rules.ts │ ├── index.ts │ ├── platform │ │ ├── bitbucket-server │ │ │ └── index.ts │ │ ├── github │ │ │ └── index.ts │ │ └── gitlab │ │ │ └── index.ts │ ├── pr-state.ts │ ├── skip-reason.ts │ ├── versioning.ts │ └── vulnerability-alert.ts ├── util │ ├── __fixtures__ │ │ └── release-notes.txt │ ├── array.spec.ts │ ├── array.ts │ ├── assign-keys.spec.ts │ ├── assign-keys.ts │ ├── cache │ │ ├── memory │ │ │ ├── index.spec.ts │ │ │ └── index.ts │ │ ├── package │ │ │ ├── decorator.spec.ts │ │ │ ├── decorator.ts │ │ │ ├── file.spec.ts │ │ │ ├── file.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── redis.ts │ │ │ ├── sqlite.spec.ts │ │ │ ├── sqlite.ts │ │ │ └── types.ts │ │ └── repository │ │ │ ├── common.ts │ │ │ ├── impl │ │ │ ├── base.ts │ │ │ ├── cache-factory.ts │ │ │ ├── local.spec.ts │ │ │ ├── local.ts │ │ │ ├── null.ts │ │ │ ├── readme.md │ │ │ ├── s3.spec.ts │ │ │ └── s3.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── init.ts │ │ │ ├── schema.ts │ │ │ └── types.ts │ ├── check-token.spec.ts │ ├── check-token.ts │ ├── clone.spec.ts │ ├── clone.ts │ ├── coerce.spec.ts │ ├── coerce.ts │ ├── common.spec.ts │ ├── common.ts │ ├── compress.spec.ts │ ├── compress.ts │ ├── date.spec.ts │ ├── date.ts │ ├── decorator │ │ ├── index.spec.ts │ │ └── index.ts │ ├── emoji.spec.ts │ ├── emoji.ts │ ├── exec │ │ ├── common.spec.ts │ │ ├── common.ts │ │ ├── containerbase.spec.ts │ │ ├── containerbase.ts │ │ ├── docker │ │ │ ├── index.spec.ts │ │ │ └── index.ts │ │ ├── env.spec.ts │ │ ├── env.ts │ │ ├── exec-error.ts │ │ ├── hermit.spec.ts │ │ ├── hermit.ts │ │ ├── index.spec.ts │ │ ├── index.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── filter-map.spec.ts │ ├── filter-map.ts │ ├── fingerprint.spec.ts │ ├── fingerprint.ts │ ├── fs │ │ ├── __snapshots__ │ │ │ └── index.spec.ts.snap │ │ ├── index.spec.ts │ │ ├── index.ts │ │ ├── util.spec.ts │ │ └── util.ts │ ├── git │ │ ├── auth.spec.ts │ │ ├── auth.ts │ │ ├── author.spec.ts │ │ ├── author.ts │ │ ├── behind-base-branch-cache.spec.ts │ │ ├── behind-base-branch-cache.ts │ │ ├── config.spec.ts │ │ ├── config.ts │ │ ├── conflicts-cache.spec.ts │ │ ├── conflicts-cache.ts │ │ ├── error.ts │ │ ├── errors.spec.ts │ │ ├── index.spec.ts │ │ ├── index.ts │ │ ├── modified-cache.spec.ts │ │ ├── modified-cache.ts │ │ ├── pristine.spec.ts │ │ ├── pristine.ts │ │ ├── private-key.spec.ts │ │ ├── private-key.ts │ │ ├── semantic.spec.ts │ │ ├── semantic.ts │ │ ├── set-branch-commit.spec.ts │ │ ├── set-branch-commit.ts │ │ ├── types.ts │ │ ├── url.spec.ts │ │ └── url.ts │ ├── github │ │ ├── graphql │ │ │ ├── cache-strategies │ │ │ │ ├── abstract-cache-strategy.ts │ │ │ │ ├── memory-cache-strategy.spec.ts │ │ │ │ ├── memory-cache-strategy.ts │ │ │ │ ├── package-cache-strategy.spec.ts │ │ │ │ └── package-cache-strategy.ts │ │ │ ├── datasource-fetcher.spec.ts │ │ │ ├── datasource-fetcher.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── query-adapters │ │ │ │ ├── releases-query-adapter.spec.ts │ │ │ │ ├── releases-query-adapter.ts │ │ │ │ ├── tags-query-adapter.spec.ts │ │ │ │ └── tags-query-adapter.ts │ │ │ ├── readme.md │ │ │ ├── types.ts │ │ │ ├── util.spec.ts │ │ │ └── util.ts │ │ ├── tags.spec.ts │ │ ├── tags.ts │ │ ├── types.ts │ │ ├── url.spec.ts │ │ └── url.ts │ ├── hash.spec.ts │ ├── hash.ts │ ├── host-rules.spec.ts │ ├── host-rules.ts │ ├── html.spec.ts │ ├── html.ts │ ├── http │ │ ├── auth.spec.ts │ │ ├── auth.ts │ │ ├── bitbucket-server.spec.ts │ │ ├── bitbucket-server.ts │ │ ├── bitbucket.spec.ts │ │ ├── bitbucket.ts │ │ ├── cache │ │ │ ├── abstract-http-cache-provider.ts │ │ │ ├── repository-http-cache-provider.spec.ts │ │ │ ├── repository-http-cache-provider.ts │ │ │ ├── schema.ts │ │ │ └── types.ts │ │ ├── dns.spec.ts │ │ ├── dns.ts │ │ ├── gerrit.spec.ts │ │ ├── gerrit.ts │ │ ├── gitea.spec.ts │ │ ├── gitea.ts │ │ ├── github.spec.ts │ │ ├── github.ts │ │ ├── gitlab.spec.ts │ │ ├── gitlab.ts │ │ ├── hooks.spec.ts │ │ ├── hooks.ts │ │ ├── host-rules.spec.ts │ │ ├── host-rules.ts │ │ ├── index.spec.ts │ │ ├── index.ts │ │ ├── jira.spec.ts │ │ ├── jira.ts │ │ ├── keep-alive.ts │ │ ├── legacy.ts │ │ ├── queue.spec.ts │ │ ├── queue.ts │ │ ├── retry-after.spec.ts │ │ ├── retry-after.ts │ │ ├── throttle.spec.ts │ │ ├── throttle.ts │ │ ├── types.ts │ │ └── util.ts │ ├── ignore.spec.ts │ ├── ignore.ts │ ├── json-writer │ │ ├── __fixtures__ │ │ │ ├── .global_editorconfig │ │ │ ├── .json_editorconfig │ │ │ └── .non_json_editorconfig │ │ ├── code-format.ts │ │ ├── editor-config.spec.ts │ │ ├── editor-config.ts │ │ ├── indentation-type.ts │ │ ├── index.ts │ │ ├── json-writer.spec.ts │ │ └── json-writer.ts │ ├── lazy.spec.ts │ ├── lazy.ts │ ├── markdown.spec.ts │ ├── markdown.ts │ ├── mask.spec.ts │ ├── mask.ts │ ├── memoize.spec.ts │ ├── memoize.ts │ ├── merge-confidence │ │ ├── common.ts │ │ ├── index.spec.ts │ │ ├── index.ts │ │ └── types.ts │ ├── minimatch.spec.ts │ ├── minimatch.ts │ ├── modules.ts │ ├── number.spec.ts │ ├── number.ts │ ├── object.spec.ts │ ├── object.ts │ ├── package-rules │ │ ├── base-branches.ts │ │ ├── base.ts │ │ ├── categories.ts │ │ ├── current-age.spec.ts │ │ ├── current-age.ts │ │ ├── current-value.spec.ts │ │ ├── current-value.ts │ │ ├── current-version.spec.ts │ │ ├── current-version.ts │ │ ├── datasources.ts │ │ ├── dep-names.spec.ts │ │ ├── dep-names.ts │ │ ├── dep-patterns.spec.ts │ │ ├── dep-patterns.ts │ │ ├── dep-types.ts │ │ ├── files.spec.ts │ │ ├── files.ts │ │ ├── index.spec.ts │ │ ├── index.ts │ │ ├── managers.spec.ts │ │ ├── managers.ts │ │ ├── matchers.ts │ │ ├── merge-confidence.ts │ │ ├── new-value.spec.ts │ │ ├── new-value.ts │ │ ├── package-names.spec.ts │ │ ├── package-names.ts │ │ ├── package-patterns.spec.ts │ │ ├── package-patterns.ts │ │ ├── package-prefixes.spec.ts │ │ ├── package-prefixes.ts │ │ ├── repositories.spec.ts │ │ ├── repositories.ts │ │ ├── sourceurl-prefixes.ts │ │ ├── sourceurls.ts │ │ ├── types.ts │ │ ├── update-types.ts │ │ └── utils.ts │ ├── pretty-time.spec.ts │ ├── pretty-time.ts │ ├── promises.spec.ts │ ├── promises.ts │ ├── range.spec.ts │ ├── range.ts │ ├── regex.spec.ts │ ├── regex.ts │ ├── result.spec.ts │ ├── result.ts │ ├── s3.spec.ts │ ├── s3.ts │ ├── sample.spec.ts │ ├── sample.ts │ ├── sanitize.spec.ts │ ├── sanitize.ts │ ├── schema-utils.spec.ts │ ├── schema-utils.ts │ ├── split.spec.ts │ ├── split.ts │ ├── stats.spec.ts │ ├── stats.ts │ ├── streams.spec.ts │ ├── streams.ts │ ├── string-match.spec.ts │ ├── string-match.ts │ ├── string.spec.ts │ ├── string.ts │ ├── stringify.ts │ ├── template │ │ ├── __snapshots__ │ │ │ └── index.spec.ts.snap │ │ ├── index.spec.ts │ │ └── index.ts │ ├── toml.spec.ts │ ├── toml.ts │ ├── uniq.spec.ts │ ├── uniq.ts │ ├── url.spec.ts │ ├── url.ts │ ├── vulnerability │ │ ├── utils.spec.ts │ │ └── utils.ts │ ├── yaml.spec.ts │ └── yaml.ts └── workers │ ├── global │ ├── autodiscover.spec.ts │ ├── autodiscover.ts │ ├── config │ │ └── parse │ │ │ ├── __fixtures__ │ │ │ ├── .renovaterc │ │ │ ├── argv.ts │ │ │ ├── config-async-function.js │ │ │ ├── config-function-promise.js │ │ │ ├── config-function.js │ │ │ ├── config-promise.js │ │ │ ├── config-ref-error.js-invalid │ │ │ ├── config.cjs │ │ │ ├── config.js │ │ │ ├── config.json5 │ │ │ ├── config.yaml │ │ │ ├── config2.js │ │ │ ├── default.js │ │ │ ├── private.pem │ │ │ └── with-force.js │ │ │ ├── __snapshots__ │ │ │ ├── env.spec.ts.snap │ │ │ └── file.spec.ts.snap │ │ │ ├── cli.spec.ts │ │ │ ├── cli.ts │ │ │ ├── codespaces.ts │ │ │ ├── coersions.ts │ │ │ ├── env.spec.ts │ │ │ ├── env.ts │ │ │ ├── file.spec.ts │ │ │ ├── file.ts │ │ │ ├── host-rules-from-env.spec.ts │ │ │ ├── host-rules-from-env.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ ├── index.spec.ts │ ├── index.ts │ ├── initialize.spec.ts │ ├── initialize.ts │ ├── limits.spec.ts │ └── limits.ts │ ├── repository │ ├── __fixtures__ │ │ ├── dependency-dashboard-with-2-PR-closed-ignored.txt │ │ ├── dependency-dashboard-with-2-PR-edited.txt │ │ ├── dependency-dashboard-with-3-PR-in-approval.txt │ │ ├── dependency-dashboard-with-3-PR-in-progress.txt │ │ ├── dependency-dashboard-with-8-PR.txt │ │ ├── package-files-digest.json │ │ └── package-files.json │ ├── __snapshots__ │ │ └── dependency-dashboard.spec.ts.snap │ ├── cache.ts │ ├── changelog │ │ ├── index.spec.ts │ │ └── index.ts │ ├── common.ts │ ├── config-migration │ │ ├── branch │ │ │ ├── __fixtures__ │ │ │ │ ├── migrated-data-formatted.json │ │ │ │ ├── migrated-data.json │ │ │ │ ├── migrated-data.json5 │ │ │ │ ├── migrated.json │ │ │ │ ├── renovate.json │ │ │ │ └── renovate.json5 │ │ │ ├── commit-message.spec.ts │ │ │ ├── commit-message.ts │ │ │ ├── create.spec.ts │ │ │ ├── create.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── migrated-data.spec.ts │ │ │ ├── migrated-data.ts │ │ │ ├── rebase.spec.ts │ │ │ └── rebase.ts │ │ ├── common.ts │ │ ├── index.spec.ts │ │ ├── index.ts │ │ └── pr │ │ │ ├── __fixtures__ │ │ │ └── migrated-data.json │ │ │ ├── __snapshots__ │ │ │ └── index.spec.ts.snap │ │ │ ├── index.spec.ts │ │ │ └── index.ts │ ├── configured.spec.ts │ ├── configured.ts │ ├── dependency-dashboard.spec.ts │ ├── dependency-dashboard.ts │ ├── error-config.spec.ts │ ├── error-config.ts │ ├── error.spec.ts │ ├── error.ts │ ├── errors-warnings.spec.ts │ ├── errors-warnings.ts │ ├── extract │ │ ├── __snapshots__ │ │ │ └── file-match.spec.ts.snap │ │ ├── extract-fingerprint-config.spec.ts │ │ ├── extract-fingerprint-config.ts │ │ ├── file-match.spec.ts │ │ ├── file-match.ts │ │ ├── index.spec.ts │ │ ├── index.ts │ │ ├── manager-files.spec.ts │ │ ├── manager-files.ts │ │ ├── supersedes.spec.ts │ │ ├── supersedes.ts │ │ └── types.ts │ ├── finalize │ │ ├── __fixtures__ │ │ │ └── pr-list.json │ │ ├── index.ts │ │ ├── prune.spec.ts │ │ ├── prune.ts │ │ ├── repository-statistics.spec.ts │ │ └── repository-statistics.ts │ ├── index.spec.ts │ ├── index.ts │ ├── init │ │ ├── __snapshots__ │ │ │ └── vulnerability.spec.ts.snap │ │ ├── apis.spec.ts │ │ ├── apis.ts │ │ ├── cache.spec.ts │ │ ├── cache.ts │ │ ├── config.ts │ │ ├── index.spec.ts │ │ ├── index.ts │ │ ├── inherited.spec.ts │ │ ├── inherited.ts │ │ ├── merge.spec.ts │ │ ├── merge.ts │ │ ├── types.ts │ │ ├── vulnerability.spec.ts │ │ └── vulnerability.ts │ ├── model │ │ ├── commit-message-factory.ts │ │ ├── commit-message.ts │ │ ├── custom-commit-message.spec.ts │ │ ├── custom-commit-message.ts │ │ ├── semantic-commit-message.spec.ts │ │ └── semantic-commit-message.ts │ ├── onboarding │ │ ├── branch │ │ │ ├── check.spec.ts │ │ │ ├── check.ts │ │ │ ├── commit-message.ts │ │ │ ├── config.spec.ts │ │ │ ├── config.ts │ │ │ ├── create.spec.ts │ │ │ ├── create.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── onboarding-branch-cache.spec.ts │ │ │ ├── onboarding-branch-cache.ts │ │ │ ├── rebase.spec.ts │ │ │ └── rebase.ts │ │ ├── common.ts │ │ └── pr │ │ │ ├── __snapshots__ │ │ │ ├── config-description.spec.ts.snap │ │ │ └── index.spec.ts.snap │ │ │ ├── base-branch.spec.ts │ │ │ ├── base-branch.ts │ │ │ ├── config-description.spec.ts │ │ │ ├── config-description.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── pr-list.spec.ts │ │ │ └── pr-list.ts │ ├── package-files.ts │ ├── process │ │ ├── __snapshots__ │ │ │ └── fetch.spec.ts.snap │ │ ├── deprecated.spec.ts │ │ ├── deprecated.ts │ │ ├── extract-update.spec.ts │ │ ├── extract-update.ts │ │ ├── fetch.spec.ts │ │ ├── fetch.ts │ │ ├── fingerprint-fields.ts │ │ ├── index.spec.ts │ │ ├── index.ts │ │ ├── limits.spec.ts │ │ ├── limits.ts │ │ ├── lookup │ │ │ ├── __fixtures__ │ │ │ │ ├── 01.json │ │ │ │ ├── 02.json │ │ │ │ ├── coffeelint.json │ │ │ │ ├── next.json │ │ │ │ ├── typescript.json │ │ │ │ ├── vue-test-utils.json │ │ │ │ ├── vue.json │ │ │ │ └── webpack.json │ │ │ ├── __snapshots__ │ │ │ │ └── filter-checks.spec.ts.snap │ │ │ ├── bucket.ts │ │ │ ├── current.ts │ │ │ ├── filter-checks.spec.ts │ │ │ ├── filter-checks.ts │ │ │ ├── filter.spec.ts │ │ │ ├── filter.ts │ │ │ ├── generate.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── rollback.ts │ │ │ ├── types.ts │ │ │ ├── update-type.ts │ │ │ ├── utils.spec.ts │ │ │ └── utils.ts │ │ ├── sort.spec.ts │ │ ├── sort.ts │ │ ├── types.ts │ │ ├── vulnerabilities.spec.ts │ │ ├── vulnerabilities.ts │ │ ├── write.spec.ts │ │ └── write.ts │ ├── reconfigure │ │ ├── index.spec.ts │ │ ├── index.ts │ │ ├── reconfigure-cache.spec.ts │ │ └── reconfigure-cache.ts │ ├── result.spec.ts │ ├── result.ts │ ├── update │ │ ├── branch │ │ │ ├── __snapshots__ │ │ │ │ └── get-updated.spec.ts.snap │ │ │ ├── artifacts.spec.ts │ │ │ ├── artifacts.ts │ │ │ ├── auto-replace.spec.ts │ │ │ ├── auto-replace.ts │ │ │ ├── automerge.spec.ts │ │ │ ├── automerge.ts │ │ │ ├── check-existing.spec.ts │ │ │ ├── check-existing.ts │ │ │ ├── commit.spec.ts │ │ │ ├── commit.ts │ │ │ ├── execute-post-upgrade-commands.spec.ts │ │ │ ├── execute-post-upgrade-commands.ts │ │ │ ├── get-updated.spec.ts │ │ │ ├── get-updated.ts │ │ │ ├── handle-existing.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── lock-files │ │ │ │ └── index.spec.ts │ │ │ ├── reuse.spec.ts │ │ │ ├── reuse.ts │ │ │ ├── schedule.spec.ts │ │ │ ├── schedule.ts │ │ │ ├── status-checks.spec.ts │ │ │ └── status-checks.ts │ │ └── pr │ │ │ ├── __fixtures__ │ │ │ ├── adapter-utils.md │ │ │ ├── angular-js.md │ │ │ ├── gitter-webapp.md │ │ │ ├── jest.md │ │ │ ├── js-yaml.md │ │ │ └── yargs.md │ │ │ ├── automerge.spec.ts │ │ │ ├── automerge.ts │ │ │ ├── body │ │ │ ├── changelogs.spec.ts │ │ │ ├── changelogs.ts │ │ │ ├── config-description.spec.ts │ │ │ ├── config-description.ts │ │ │ ├── controls.spec.ts │ │ │ ├── controls.ts │ │ │ ├── footer.spec.ts │ │ │ ├── footer.ts │ │ │ ├── header.spec.ts │ │ │ ├── header.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── notes.spec.ts │ │ │ ├── notes.ts │ │ │ ├── updates-table.spec.ts │ │ │ └── updates-table.ts │ │ │ ├── changelog │ │ │ ├── __snapshots__ │ │ │ │ ├── index.spec.ts.snap │ │ │ │ └── release-notes.spec.ts.snap │ │ │ ├── api.ts │ │ │ ├── bitbucket │ │ │ │ ├── index.spec.ts │ │ │ │ ├── index.ts │ │ │ │ └── source.ts │ │ │ ├── common.spec.ts │ │ │ ├── common.ts │ │ │ ├── gitea │ │ │ │ ├── index.spec.ts │ │ │ │ ├── index.ts │ │ │ │ └── source.ts │ │ │ ├── github │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ ├── index.spec.ts │ │ │ │ ├── index.ts │ │ │ │ └── source.ts │ │ │ ├── gitlab │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── index.spec.ts.snap │ │ │ │ ├── index.spec.ts │ │ │ │ ├── index.ts │ │ │ │ └── source.ts │ │ │ ├── hbs-template.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── release-notes.spec.ts │ │ │ ├── release-notes.ts │ │ │ ├── releases.spec.ts │ │ │ ├── releases.ts │ │ │ ├── source.spec.ts │ │ │ ├── source.ts │ │ │ └── types.ts │ │ │ ├── code-owners.spec.ts │ │ │ ├── code-owners.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── labels.spec.ts │ │ │ ├── labels.ts │ │ │ ├── participants.spec.ts │ │ │ ├── participants.ts │ │ │ ├── pr-cache.spec.ts │ │ │ ├── pr-cache.ts │ │ │ └── pr-fingerprint.ts │ └── updates │ │ ├── __snapshots__ │ │ └── generate.spec.ts.snap │ │ ├── branch-name.spec.ts │ │ ├── branch-name.ts │ │ ├── branchify.spec.ts │ │ ├── branchify.ts │ │ ├── flatten.spec.ts │ │ ├── flatten.ts │ │ ├── generate.spec.ts │ │ └── generate.ts │ └── types.ts ├── license ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── readme.md ├── renovate.json ├── test ├── documentation.spec.ts ├── e2e │ └── package.json ├── exec-util.ts ├── fixtures.ts ├── graphql-snapshot.ts ├── http-mock.ts ├── newline-snapshot-serializer.ts ├── s3.ts ├── setup.ts ├── to-migrate.ts ├── tsconfig.json ├── types │ └── jest.d.ts └── util.ts ├── tools ├── check-fenced-code.mjs ├── check-git-version.mjs ├── check-re2.mjs ├── clean-cache.mjs ├── docker.ts ├── docker │ ├── Dockerfile │ ├── bake.hcl │ └── bin │ │ ├── docker-entrypoint.sh │ │ ├── renovate │ │ └── renovate-config-validator ├── docs │ ├── config.ts │ ├── datasources.ts │ ├── github-query-items.ts │ ├── index.ts │ ├── manager-asdf-supported-plugins.ts │ ├── manager.ts │ ├── platforms.ts │ ├── presets.ts │ ├── schema.ts │ ├── templates.ts │ ├── utils.ts │ └── versioning.ts ├── eslint │ ├── index.js │ └── package.json ├── generate-docs.ts ├── generate-imports.mjs ├── generate-schema.ts ├── jest.mjs ├── prepare-release.ts ├── publish-release.ts ├── static-data │ ├── generate-distro-info.mjs │ ├── generate-node-schedule.mjs │ └── utils.mjs └── utils │ ├── docker.ts │ ├── exec.ts │ ├── hash.mjs │ └── index.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.lint.json └── tsconfig.spec.json /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/post-create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.devcontainer/post-create.sh -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/actions/setup-node/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.github/actions/setup-node/action.yml -------------------------------------------------------------------------------- /.github/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.github/contributing.md -------------------------------------------------------------------------------- /.github/label-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.github/label-actions.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/semantic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.github/semantic.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/devcontainer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.github/workflows/devcontainer.yml -------------------------------------------------------------------------------- /.github/workflows/label-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.github/workflows/label-actions.yml -------------------------------------------------------------------------------- /.github/workflows/lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.github/workflows/lock.yml -------------------------------------------------------------------------------- /.github/workflows/mend-slack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.github/workflows/mend-slack.yml -------------------------------------------------------------------------------- /.github/workflows/scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.github/workflows/scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/trivy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.github/workflows/trivy.yml -------------------------------------------------------------------------------- /.github/workflows/update-data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.github/workflows/update-data.yml -------------------------------------------------------------------------------- /.github/workflows/ws_scan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.github/workflows/ws_scan.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.lgtm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.lgtm.yml -------------------------------------------------------------------------------- /.ls-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.ls-lint.yml -------------------------------------------------------------------------------- /.markdownlint-cli2.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.markdownlint-cli2.jsonc -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.npmrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20.11.1 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.releaserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.releaserc.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/SECURITY.md -------------------------------------------------------------------------------- /__mocks__/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/__mocks__/fs.ts -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/codecov.yml -------------------------------------------------------------------------------- /data/debian-distro-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/data/debian-distro-info.json -------------------------------------------------------------------------------- /data/kubernetes-api.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/data/kubernetes-api.json5 -------------------------------------------------------------------------------- /data/node-js-schedule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/data/node-js-schedule.json -------------------------------------------------------------------------------- /data/ubuntu-distro-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/data/ubuntu-distro-info.json -------------------------------------------------------------------------------- /docs/development/best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/development/best-practices.md -------------------------------------------------------------------------------- /docs/development/branches-commits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/development/branches-commits.md -------------------------------------------------------------------------------- /docs/development/bump-node-major.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/development/bump-node-major.md -------------------------------------------------------------------------------- /docs/development/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/development/configuration.md -------------------------------------------------------------------------------- /docs/development/design-decisions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/development/design-decisions.md -------------------------------------------------------------------------------- /docs/development/help-us-help-you.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/development/help-us-help-you.md -------------------------------------------------------------------------------- /docs/development/issue-labeling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/development/issue-labeling.md -------------------------------------------------------------------------------- /docs/development/local-development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/development/local-development.md -------------------------------------------------------------------------------- /docs/development/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/development/readme.md -------------------------------------------------------------------------------- /docs/development/remote-development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/development/remote-development.md -------------------------------------------------------------------------------- /docs/development/static-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/development/static-data.md -------------------------------------------------------------------------------- /docs/development/style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/development/style-guide.md -------------------------------------------------------------------------------- /docs/development/triage-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/development/triage-guide.md -------------------------------------------------------------------------------- /docs/development/zod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/development/zod.md -------------------------------------------------------------------------------- /docs/usage/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/.pages -------------------------------------------------------------------------------- /docs/usage/about-us.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/about-us.md -------------------------------------------------------------------------------- /docs/usage/assets/images/all-dead.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/assets/images/all-dead.jpg -------------------------------------------------------------------------------- /docs/usage/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/assets/images/logo.png -------------------------------------------------------------------------------- /docs/usage/assets/images/onboarding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/assets/images/onboarding.png -------------------------------------------------------------------------------- /docs/usage/bazel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/bazel.md -------------------------------------------------------------------------------- /docs/usage/bicep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/bicep.md -------------------------------------------------------------------------------- /docs/usage/bot-comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/bot-comparison.md -------------------------------------------------------------------------------- /docs/usage/config-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/config-overview.md -------------------------------------------------------------------------------- /docs/usage/config-presets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/config-presets.md -------------------------------------------------------------------------------- /docs/usage/config-validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/config-validation.md -------------------------------------------------------------------------------- /docs/usage/configuration-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/configuration-options.md -------------------------------------------------------------------------------- /docs/usage/configuration-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/configuration-templates.md -------------------------------------------------------------------------------- /docs/usage/contributing-to-renovate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/contributing-to-renovate.md -------------------------------------------------------------------------------- /docs/usage/dependency-pinning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/dependency-pinning.md -------------------------------------------------------------------------------- /docs/usage/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/docker.md -------------------------------------------------------------------------------- /docs/usage/examples/opentelemetry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/examples/opentelemetry.md -------------------------------------------------------------------------------- /docs/usage/examples/self-hosting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/examples/self-hosting.md -------------------------------------------------------------------------------- /docs/usage/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/faq.md -------------------------------------------------------------------------------- /docs/usage/getting-started/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/getting-started/.pages -------------------------------------------------------------------------------- /docs/usage/getting-started/running.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/getting-started/running.md -------------------------------------------------------------------------------- /docs/usage/getting-started/use-cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/getting-started/use-cases.md -------------------------------------------------------------------------------- /docs/usage/gitlab-bot-security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/gitlab-bot-security.md -------------------------------------------------------------------------------- /docs/usage/golang.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/golang.md -------------------------------------------------------------------------------- /docs/usage/java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/java.md -------------------------------------------------------------------------------- /docs/usage/javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/javascript.md -------------------------------------------------------------------------------- /docs/usage/key-concepts/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/key-concepts/.pages -------------------------------------------------------------------------------- /docs/usage/key-concepts/automerge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/key-concepts/automerge.md -------------------------------------------------------------------------------- /docs/usage/key-concepts/changelogs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/key-concepts/changelogs.md -------------------------------------------------------------------------------- /docs/usage/key-concepts/dashboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/key-concepts/dashboard.md -------------------------------------------------------------------------------- /docs/usage/key-concepts/presets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/key-concepts/presets.md -------------------------------------------------------------------------------- /docs/usage/key-concepts/scheduling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/key-concepts/scheduling.md -------------------------------------------------------------------------------- /docs/usage/known-limitations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/known-limitations.md -------------------------------------------------------------------------------- /docs/usage/merge-confidence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/merge-confidence.md -------------------------------------------------------------------------------- /docs/usage/modules/.pages: -------------------------------------------------------------------------------- 1 | title: Renovate Modules 2 | order: asc 3 | sort_type: natural 4 | -------------------------------------------------------------------------------- /docs/usage/modules/datasource/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/modules/datasource/.pages -------------------------------------------------------------------------------- /docs/usage/modules/datasource/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/modules/datasource/index.md -------------------------------------------------------------------------------- /docs/usage/modules/manager/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/modules/manager/.pages -------------------------------------------------------------------------------- /docs/usage/modules/manager/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/modules/manager/index.md -------------------------------------------------------------------------------- /docs/usage/modules/platform/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/modules/platform/.pages -------------------------------------------------------------------------------- /docs/usage/modules/platform/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/modules/platform/index.md -------------------------------------------------------------------------------- /docs/usage/modules/versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/modules/versioning.md -------------------------------------------------------------------------------- /docs/usage/node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/node.md -------------------------------------------------------------------------------- /docs/usage/noise-reduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/noise-reduction.md -------------------------------------------------------------------------------- /docs/usage/nuget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/nuget.md -------------------------------------------------------------------------------- /docs/usage/opentelemetry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/opentelemetry.md -------------------------------------------------------------------------------- /docs/usage/php.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/php.md -------------------------------------------------------------------------------- /docs/usage/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/python.md -------------------------------------------------------------------------------- /docs/usage/reading-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/reading-list.md -------------------------------------------------------------------------------- /docs/usage/ruby.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/ruby.md -------------------------------------------------------------------------------- /docs/usage/rust.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/rust.md -------------------------------------------------------------------------------- /docs/usage/security-and-permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/security-and-permissions.md -------------------------------------------------------------------------------- /docs/usage/self-hosted-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/self-hosted-configuration.md -------------------------------------------------------------------------------- /docs/usage/self-hosted-experimental.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/self-hosted-experimental.md -------------------------------------------------------------------------------- /docs/usage/semantic-commits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/semantic-commits.md -------------------------------------------------------------------------------- /docs/usage/string-pattern-matching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/string-pattern-matching.md -------------------------------------------------------------------------------- /docs/usage/templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/templates.md -------------------------------------------------------------------------------- /docs/usage/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/troubleshooting.md -------------------------------------------------------------------------------- /docs/usage/updating-rebasing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/updating-rebasing.md -------------------------------------------------------------------------------- /docs/usage/upgrade-best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/upgrade-best-practices.md -------------------------------------------------------------------------------- /docs/usage/user-stories/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/user-stories/.pages -------------------------------------------------------------------------------- /docs/usage/user-stories/swissquote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/docs/usage/user-stories/swissquote.md -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/jest.config.ts -------------------------------------------------------------------------------- /lib/config-validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config-validator.ts -------------------------------------------------------------------------------- /lib/config/__fixtures__/private-pgp.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/__fixtures__/private-pgp.pem -------------------------------------------------------------------------------- /lib/config/__fixtures__/private.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/__fixtures__/private.pem -------------------------------------------------------------------------------- /lib/config/app-strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/app-strings.ts -------------------------------------------------------------------------------- /lib/config/decrypt.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/decrypt.spec.ts -------------------------------------------------------------------------------- /lib/config/decrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/decrypt.ts -------------------------------------------------------------------------------- /lib/config/defaults.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/defaults.spec.ts -------------------------------------------------------------------------------- /lib/config/defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/defaults.ts -------------------------------------------------------------------------------- /lib/config/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/global.ts -------------------------------------------------------------------------------- /lib/config/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/index.spec.ts -------------------------------------------------------------------------------- /lib/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/index.ts -------------------------------------------------------------------------------- /lib/config/massage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/massage.spec.ts -------------------------------------------------------------------------------- /lib/config/massage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/massage.ts -------------------------------------------------------------------------------- /lib/config/migrate-validate.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/migrate-validate.spec.ts -------------------------------------------------------------------------------- /lib/config/migrate-validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/migrate-validate.ts -------------------------------------------------------------------------------- /lib/config/migration.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/migration.spec.ts -------------------------------------------------------------------------------- /lib/config/migration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/migration.ts -------------------------------------------------------------------------------- /lib/config/migrations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/migrations/index.ts -------------------------------------------------------------------------------- /lib/config/migrations/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/migrations/types.ts -------------------------------------------------------------------------------- /lib/config/options/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/options/index.spec.ts -------------------------------------------------------------------------------- /lib/config/options/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/options/index.ts -------------------------------------------------------------------------------- /lib/config/parse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/parse.ts -------------------------------------------------------------------------------- /lib/config/presets/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/presets/common.ts -------------------------------------------------------------------------------- /lib/config/presets/gitea/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/presets/gitea/index.spec.ts -------------------------------------------------------------------------------- /lib/config/presets/gitea/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/presets/gitea/index.ts -------------------------------------------------------------------------------- /lib/config/presets/github/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/presets/github/index.spec.ts -------------------------------------------------------------------------------- /lib/config/presets/github/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/presets/github/index.ts -------------------------------------------------------------------------------- /lib/config/presets/gitlab/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/presets/gitlab/index.spec.ts -------------------------------------------------------------------------------- /lib/config/presets/gitlab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/presets/gitlab/index.ts -------------------------------------------------------------------------------- /lib/config/presets/http/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/presets/http/index.spec.ts -------------------------------------------------------------------------------- /lib/config/presets/http/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/presets/http/index.ts -------------------------------------------------------------------------------- /lib/config/presets/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/presets/index.spec.ts -------------------------------------------------------------------------------- /lib/config/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/presets/index.ts -------------------------------------------------------------------------------- /lib/config/presets/internal/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/presets/internal/config.ts -------------------------------------------------------------------------------- /lib/config/presets/internal/default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/presets/internal/default.ts -------------------------------------------------------------------------------- /lib/config/presets/internal/docker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/presets/internal/docker.ts -------------------------------------------------------------------------------- /lib/config/presets/internal/group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/presets/internal/group.ts -------------------------------------------------------------------------------- /lib/config/presets/internal/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/presets/internal/helpers.ts -------------------------------------------------------------------------------- /lib/config/presets/internal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/presets/internal/index.ts -------------------------------------------------------------------------------- /lib/config/presets/internal/monorepo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/presets/internal/monorepo.ts -------------------------------------------------------------------------------- /lib/config/presets/internal/npm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/presets/internal/npm.ts -------------------------------------------------------------------------------- /lib/config/presets/internal/packages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/presets/internal/packages.ts -------------------------------------------------------------------------------- /lib/config/presets/internal/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/presets/internal/preview.ts -------------------------------------------------------------------------------- /lib/config/presets/internal/schedule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/presets/internal/schedule.ts -------------------------------------------------------------------------------- /lib/config/presets/internal/security.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/presets/internal/security.ts -------------------------------------------------------------------------------- /lib/config/presets/local/common.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/presets/local/common.spec.ts -------------------------------------------------------------------------------- /lib/config/presets/local/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/presets/local/common.ts -------------------------------------------------------------------------------- /lib/config/presets/local/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/presets/local/index.spec.ts -------------------------------------------------------------------------------- /lib/config/presets/local/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/presets/local/index.ts -------------------------------------------------------------------------------- /lib/config/presets/npm/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/presets/npm/index.spec.ts -------------------------------------------------------------------------------- /lib/config/presets/npm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/presets/npm/index.ts -------------------------------------------------------------------------------- /lib/config/presets/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/presets/types.ts -------------------------------------------------------------------------------- /lib/config/presets/util.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/presets/util.spec.ts -------------------------------------------------------------------------------- /lib/config/presets/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/presets/util.ts -------------------------------------------------------------------------------- /lib/config/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/schema.ts -------------------------------------------------------------------------------- /lib/config/secrets.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/secrets.spec.ts -------------------------------------------------------------------------------- /lib/config/secrets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/secrets.ts -------------------------------------------------------------------------------- /lib/config/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/types.ts -------------------------------------------------------------------------------- /lib/config/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/utils.ts -------------------------------------------------------------------------------- /lib/config/validation-helpers/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/validation-helpers/types.ts -------------------------------------------------------------------------------- /lib/config/validation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/validation.spec.ts -------------------------------------------------------------------------------- /lib/config/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/config/validation.ts -------------------------------------------------------------------------------- /lib/constants/category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/constants/category.ts -------------------------------------------------------------------------------- /lib/constants/error-messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/constants/error-messages.ts -------------------------------------------------------------------------------- /lib/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/constants/index.ts -------------------------------------------------------------------------------- /lib/constants/platform.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/constants/platform.spec.ts -------------------------------------------------------------------------------- /lib/constants/platforms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/constants/platforms.ts -------------------------------------------------------------------------------- /lib/expose.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/expose.cjs -------------------------------------------------------------------------------- /lib/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/globals.d.ts -------------------------------------------------------------------------------- /lib/instrumentation/decorator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/instrumentation/decorator.spec.ts -------------------------------------------------------------------------------- /lib/instrumentation/decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/instrumentation/decorator.ts -------------------------------------------------------------------------------- /lib/instrumentation/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/instrumentation/index.spec.ts -------------------------------------------------------------------------------- /lib/instrumentation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/instrumentation/index.ts -------------------------------------------------------------------------------- /lib/instrumentation/reporting.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/instrumentation/reporting.spec.ts -------------------------------------------------------------------------------- /lib/instrumentation/reporting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/instrumentation/reporting.ts -------------------------------------------------------------------------------- /lib/instrumentation/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/instrumentation/types.ts -------------------------------------------------------------------------------- /lib/instrumentation/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/instrumentation/utils.ts -------------------------------------------------------------------------------- /lib/logger/cmd-serializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/logger/cmd-serializer.ts -------------------------------------------------------------------------------- /lib/logger/config-serializer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/logger/config-serializer.spec.ts -------------------------------------------------------------------------------- /lib/logger/config-serializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/logger/config-serializer.ts -------------------------------------------------------------------------------- /lib/logger/err-serializer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/logger/err-serializer.spec.ts -------------------------------------------------------------------------------- /lib/logger/err-serializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/logger/err-serializer.ts -------------------------------------------------------------------------------- /lib/logger/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/logger/index.spec.ts -------------------------------------------------------------------------------- /lib/logger/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/logger/index.ts -------------------------------------------------------------------------------- /lib/logger/once.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/logger/once.spec.ts -------------------------------------------------------------------------------- /lib/logger/once.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/logger/once.ts -------------------------------------------------------------------------------- /lib/logger/pretty-stdout.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/logger/pretty-stdout.spec.ts -------------------------------------------------------------------------------- /lib/logger/pretty-stdout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/logger/pretty-stdout.ts -------------------------------------------------------------------------------- /lib/logger/remap.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/logger/remap.spec.ts -------------------------------------------------------------------------------- /lib/logger/remap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/logger/remap.ts -------------------------------------------------------------------------------- /lib/logger/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/logger/types.ts -------------------------------------------------------------------------------- /lib/logger/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/logger/utils.spec.ts -------------------------------------------------------------------------------- /lib/logger/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/logger/utils.ts -------------------------------------------------------------------------------- /lib/modules/datasource/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/api.ts -------------------------------------------------------------------------------- /lib/modules/datasource/artifactory/common.ts: -------------------------------------------------------------------------------- 1 | export const datasource = 'artifactory'; 2 | -------------------------------------------------------------------------------- /lib/modules/datasource/aws-rds/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/aws-rds/index.ts -------------------------------------------------------------------------------- /lib/modules/datasource/bazel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/bazel/index.ts -------------------------------------------------------------------------------- /lib/modules/datasource/bazel/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/bazel/readme.md -------------------------------------------------------------------------------- /lib/modules/datasource/bazel/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/bazel/schema.ts -------------------------------------------------------------------------------- /lib/modules/datasource/cdnjs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/cdnjs/index.ts -------------------------------------------------------------------------------- /lib/modules/datasource/cdnjs/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/cdnjs/schema.ts -------------------------------------------------------------------------------- /lib/modules/datasource/clojure/common.ts: -------------------------------------------------------------------------------- 1 | export const CLOJARS_REPO = 'https://clojars.org/repo'; 2 | -------------------------------------------------------------------------------- /lib/modules/datasource/clojure/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/clojure/index.ts -------------------------------------------------------------------------------- /lib/modules/datasource/common.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/common.spec.ts -------------------------------------------------------------------------------- /lib/modules/datasource/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/common.ts -------------------------------------------------------------------------------- /lib/modules/datasource/conan/__fixtures__/fake.json: -------------------------------------------------------------------------------- 1 | { 2 | "results" : [ ] 3 | } 4 | -------------------------------------------------------------------------------- /lib/modules/datasource/conan/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/conan/common.ts -------------------------------------------------------------------------------- /lib/modules/datasource/conan/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/conan/index.ts -------------------------------------------------------------------------------- /lib/modules/datasource/conan/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/conan/types.ts -------------------------------------------------------------------------------- /lib/modules/datasource/conda/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/conda/common.ts -------------------------------------------------------------------------------- /lib/modules/datasource/conda/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/conda/index.ts -------------------------------------------------------------------------------- /lib/modules/datasource/conda/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/conda/readme.md -------------------------------------------------------------------------------- /lib/modules/datasource/conda/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/conda/types.ts -------------------------------------------------------------------------------- /lib/modules/datasource/cpan/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/cpan/index.ts -------------------------------------------------------------------------------- /lib/modules/datasource/cpan/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/cpan/types.ts -------------------------------------------------------------------------------- /lib/modules/datasource/crate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/crate/index.ts -------------------------------------------------------------------------------- /lib/modules/datasource/crate/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/crate/types.ts -------------------------------------------------------------------------------- /lib/modules/datasource/custom/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/custom/index.ts -------------------------------------------------------------------------------- /lib/modules/datasource/custom/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/custom/readme.md -------------------------------------------------------------------------------- /lib/modules/datasource/custom/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/custom/schema.ts -------------------------------------------------------------------------------- /lib/modules/datasource/custom/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/custom/utils.ts -------------------------------------------------------------------------------- /lib/modules/datasource/dart/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/dart/index.ts -------------------------------------------------------------------------------- /lib/modules/datasource/dart/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/dart/types.ts -------------------------------------------------------------------------------- /lib/modules/datasource/datasource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/datasource.ts -------------------------------------------------------------------------------- /lib/modules/datasource/deno/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/deno/index.ts -------------------------------------------------------------------------------- /lib/modules/datasource/deno/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/deno/readme.md -------------------------------------------------------------------------------- /lib/modules/datasource/deno/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/deno/schema.ts -------------------------------------------------------------------------------- /lib/modules/datasource/docker/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/docker/common.ts -------------------------------------------------------------------------------- /lib/modules/datasource/docker/ecr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/docker/ecr.ts -------------------------------------------------------------------------------- /lib/modules/datasource/docker/google.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/docker/google.ts -------------------------------------------------------------------------------- /lib/modules/datasource/docker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/docker/index.ts -------------------------------------------------------------------------------- /lib/modules/datasource/docker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/docker/readme.md -------------------------------------------------------------------------------- /lib/modules/datasource/docker/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/docker/schema.ts -------------------------------------------------------------------------------- /lib/modules/datasource/docker/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/docker/types.ts -------------------------------------------------------------------------------- /lib/modules/datasource/galaxy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/galaxy/index.ts -------------------------------------------------------------------------------- /lib/modules/datasource/galaxy/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/galaxy/schema.ts -------------------------------------------------------------------------------- /lib/modules/datasource/git-refs/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/git-refs/base.ts -------------------------------------------------------------------------------- /lib/modules/datasource/gitlab-packages/common.ts: -------------------------------------------------------------------------------- 1 | export const datasource = 'gitlab-packages'; 2 | -------------------------------------------------------------------------------- /lib/modules/datasource/go/base.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/go/base.spec.ts -------------------------------------------------------------------------------- /lib/modules/datasource/go/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/go/base.ts -------------------------------------------------------------------------------- /lib/modules/datasource/go/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/go/common.ts -------------------------------------------------------------------------------- /lib/modules/datasource/go/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/go/index.spec.ts -------------------------------------------------------------------------------- /lib/modules/datasource/go/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/go/index.ts -------------------------------------------------------------------------------- /lib/modules/datasource/go/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/go/readme.md -------------------------------------------------------------------------------- /lib/modules/datasource/go/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/go/types.ts -------------------------------------------------------------------------------- /lib/modules/datasource/helm/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/helm/common.ts -------------------------------------------------------------------------------- /lib/modules/datasource/helm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/helm/index.ts -------------------------------------------------------------------------------- /lib/modules/datasource/helm/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/helm/types.ts -------------------------------------------------------------------------------- /lib/modules/datasource/hermit/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/hermit/index.ts -------------------------------------------------------------------------------- /lib/modules/datasource/hermit/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/hermit/readme.md -------------------------------------------------------------------------------- /lib/modules/datasource/hermit/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/hermit/types.ts -------------------------------------------------------------------------------- /lib/modules/datasource/hex/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/hex/index.ts -------------------------------------------------------------------------------- /lib/modules/datasource/hex/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/hex/schema.ts -------------------------------------------------------------------------------- /lib/modules/datasource/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/index.spec.ts -------------------------------------------------------------------------------- /lib/modules/datasource/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/index.ts -------------------------------------------------------------------------------- /lib/modules/datasource/maven/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/maven/common.ts -------------------------------------------------------------------------------- /lib/modules/datasource/maven/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/maven/index.ts -------------------------------------------------------------------------------- /lib/modules/datasource/maven/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/maven/readme.md -------------------------------------------------------------------------------- /lib/modules/datasource/maven/s3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/maven/s3.spec.ts -------------------------------------------------------------------------------- /lib/modules/datasource/maven/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/maven/types.ts -------------------------------------------------------------------------------- /lib/modules/datasource/maven/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/maven/util.ts -------------------------------------------------------------------------------- /lib/modules/datasource/metadata.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/metadata.spec.ts -------------------------------------------------------------------------------- /lib/modules/datasource/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/metadata.ts -------------------------------------------------------------------------------- /lib/modules/datasource/npm/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/npm/common.ts -------------------------------------------------------------------------------- /lib/modules/datasource/npm/get.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/npm/get.spec.ts -------------------------------------------------------------------------------- /lib/modules/datasource/npm/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/npm/get.ts -------------------------------------------------------------------------------- /lib/modules/datasource/npm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/npm/index.ts -------------------------------------------------------------------------------- /lib/modules/datasource/npm/npmrc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/npm/npmrc.ts -------------------------------------------------------------------------------- /lib/modules/datasource/npm/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/npm/types.ts -------------------------------------------------------------------------------- /lib/modules/datasource/nuget/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/nuget/common.ts -------------------------------------------------------------------------------- /lib/modules/datasource/nuget/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/nuget/index.ts -------------------------------------------------------------------------------- /lib/modules/datasource/nuget/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/nuget/types.ts -------------------------------------------------------------------------------- /lib/modules/datasource/nuget/v2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/nuget/v2.ts -------------------------------------------------------------------------------- /lib/modules/datasource/nuget/v3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/nuget/v3.ts -------------------------------------------------------------------------------- /lib/modules/datasource/orb/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/orb/index.ts -------------------------------------------------------------------------------- /lib/modules/datasource/orb/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/orb/types.ts -------------------------------------------------------------------------------- /lib/modules/datasource/pod/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/pod/index.ts -------------------------------------------------------------------------------- /lib/modules/datasource/puppet-forge/common.ts: -------------------------------------------------------------------------------- 1 | export const PUPPET_FORGE = 'https://forgeapi.puppet.com'; 2 | -------------------------------------------------------------------------------- /lib/modules/datasource/pypi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/pypi/index.ts -------------------------------------------------------------------------------- /lib/modules/datasource/pypi/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/pypi/types.ts -------------------------------------------------------------------------------- /lib/modules/datasource/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/readme.md -------------------------------------------------------------------------------- /lib/modules/datasource/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/schema.ts -------------------------------------------------------------------------------- /lib/modules/datasource/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/types.ts -------------------------------------------------------------------------------- /lib/modules/datasource/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/util.ts -------------------------------------------------------------------------------- /lib/modules/datasource/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/datasource/utils.spec.ts -------------------------------------------------------------------------------- /lib/modules/manager/ansible/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/ansible/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/api.ts -------------------------------------------------------------------------------- /lib/modules/manager/argocd/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/argocd/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/argocd/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/argocd/readme.md -------------------------------------------------------------------------------- /lib/modules/manager/argocd/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/argocd/schema.ts -------------------------------------------------------------------------------- /lib/modules/manager/argocd/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/argocd/util.ts -------------------------------------------------------------------------------- /lib/modules/manager/asdf/extract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/asdf/extract.ts -------------------------------------------------------------------------------- /lib/modules/manager/asdf/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/asdf/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/asdf/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/asdf/readme.md -------------------------------------------------------------------------------- /lib/modules/manager/batect/__fixtures__/empty/batect.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/modules/manager/batect/__fixtures__/invalid/batect.yml: -------------------------------------------------------------------------------- 1 | nothing here 2 | -------------------------------------------------------------------------------- /lib/modules/manager/batect/__fixtures__/no-containers-or-includes/batect.yml: -------------------------------------------------------------------------------- 1 | something_else: some_value 2 | -------------------------------------------------------------------------------- /lib/modules/manager/batect/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/batect/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/batect/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/batect/readme.md -------------------------------------------------------------------------------- /lib/modules/manager/batect/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/batect/types.ts -------------------------------------------------------------------------------- /lib/modules/manager/bazel/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/bazel/common.ts -------------------------------------------------------------------------------- /lib/modules/manager/bazel/extract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/bazel/extract.ts -------------------------------------------------------------------------------- /lib/modules/manager/bazel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/bazel/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/bazel/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/bazel/parser.ts -------------------------------------------------------------------------------- /lib/modules/manager/bazel/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/bazel/readme.md -------------------------------------------------------------------------------- /lib/modules/manager/bazel/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/bazel/types.ts -------------------------------------------------------------------------------- /lib/modules/manager/bazelisk/readme.md: -------------------------------------------------------------------------------- 1 | Simply keeps the `.bazelversion` file updated. 2 | -------------------------------------------------------------------------------- /lib/modules/manager/bicep/extract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/bicep/extract.ts -------------------------------------------------------------------------------- /lib/modules/manager/bicep/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/bicep/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/bicep/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/bicep/readme.md -------------------------------------------------------------------------------- /lib/modules/manager/bun/artifacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/bun/artifacts.ts -------------------------------------------------------------------------------- /lib/modules/manager/bun/extract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/bun/extract.ts -------------------------------------------------------------------------------- /lib/modules/manager/bun/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/bun/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/bun/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/bun/readme.md -------------------------------------------------------------------------------- /lib/modules/manager/bundler/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/bundler/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/cake/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/cake/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/cake/readme.md: -------------------------------------------------------------------------------- 1 | Extracts dependencies from `*.cake` files. 2 | -------------------------------------------------------------------------------- /lib/modules/manager/cargo/extract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/cargo/extract.ts -------------------------------------------------------------------------------- /lib/modules/manager/cargo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/cargo/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/cargo/range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/cargo/range.ts -------------------------------------------------------------------------------- /lib/modules/manager/cargo/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/cargo/readme.md -------------------------------------------------------------------------------- /lib/modules/manager/cargo/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/cargo/schema.ts -------------------------------------------------------------------------------- /lib/modules/manager/cargo/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/cargo/types.ts -------------------------------------------------------------------------------- /lib/modules/manager/cargo/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/cargo/update.ts -------------------------------------------------------------------------------- /lib/modules/manager/cargo/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/cargo/utils.ts -------------------------------------------------------------------------------- /lib/modules/manager/cdnurl/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/cdnurl/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/cdnurl/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/cdnurl/readme.md -------------------------------------------------------------------------------- /lib/modules/manager/conan/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/conan/common.ts -------------------------------------------------------------------------------- /lib/modules/manager/conan/extract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/conan/extract.ts -------------------------------------------------------------------------------- /lib/modules/manager/conan/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/conan/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/conan/range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/conan/range.ts -------------------------------------------------------------------------------- /lib/modules/manager/conan/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/conan/readme.md -------------------------------------------------------------------------------- /lib/modules/manager/custom/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/custom/api.ts -------------------------------------------------------------------------------- /lib/modules/manager/custom/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/custom/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/custom/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/custom/types.ts -------------------------------------------------------------------------------- /lib/modules/manager/deps-edn/readme.md: -------------------------------------------------------------------------------- 1 | Extracts Maven dependencies from `deps.edn` files. 2 | -------------------------------------------------------------------------------- /lib/modules/manager/droneci/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/droneci/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/fleet/extract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/fleet/extract.ts -------------------------------------------------------------------------------- /lib/modules/manager/fleet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/fleet/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/fleet/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/fleet/readme.md -------------------------------------------------------------------------------- /lib/modules/manager/fleet/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/fleet/schema.ts -------------------------------------------------------------------------------- /lib/modules/manager/flux/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/flux/common.ts -------------------------------------------------------------------------------- /lib/modules/manager/flux/extract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/flux/extract.ts -------------------------------------------------------------------------------- /lib/modules/manager/flux/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/flux/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/flux/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/flux/readme.md -------------------------------------------------------------------------------- /lib/modules/manager/flux/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/flux/schema.ts -------------------------------------------------------------------------------- /lib/modules/manager/flux/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/flux/types.ts -------------------------------------------------------------------------------- /lib/modules/manager/fvm/extract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/fvm/extract.ts -------------------------------------------------------------------------------- /lib/modules/manager/fvm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/fvm/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/fvm/readme.md: -------------------------------------------------------------------------------- 1 | Keeps the `.fvm/fvm_config.json` file updated. 2 | -------------------------------------------------------------------------------- /lib/modules/manager/git-submodules/__fixtures__/.gitmodules.1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/modules/manager/gitlabci-include/readme.md: -------------------------------------------------------------------------------- 1 | Extracts "includes" dependencies from `gitlab-ci.yml` files. 2 | -------------------------------------------------------------------------------- /lib/modules/manager/gitlabci/__fixtures__/gitlab-ci.2.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/modules/manager/gomod/extract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/gomod/extract.ts -------------------------------------------------------------------------------- /lib/modules/manager/gomod/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/gomod/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/gomod/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/gomod/readme.md -------------------------------------------------------------------------------- /lib/modules/manager/gomod/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/gomod/types.ts -------------------------------------------------------------------------------- /lib/modules/manager/gomod/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/gomod/update.ts -------------------------------------------------------------------------------- /lib/modules/manager/gradle-wrapper/__fixtures__/wrongCmd/gradlew: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo 'failed' >&2 3 | exit 1 4 | -------------------------------------------------------------------------------- /lib/modules/manager/gradle-wrapper/__fixtures__/wrongCmd/gradlew.bat: -------------------------------------------------------------------------------- 1 | echo "failed" >&2 2 | exit 1 3 | -------------------------------------------------------------------------------- /lib/modules/manager/gradle/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/gradle/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/gradle/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/gradle/parser.ts -------------------------------------------------------------------------------- /lib/modules/manager/gradle/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/gradle/readme.md -------------------------------------------------------------------------------- /lib/modules/manager/gradle/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/gradle/types.ts -------------------------------------------------------------------------------- /lib/modules/manager/gradle/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/gradle/update.ts -------------------------------------------------------------------------------- /lib/modules/manager/gradle/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/gradle/utils.ts -------------------------------------------------------------------------------- /lib/modules/manager/helmv3/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/helmv3/common.ts -------------------------------------------------------------------------------- /lib/modules/manager/helmv3/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/helmv3/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/helmv3/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/helmv3/readme.md -------------------------------------------------------------------------------- /lib/modules/manager/helmv3/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/helmv3/types.ts -------------------------------------------------------------------------------- /lib/modules/manager/helmv3/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/helmv3/update.ts -------------------------------------------------------------------------------- /lib/modules/manager/helmv3/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/helmv3/utils.ts -------------------------------------------------------------------------------- /lib/modules/manager/hermit/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/hermit/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/hermit/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/hermit/readme.md -------------------------------------------------------------------------------- /lib/modules/manager/hermit/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/hermit/types.ts -------------------------------------------------------------------------------- /lib/modules/manager/hermit/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/hermit/update.ts -------------------------------------------------------------------------------- /lib/modules/manager/homebrew/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/modules/manager/homebrew/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/homebrew/util.ts -------------------------------------------------------------------------------- /lib/modules/manager/html/extract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/html/extract.ts -------------------------------------------------------------------------------- /lib/modules/manager/html/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/html/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/html/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/html/readme.md -------------------------------------------------------------------------------- /lib/modules/manager/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/index.spec.ts -------------------------------------------------------------------------------- /lib/modules/manager/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/jenkins/__fixtures__/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/modules/manager/jenkins/__fixtures__/empty.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/modules/manager/jenkins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/jenkins/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/jenkins/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/jenkins/types.ts -------------------------------------------------------------------------------- /lib/modules/manager/leiningen/readme.md: -------------------------------------------------------------------------------- 1 | Extracts Maven-type dependencies. 2 | -------------------------------------------------------------------------------- /lib/modules/manager/maven/extract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/maven/extract.ts -------------------------------------------------------------------------------- /lib/modules/manager/maven/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/maven/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/maven/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/maven/readme.md -------------------------------------------------------------------------------- /lib/modules/manager/maven/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/maven/types.ts -------------------------------------------------------------------------------- /lib/modules/manager/maven/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/maven/update.ts -------------------------------------------------------------------------------- /lib/modules/manager/metadata.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/metadata.spec.ts -------------------------------------------------------------------------------- /lib/modules/manager/meteor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/meteor/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/meteor/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/modules/manager/mint/extract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/mint/extract.ts -------------------------------------------------------------------------------- /lib/modules/manager/mint/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/mint/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/mint/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/mint/readme.md -------------------------------------------------------------------------------- /lib/modules/manager/mix/artifacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/mix/artifacts.ts -------------------------------------------------------------------------------- /lib/modules/manager/mix/extract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/mix/extract.ts -------------------------------------------------------------------------------- /lib/modules/manager/mix/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/mix/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/mix/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/mix/readme.md -------------------------------------------------------------------------------- /lib/modules/manager/nix/artifacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/nix/artifacts.ts -------------------------------------------------------------------------------- /lib/modules/manager/nix/extract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/nix/extract.ts -------------------------------------------------------------------------------- /lib/modules/manager/nix/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/nix/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/nix/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/nix/readme.md -------------------------------------------------------------------------------- /lib/modules/manager/nodenv/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/nodenv/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/nodenv/readme.md: -------------------------------------------------------------------------------- 1 | Simply keeps the `.node-version` file updated. 2 | -------------------------------------------------------------------------------- /lib/modules/manager/npm/detect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/npm/detect.ts -------------------------------------------------------------------------------- /lib/modules/manager/npm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/npm/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/npm/range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/npm/range.ts -------------------------------------------------------------------------------- /lib/modules/manager/npm/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/npm/readme.md -------------------------------------------------------------------------------- /lib/modules/manager/npm/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/npm/schema.ts -------------------------------------------------------------------------------- /lib/modules/manager/npm/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/npm/types.ts -------------------------------------------------------------------------------- /lib/modules/manager/npm/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/npm/utils.ts -------------------------------------------------------------------------------- /lib/modules/manager/nuget/__fixtures__/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | obj/ 3 | -------------------------------------------------------------------------------- /lib/modules/manager/nuget/__fixtures__/msbuild-sdk-files/invalid-json/global.json: -------------------------------------------------------------------------------- 1 | invalid json 2 | -------------------------------------------------------------------------------- /lib/modules/manager/nuget/__fixtures__/with-malformed-config-file/NuGet.config: -------------------------------------------------------------------------------- 1 | This is no XML document 2 | -------------------------------------------------------------------------------- /lib/modules/manager/nuget/extract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/nuget/extract.ts -------------------------------------------------------------------------------- /lib/modules/manager/nuget/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/nuget/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/nuget/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/nuget/readme.md -------------------------------------------------------------------------------- /lib/modules/manager/nuget/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/nuget/types.ts -------------------------------------------------------------------------------- /lib/modules/manager/nuget/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/nuget/update.ts -------------------------------------------------------------------------------- /lib/modules/manager/nuget/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/nuget/util.ts -------------------------------------------------------------------------------- /lib/modules/manager/nvm/extract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/nvm/extract.ts -------------------------------------------------------------------------------- /lib/modules/manager/nvm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/nvm/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/nvm/readme.md: -------------------------------------------------------------------------------- 1 | Simply keeps the `.nvmrc` file updated. 2 | -------------------------------------------------------------------------------- /lib/modules/manager/ocb/extract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/ocb/extract.ts -------------------------------------------------------------------------------- /lib/modules/manager/ocb/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/ocb/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/ocb/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/ocb/readme.md -------------------------------------------------------------------------------- /lib/modules/manager/ocb/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/ocb/schema.ts -------------------------------------------------------------------------------- /lib/modules/manager/ocb/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/ocb/update.ts -------------------------------------------------------------------------------- /lib/modules/manager/osgi/extract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/osgi/extract.ts -------------------------------------------------------------------------------- /lib/modules/manager/osgi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/osgi/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/osgi/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/osgi/readme.md -------------------------------------------------------------------------------- /lib/modules/manager/osgi/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/osgi/types.ts -------------------------------------------------------------------------------- /lib/modules/manager/pep621/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/pep621/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/pep621/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/pep621/readme.md -------------------------------------------------------------------------------- /lib/modules/manager/pep621/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/pep621/schema.ts -------------------------------------------------------------------------------- /lib/modules/manager/pep621/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/pep621/types.ts -------------------------------------------------------------------------------- /lib/modules/manager/pep621/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/pep621/update.ts -------------------------------------------------------------------------------- /lib/modules/manager/pep621/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/pep621/utils.ts -------------------------------------------------------------------------------- /lib/modules/manager/pipenv/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/pipenv/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/pipenv/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/pipenv/readme.md -------------------------------------------------------------------------------- /lib/modules/manager/pipenv/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/pipenv/schema.ts -------------------------------------------------------------------------------- /lib/modules/manager/pipenv/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/pipenv/types.ts -------------------------------------------------------------------------------- /lib/modules/manager/poetry/__fixtures__/pyproject.5.toml: -------------------------------------------------------------------------------- 1 | [tool.black] 2 | line-length = 100 3 | py36 = true -------------------------------------------------------------------------------- /lib/modules/manager/poetry/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/poetry/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/poetry/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/poetry/readme.md -------------------------------------------------------------------------------- /lib/modules/manager/poetry/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/poetry/schema.ts -------------------------------------------------------------------------------- /lib/modules/manager/poetry/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/poetry/types.ts -------------------------------------------------------------------------------- /lib/modules/manager/pre-commit/__fixtures__/no_repos.pre-commit-config.yaml: -------------------------------------------------------------------------------- 1 | # missing repos element 2 | fail_fast: true 3 | -------------------------------------------------------------------------------- /lib/modules/manager/pub/artifacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/pub/artifacts.ts -------------------------------------------------------------------------------- /lib/modules/manager/pub/extract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/pub/extract.ts -------------------------------------------------------------------------------- /lib/modules/manager/pub/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/pub/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/pub/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/pub/readme.md -------------------------------------------------------------------------------- /lib/modules/manager/pub/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/pub/schema.ts -------------------------------------------------------------------------------- /lib/modules/manager/pub/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/pub/utils.ts -------------------------------------------------------------------------------- /lib/modules/manager/puppet/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/puppet/common.ts -------------------------------------------------------------------------------- /lib/modules/manager/puppet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/puppet/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/puppet/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/puppet/readme.md -------------------------------------------------------------------------------- /lib/modules/manager/puppet/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/puppet/types.ts -------------------------------------------------------------------------------- /lib/modules/manager/pyenv/extract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/pyenv/extract.ts -------------------------------------------------------------------------------- /lib/modules/manager/pyenv/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/pyenv/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/pyenv/readme.md: -------------------------------------------------------------------------------- 1 | Simply keeps the `.python-version` file updated. 2 | -------------------------------------------------------------------------------- /lib/modules/manager/range.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/range.spec.ts -------------------------------------------------------------------------------- /lib/modules/manager/sbt/extract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/sbt/extract.ts -------------------------------------------------------------------------------- /lib/modules/manager/sbt/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/sbt/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/sbt/readme.md: -------------------------------------------------------------------------------- 1 | Extracts Maven artifact dependencies for SBT. 2 | -------------------------------------------------------------------------------- /lib/modules/manager/sbt/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/sbt/update.ts -------------------------------------------------------------------------------- /lib/modules/manager/sbt/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/sbt/util.ts -------------------------------------------------------------------------------- /lib/modules/manager/setup-cfg/readme.md: -------------------------------------------------------------------------------- 1 | Updates dependencies for Python `setup.cfg` files. 2 | -------------------------------------------------------------------------------- /lib/modules/manager/swift/extract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/swift/extract.ts -------------------------------------------------------------------------------- /lib/modules/manager/swift/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/swift/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/swift/range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/swift/range.ts -------------------------------------------------------------------------------- /lib/modules/manager/swift/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/swift/readme.md -------------------------------------------------------------------------------- /lib/modules/manager/swift/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/swift/types.ts -------------------------------------------------------------------------------- /lib/modules/manager/tekton/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/tekton/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/tekton/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/tekton/readme.md -------------------------------------------------------------------------------- /lib/modules/manager/tekton/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/tekton/types.ts -------------------------------------------------------------------------------- /lib/modules/manager/terraform/__fixtures__/terraformBlock.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = "1.0.0" 3 | } 4 | -------------------------------------------------------------------------------- /lib/modules/manager/travis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/travis/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/travis/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/travis/readme.md -------------------------------------------------------------------------------- /lib/modules/manager/travis/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/travis/types.ts -------------------------------------------------------------------------------- /lib/modules/manager/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/types.ts -------------------------------------------------------------------------------- /lib/modules/manager/velaci/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/velaci/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/velaci/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/velaci/readme.md -------------------------------------------------------------------------------- /lib/modules/manager/velaci/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/velaci/types.ts -------------------------------------------------------------------------------- /lib/modules/manager/vendir/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/vendir/index.ts -------------------------------------------------------------------------------- /lib/modules/manager/vendir/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/vendir/readme.md -------------------------------------------------------------------------------- /lib/modules/manager/vendir/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/manager/vendir/schema.ts -------------------------------------------------------------------------------- /lib/modules/platform/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/api.ts -------------------------------------------------------------------------------- /lib/modules/platform/azure/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/azure/index.ts -------------------------------------------------------------------------------- /lib/modules/platform/azure/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/azure/readme.md -------------------------------------------------------------------------------- /lib/modules/platform/azure/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/azure/schema.ts -------------------------------------------------------------------------------- /lib/modules/platform/azure/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/azure/types.ts -------------------------------------------------------------------------------- /lib/modules/platform/azure/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/azure/util.ts -------------------------------------------------------------------------------- /lib/modules/platform/comment.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/comment.spec.ts -------------------------------------------------------------------------------- /lib/modules/platform/comment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/comment.ts -------------------------------------------------------------------------------- /lib/modules/platform/default-scm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/default-scm.ts -------------------------------------------------------------------------------- /lib/modules/platform/gerrit/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/gerrit/index.ts -------------------------------------------------------------------------------- /lib/modules/platform/gerrit/scm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/gerrit/scm.ts -------------------------------------------------------------------------------- /lib/modules/platform/gerrit/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/gerrit/types.ts -------------------------------------------------------------------------------- /lib/modules/platform/gerrit/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/gerrit/utils.ts -------------------------------------------------------------------------------- /lib/modules/platform/gitea/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/gitea/index.ts -------------------------------------------------------------------------------- /lib/modules/platform/gitea/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/gitea/readme.md -------------------------------------------------------------------------------- /lib/modules/platform/gitea/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/gitea/schema.ts -------------------------------------------------------------------------------- /lib/modules/platform/gitea/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/gitea/types.ts -------------------------------------------------------------------------------- /lib/modules/platform/gitea/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/gitea/utils.ts -------------------------------------------------------------------------------- /lib/modules/platform/github/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/github/index.ts -------------------------------------------------------------------------------- /lib/modules/platform/github/issue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/github/issue.ts -------------------------------------------------------------------------------- /lib/modules/platform/github/pr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/github/pr.ts -------------------------------------------------------------------------------- /lib/modules/platform/github/scm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/github/scm.ts -------------------------------------------------------------------------------- /lib/modules/platform/github/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/github/types.ts -------------------------------------------------------------------------------- /lib/modules/platform/github/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/github/user.ts -------------------------------------------------------------------------------- /lib/modules/platform/gitlab/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/gitlab/http.ts -------------------------------------------------------------------------------- /lib/modules/platform/gitlab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/gitlab/index.ts -------------------------------------------------------------------------------- /lib/modules/platform/gitlab/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/gitlab/types.ts -------------------------------------------------------------------------------- /lib/modules/platform/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/index.spec.ts -------------------------------------------------------------------------------- /lib/modules/platform/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/index.ts -------------------------------------------------------------------------------- /lib/modules/platform/local/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/local/index.ts -------------------------------------------------------------------------------- /lib/modules/platform/local/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/local/readme.md -------------------------------------------------------------------------------- /lib/modules/platform/local/scm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/local/scm.ts -------------------------------------------------------------------------------- /lib/modules/platform/pr-body.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/pr-body.spec.ts -------------------------------------------------------------------------------- /lib/modules/platform/pr-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/pr-body.ts -------------------------------------------------------------------------------- /lib/modules/platform/scm.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/scm.spec.ts -------------------------------------------------------------------------------- /lib/modules/platform/scm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/scm.ts -------------------------------------------------------------------------------- /lib/modules/platform/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/types.ts -------------------------------------------------------------------------------- /lib/modules/platform/util.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/util.spec.ts -------------------------------------------------------------------------------- /lib/modules/platform/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/platform/util.ts -------------------------------------------------------------------------------- /lib/modules/versioning/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/versioning/api.ts -------------------------------------------------------------------------------- /lib/modules/versioning/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/versioning/common.ts -------------------------------------------------------------------------------- /lib/modules/versioning/deb/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/versioning/deb/index.ts -------------------------------------------------------------------------------- /lib/modules/versioning/deb/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/versioning/deb/readme.md -------------------------------------------------------------------------------- /lib/modules/versioning/distro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/versioning/distro.ts -------------------------------------------------------------------------------- /lib/modules/versioning/generic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/versioning/generic.ts -------------------------------------------------------------------------------- /lib/modules/versioning/git/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/versioning/git/index.ts -------------------------------------------------------------------------------- /lib/modules/versioning/git/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/versioning/git/readme.md -------------------------------------------------------------------------------- /lib/modules/versioning/helm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/versioning/helm/index.ts -------------------------------------------------------------------------------- /lib/modules/versioning/hex/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/versioning/hex/index.ts -------------------------------------------------------------------------------- /lib/modules/versioning/hex/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/versioning/hex/readme.md -------------------------------------------------------------------------------- /lib/modules/versioning/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/versioning/index.spec.ts -------------------------------------------------------------------------------- /lib/modules/versioning/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/versioning/index.ts -------------------------------------------------------------------------------- /lib/modules/versioning/ivy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/versioning/ivy/index.ts -------------------------------------------------------------------------------- /lib/modules/versioning/ivy/parse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/versioning/ivy/parse.ts -------------------------------------------------------------------------------- /lib/modules/versioning/node/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/versioning/node/index.ts -------------------------------------------------------------------------------- /lib/modules/versioning/npm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/versioning/npm/index.ts -------------------------------------------------------------------------------- /lib/modules/versioning/npm/range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/versioning/npm/range.ts -------------------------------------------------------------------------------- /lib/modules/versioning/npm/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/versioning/npm/readme.md -------------------------------------------------------------------------------- /lib/modules/versioning/perl/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/versioning/perl/index.ts -------------------------------------------------------------------------------- /lib/modules/versioning/rez/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/versioning/rez/index.ts -------------------------------------------------------------------------------- /lib/modules/versioning/rez/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/versioning/rez/readme.md -------------------------------------------------------------------------------- /lib/modules/versioning/rpm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/versioning/rpm/index.ts -------------------------------------------------------------------------------- /lib/modules/versioning/ruby/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/versioning/ruby/index.ts -------------------------------------------------------------------------------- /lib/modules/versioning/ruby/range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/versioning/ruby/range.ts -------------------------------------------------------------------------------- /lib/modules/versioning/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/versioning/schema.ts -------------------------------------------------------------------------------- /lib/modules/versioning/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/modules/versioning/types.ts -------------------------------------------------------------------------------- /lib/proxy.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/proxy.spec.ts -------------------------------------------------------------------------------- /lib/proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/proxy.ts -------------------------------------------------------------------------------- /lib/renovate.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/renovate.spec.ts -------------------------------------------------------------------------------- /lib/renovate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/renovate.ts -------------------------------------------------------------------------------- /lib/types/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/types/base.ts -------------------------------------------------------------------------------- /lib/types/branch-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/types/branch-status.ts -------------------------------------------------------------------------------- /lib/types/commit-message-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/types/commit-message-json.ts -------------------------------------------------------------------------------- /lib/types/git.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/types/git.ts -------------------------------------------------------------------------------- /lib/types/host-rules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/types/host-rules.ts -------------------------------------------------------------------------------- /lib/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/types/index.ts -------------------------------------------------------------------------------- /lib/types/platform/github/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/types/platform/github/index.ts -------------------------------------------------------------------------------- /lib/types/platform/gitlab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/types/platform/gitlab/index.ts -------------------------------------------------------------------------------- /lib/types/pr-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/types/pr-state.ts -------------------------------------------------------------------------------- /lib/types/skip-reason.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/types/skip-reason.ts -------------------------------------------------------------------------------- /lib/types/versioning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/types/versioning.ts -------------------------------------------------------------------------------- /lib/types/vulnerability-alert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/types/vulnerability-alert.ts -------------------------------------------------------------------------------- /lib/util/array.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/array.spec.ts -------------------------------------------------------------------------------- /lib/util/array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/array.ts -------------------------------------------------------------------------------- /lib/util/assign-keys.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/assign-keys.spec.ts -------------------------------------------------------------------------------- /lib/util/assign-keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/assign-keys.ts -------------------------------------------------------------------------------- /lib/util/cache/memory/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/cache/memory/index.spec.ts -------------------------------------------------------------------------------- /lib/util/cache/memory/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/cache/memory/index.ts -------------------------------------------------------------------------------- /lib/util/cache/package/decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/cache/package/decorator.ts -------------------------------------------------------------------------------- /lib/util/cache/package/file.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/cache/package/file.spec.ts -------------------------------------------------------------------------------- /lib/util/cache/package/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/cache/package/file.ts -------------------------------------------------------------------------------- /lib/util/cache/package/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/cache/package/index.spec.ts -------------------------------------------------------------------------------- /lib/util/cache/package/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/cache/package/index.ts -------------------------------------------------------------------------------- /lib/util/cache/package/redis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/cache/package/redis.ts -------------------------------------------------------------------------------- /lib/util/cache/package/sqlite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/cache/package/sqlite.ts -------------------------------------------------------------------------------- /lib/util/cache/package/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/cache/package/types.ts -------------------------------------------------------------------------------- /lib/util/cache/repository/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/cache/repository/common.ts -------------------------------------------------------------------------------- /lib/util/cache/repository/impl/s3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/cache/repository/impl/s3.ts -------------------------------------------------------------------------------- /lib/util/cache/repository/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/cache/repository/index.ts -------------------------------------------------------------------------------- /lib/util/cache/repository/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/cache/repository/init.ts -------------------------------------------------------------------------------- /lib/util/cache/repository/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/cache/repository/schema.ts -------------------------------------------------------------------------------- /lib/util/cache/repository/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/cache/repository/types.ts -------------------------------------------------------------------------------- /lib/util/check-token.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/check-token.spec.ts -------------------------------------------------------------------------------- /lib/util/check-token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/check-token.ts -------------------------------------------------------------------------------- /lib/util/clone.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/clone.spec.ts -------------------------------------------------------------------------------- /lib/util/clone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/clone.ts -------------------------------------------------------------------------------- /lib/util/coerce.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/coerce.spec.ts -------------------------------------------------------------------------------- /lib/util/coerce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/coerce.ts -------------------------------------------------------------------------------- /lib/util/common.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/common.spec.ts -------------------------------------------------------------------------------- /lib/util/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/common.ts -------------------------------------------------------------------------------- /lib/util/compress.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/compress.spec.ts -------------------------------------------------------------------------------- /lib/util/compress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/compress.ts -------------------------------------------------------------------------------- /lib/util/date.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/date.spec.ts -------------------------------------------------------------------------------- /lib/util/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/date.ts -------------------------------------------------------------------------------- /lib/util/decorator/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/decorator/index.spec.ts -------------------------------------------------------------------------------- /lib/util/decorator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/decorator/index.ts -------------------------------------------------------------------------------- /lib/util/emoji.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/emoji.spec.ts -------------------------------------------------------------------------------- /lib/util/emoji.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/emoji.ts -------------------------------------------------------------------------------- /lib/util/exec/common.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/exec/common.spec.ts -------------------------------------------------------------------------------- /lib/util/exec/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/exec/common.ts -------------------------------------------------------------------------------- /lib/util/exec/containerbase.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/exec/containerbase.spec.ts -------------------------------------------------------------------------------- /lib/util/exec/containerbase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/exec/containerbase.ts -------------------------------------------------------------------------------- /lib/util/exec/docker/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/exec/docker/index.spec.ts -------------------------------------------------------------------------------- /lib/util/exec/docker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/exec/docker/index.ts -------------------------------------------------------------------------------- /lib/util/exec/env.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/exec/env.spec.ts -------------------------------------------------------------------------------- /lib/util/exec/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/exec/env.ts -------------------------------------------------------------------------------- /lib/util/exec/exec-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/exec/exec-error.ts -------------------------------------------------------------------------------- /lib/util/exec/hermit.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/exec/hermit.spec.ts -------------------------------------------------------------------------------- /lib/util/exec/hermit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/exec/hermit.ts -------------------------------------------------------------------------------- /lib/util/exec/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/exec/index.spec.ts -------------------------------------------------------------------------------- /lib/util/exec/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/exec/index.ts -------------------------------------------------------------------------------- /lib/util/exec/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/exec/types.ts -------------------------------------------------------------------------------- /lib/util/exec/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/exec/utils.ts -------------------------------------------------------------------------------- /lib/util/filter-map.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/filter-map.spec.ts -------------------------------------------------------------------------------- /lib/util/filter-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/filter-map.ts -------------------------------------------------------------------------------- /lib/util/fingerprint.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/fingerprint.spec.ts -------------------------------------------------------------------------------- /lib/util/fingerprint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/fingerprint.ts -------------------------------------------------------------------------------- /lib/util/fs/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/fs/index.spec.ts -------------------------------------------------------------------------------- /lib/util/fs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/fs/index.ts -------------------------------------------------------------------------------- /lib/util/fs/util.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/fs/util.spec.ts -------------------------------------------------------------------------------- /lib/util/fs/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/fs/util.ts -------------------------------------------------------------------------------- /lib/util/git/auth.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/git/auth.spec.ts -------------------------------------------------------------------------------- /lib/util/git/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/git/auth.ts -------------------------------------------------------------------------------- /lib/util/git/author.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/git/author.spec.ts -------------------------------------------------------------------------------- /lib/util/git/author.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/git/author.ts -------------------------------------------------------------------------------- /lib/util/git/config.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/git/config.spec.ts -------------------------------------------------------------------------------- /lib/util/git/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/git/config.ts -------------------------------------------------------------------------------- /lib/util/git/conflicts-cache.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/git/conflicts-cache.spec.ts -------------------------------------------------------------------------------- /lib/util/git/conflicts-cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/git/conflicts-cache.ts -------------------------------------------------------------------------------- /lib/util/git/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/git/error.ts -------------------------------------------------------------------------------- /lib/util/git/errors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/git/errors.spec.ts -------------------------------------------------------------------------------- /lib/util/git/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/git/index.spec.ts -------------------------------------------------------------------------------- /lib/util/git/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/git/index.ts -------------------------------------------------------------------------------- /lib/util/git/modified-cache.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/git/modified-cache.spec.ts -------------------------------------------------------------------------------- /lib/util/git/modified-cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/git/modified-cache.ts -------------------------------------------------------------------------------- /lib/util/git/pristine.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/git/pristine.spec.ts -------------------------------------------------------------------------------- /lib/util/git/pristine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/git/pristine.ts -------------------------------------------------------------------------------- /lib/util/git/private-key.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/git/private-key.spec.ts -------------------------------------------------------------------------------- /lib/util/git/private-key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/git/private-key.ts -------------------------------------------------------------------------------- /lib/util/git/semantic.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/git/semantic.spec.ts -------------------------------------------------------------------------------- /lib/util/git/semantic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/git/semantic.ts -------------------------------------------------------------------------------- /lib/util/git/set-branch-commit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/git/set-branch-commit.ts -------------------------------------------------------------------------------- /lib/util/git/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/git/types.ts -------------------------------------------------------------------------------- /lib/util/git/url.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/git/url.spec.ts -------------------------------------------------------------------------------- /lib/util/git/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/git/url.ts -------------------------------------------------------------------------------- /lib/util/github/graphql/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/github/graphql/index.ts -------------------------------------------------------------------------------- /lib/util/github/graphql/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/github/graphql/readme.md -------------------------------------------------------------------------------- /lib/util/github/graphql/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/github/graphql/types.ts -------------------------------------------------------------------------------- /lib/util/github/graphql/util.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/github/graphql/util.spec.ts -------------------------------------------------------------------------------- /lib/util/github/graphql/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/github/graphql/util.ts -------------------------------------------------------------------------------- /lib/util/github/tags.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/github/tags.spec.ts -------------------------------------------------------------------------------- /lib/util/github/tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/github/tags.ts -------------------------------------------------------------------------------- /lib/util/github/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/github/types.ts -------------------------------------------------------------------------------- /lib/util/github/url.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/github/url.spec.ts -------------------------------------------------------------------------------- /lib/util/github/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/github/url.ts -------------------------------------------------------------------------------- /lib/util/hash.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/hash.spec.ts -------------------------------------------------------------------------------- /lib/util/hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/hash.ts -------------------------------------------------------------------------------- /lib/util/host-rules.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/host-rules.spec.ts -------------------------------------------------------------------------------- /lib/util/host-rules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/host-rules.ts -------------------------------------------------------------------------------- /lib/util/html.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/html.spec.ts -------------------------------------------------------------------------------- /lib/util/html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/html.ts -------------------------------------------------------------------------------- /lib/util/http/auth.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/auth.spec.ts -------------------------------------------------------------------------------- /lib/util/http/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/auth.ts -------------------------------------------------------------------------------- /lib/util/http/bitbucket-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/bitbucket-server.ts -------------------------------------------------------------------------------- /lib/util/http/bitbucket.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/bitbucket.spec.ts -------------------------------------------------------------------------------- /lib/util/http/bitbucket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/bitbucket.ts -------------------------------------------------------------------------------- /lib/util/http/cache/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/cache/schema.ts -------------------------------------------------------------------------------- /lib/util/http/cache/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/cache/types.ts -------------------------------------------------------------------------------- /lib/util/http/dns.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/dns.spec.ts -------------------------------------------------------------------------------- /lib/util/http/dns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/dns.ts -------------------------------------------------------------------------------- /lib/util/http/gerrit.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/gerrit.spec.ts -------------------------------------------------------------------------------- /lib/util/http/gerrit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/gerrit.ts -------------------------------------------------------------------------------- /lib/util/http/gitea.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/gitea.spec.ts -------------------------------------------------------------------------------- /lib/util/http/gitea.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/gitea.ts -------------------------------------------------------------------------------- /lib/util/http/github.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/github.spec.ts -------------------------------------------------------------------------------- /lib/util/http/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/github.ts -------------------------------------------------------------------------------- /lib/util/http/gitlab.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/gitlab.spec.ts -------------------------------------------------------------------------------- /lib/util/http/gitlab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/gitlab.ts -------------------------------------------------------------------------------- /lib/util/http/hooks.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/hooks.spec.ts -------------------------------------------------------------------------------- /lib/util/http/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/hooks.ts -------------------------------------------------------------------------------- /lib/util/http/host-rules.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/host-rules.spec.ts -------------------------------------------------------------------------------- /lib/util/http/host-rules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/host-rules.ts -------------------------------------------------------------------------------- /lib/util/http/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/index.spec.ts -------------------------------------------------------------------------------- /lib/util/http/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/index.ts -------------------------------------------------------------------------------- /lib/util/http/jira.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/jira.spec.ts -------------------------------------------------------------------------------- /lib/util/http/jira.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/jira.ts -------------------------------------------------------------------------------- /lib/util/http/keep-alive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/keep-alive.ts -------------------------------------------------------------------------------- /lib/util/http/legacy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/legacy.ts -------------------------------------------------------------------------------- /lib/util/http/queue.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/queue.spec.ts -------------------------------------------------------------------------------- /lib/util/http/queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/queue.ts -------------------------------------------------------------------------------- /lib/util/http/retry-after.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/retry-after.spec.ts -------------------------------------------------------------------------------- /lib/util/http/retry-after.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/retry-after.ts -------------------------------------------------------------------------------- /lib/util/http/throttle.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/throttle.spec.ts -------------------------------------------------------------------------------- /lib/util/http/throttle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/throttle.ts -------------------------------------------------------------------------------- /lib/util/http/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/types.ts -------------------------------------------------------------------------------- /lib/util/http/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/http/util.ts -------------------------------------------------------------------------------- /lib/util/ignore.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/ignore.spec.ts -------------------------------------------------------------------------------- /lib/util/ignore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/ignore.ts -------------------------------------------------------------------------------- /lib/util/json-writer/code-format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/json-writer/code-format.ts -------------------------------------------------------------------------------- /lib/util/json-writer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/json-writer/index.ts -------------------------------------------------------------------------------- /lib/util/json-writer/json-writer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/json-writer/json-writer.ts -------------------------------------------------------------------------------- /lib/util/lazy.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/lazy.spec.ts -------------------------------------------------------------------------------- /lib/util/lazy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/lazy.ts -------------------------------------------------------------------------------- /lib/util/markdown.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/markdown.spec.ts -------------------------------------------------------------------------------- /lib/util/markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/markdown.ts -------------------------------------------------------------------------------- /lib/util/mask.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/mask.spec.ts -------------------------------------------------------------------------------- /lib/util/mask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/mask.ts -------------------------------------------------------------------------------- /lib/util/memoize.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/memoize.spec.ts -------------------------------------------------------------------------------- /lib/util/memoize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/memoize.ts -------------------------------------------------------------------------------- /lib/util/merge-confidence/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/merge-confidence/common.ts -------------------------------------------------------------------------------- /lib/util/merge-confidence/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/merge-confidence/index.ts -------------------------------------------------------------------------------- /lib/util/merge-confidence/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/merge-confidence/types.ts -------------------------------------------------------------------------------- /lib/util/minimatch.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/minimatch.spec.ts -------------------------------------------------------------------------------- /lib/util/minimatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/minimatch.ts -------------------------------------------------------------------------------- /lib/util/modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/modules.ts -------------------------------------------------------------------------------- /lib/util/number.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/number.spec.ts -------------------------------------------------------------------------------- /lib/util/number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/number.ts -------------------------------------------------------------------------------- /lib/util/object.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/object.spec.ts -------------------------------------------------------------------------------- /lib/util/object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/object.ts -------------------------------------------------------------------------------- /lib/util/package-rules/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/package-rules/base.ts -------------------------------------------------------------------------------- /lib/util/package-rules/categories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/package-rules/categories.ts -------------------------------------------------------------------------------- /lib/util/package-rules/dep-names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/package-rules/dep-names.ts -------------------------------------------------------------------------------- /lib/util/package-rules/dep-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/package-rules/dep-types.ts -------------------------------------------------------------------------------- /lib/util/package-rules/files.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/package-rules/files.spec.ts -------------------------------------------------------------------------------- /lib/util/package-rules/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/package-rules/files.ts -------------------------------------------------------------------------------- /lib/util/package-rules/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/package-rules/index.spec.ts -------------------------------------------------------------------------------- /lib/util/package-rules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/package-rules/index.ts -------------------------------------------------------------------------------- /lib/util/package-rules/managers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/package-rules/managers.ts -------------------------------------------------------------------------------- /lib/util/package-rules/matchers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/package-rules/matchers.ts -------------------------------------------------------------------------------- /lib/util/package-rules/new-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/package-rules/new-value.ts -------------------------------------------------------------------------------- /lib/util/package-rules/sourceurls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/package-rules/sourceurls.ts -------------------------------------------------------------------------------- /lib/util/package-rules/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/package-rules/types.ts -------------------------------------------------------------------------------- /lib/util/package-rules/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/package-rules/utils.ts -------------------------------------------------------------------------------- /lib/util/pretty-time.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/pretty-time.spec.ts -------------------------------------------------------------------------------- /lib/util/pretty-time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/pretty-time.ts -------------------------------------------------------------------------------- /lib/util/promises.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/promises.spec.ts -------------------------------------------------------------------------------- /lib/util/promises.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/promises.ts -------------------------------------------------------------------------------- /lib/util/range.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/range.spec.ts -------------------------------------------------------------------------------- /lib/util/range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/range.ts -------------------------------------------------------------------------------- /lib/util/regex.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/regex.spec.ts -------------------------------------------------------------------------------- /lib/util/regex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/regex.ts -------------------------------------------------------------------------------- /lib/util/result.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/result.spec.ts -------------------------------------------------------------------------------- /lib/util/result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/result.ts -------------------------------------------------------------------------------- /lib/util/s3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/s3.spec.ts -------------------------------------------------------------------------------- /lib/util/s3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/s3.ts -------------------------------------------------------------------------------- /lib/util/sample.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/sample.spec.ts -------------------------------------------------------------------------------- /lib/util/sample.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/sample.ts -------------------------------------------------------------------------------- /lib/util/sanitize.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/sanitize.spec.ts -------------------------------------------------------------------------------- /lib/util/sanitize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/sanitize.ts -------------------------------------------------------------------------------- /lib/util/schema-utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/schema-utils.spec.ts -------------------------------------------------------------------------------- /lib/util/schema-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/schema-utils.ts -------------------------------------------------------------------------------- /lib/util/split.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/split.spec.ts -------------------------------------------------------------------------------- /lib/util/split.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/split.ts -------------------------------------------------------------------------------- /lib/util/stats.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/stats.spec.ts -------------------------------------------------------------------------------- /lib/util/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/stats.ts -------------------------------------------------------------------------------- /lib/util/streams.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/streams.spec.ts -------------------------------------------------------------------------------- /lib/util/streams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/streams.ts -------------------------------------------------------------------------------- /lib/util/string-match.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/string-match.spec.ts -------------------------------------------------------------------------------- /lib/util/string-match.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/string-match.ts -------------------------------------------------------------------------------- /lib/util/string.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/string.spec.ts -------------------------------------------------------------------------------- /lib/util/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/string.ts -------------------------------------------------------------------------------- /lib/util/stringify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/stringify.ts -------------------------------------------------------------------------------- /lib/util/template/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/template/index.spec.ts -------------------------------------------------------------------------------- /lib/util/template/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/template/index.ts -------------------------------------------------------------------------------- /lib/util/toml.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/toml.spec.ts -------------------------------------------------------------------------------- /lib/util/toml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/toml.ts -------------------------------------------------------------------------------- /lib/util/uniq.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/uniq.spec.ts -------------------------------------------------------------------------------- /lib/util/uniq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/uniq.ts -------------------------------------------------------------------------------- /lib/util/url.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/url.spec.ts -------------------------------------------------------------------------------- /lib/util/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/url.ts -------------------------------------------------------------------------------- /lib/util/vulnerability/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/vulnerability/utils.spec.ts -------------------------------------------------------------------------------- /lib/util/vulnerability/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/vulnerability/utils.ts -------------------------------------------------------------------------------- /lib/util/yaml.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/yaml.spec.ts -------------------------------------------------------------------------------- /lib/util/yaml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/util/yaml.ts -------------------------------------------------------------------------------- /lib/workers/global/autodiscover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/workers/global/autodiscover.ts -------------------------------------------------------------------------------- /lib/workers/global/config/parse/__fixtures__/config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | token: 'abcdefg', 3 | }; 4 | -------------------------------------------------------------------------------- /lib/workers/global/config/parse/__fixtures__/config.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | # comment 3 | token: abcdefg 4 | -------------------------------------------------------------------------------- /lib/workers/global/config/parse/__fixtures__/default.js: -------------------------------------------------------------------------------- 1 | // @ts-ignore 2 | module.exports = {}; 3 | -------------------------------------------------------------------------------- /lib/workers/global/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/workers/global/index.spec.ts -------------------------------------------------------------------------------- /lib/workers/global/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/workers/global/index.ts -------------------------------------------------------------------------------- /lib/workers/global/initialize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/workers/global/initialize.ts -------------------------------------------------------------------------------- /lib/workers/global/limits.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/workers/global/limits.spec.ts -------------------------------------------------------------------------------- /lib/workers/global/limits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/workers/global/limits.ts -------------------------------------------------------------------------------- /lib/workers/repository/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/workers/repository/cache.ts -------------------------------------------------------------------------------- /lib/workers/repository/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/workers/repository/common.ts -------------------------------------------------------------------------------- /lib/workers/repository/configured.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/workers/repository/configured.ts -------------------------------------------------------------------------------- /lib/workers/repository/error.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/workers/repository/error.spec.ts -------------------------------------------------------------------------------- /lib/workers/repository/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/workers/repository/error.ts -------------------------------------------------------------------------------- /lib/workers/repository/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/workers/repository/index.spec.ts -------------------------------------------------------------------------------- /lib/workers/repository/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/workers/repository/index.ts -------------------------------------------------------------------------------- /lib/workers/repository/init/apis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/workers/repository/init/apis.ts -------------------------------------------------------------------------------- /lib/workers/repository/init/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/workers/repository/init/cache.ts -------------------------------------------------------------------------------- /lib/workers/repository/init/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/workers/repository/init/index.ts -------------------------------------------------------------------------------- /lib/workers/repository/init/merge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/workers/repository/init/merge.ts -------------------------------------------------------------------------------- /lib/workers/repository/init/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/workers/repository/init/types.ts -------------------------------------------------------------------------------- /lib/workers/repository/result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/workers/repository/result.ts -------------------------------------------------------------------------------- /lib/workers/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/lib/workers/types.ts -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | packages: [] 2 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/readme.md -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/renovate.json -------------------------------------------------------------------------------- /test/documentation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/test/documentation.spec.ts -------------------------------------------------------------------------------- /test/e2e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/test/e2e/package.json -------------------------------------------------------------------------------- /test/exec-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/test/exec-util.ts -------------------------------------------------------------------------------- /test/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/test/fixtures.ts -------------------------------------------------------------------------------- /test/graphql-snapshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/test/graphql-snapshot.ts -------------------------------------------------------------------------------- /test/http-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/test/http-mock.ts -------------------------------------------------------------------------------- /test/newline-snapshot-serializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/test/newline-snapshot-serializer.ts -------------------------------------------------------------------------------- /test/s3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/test/s3.ts -------------------------------------------------------------------------------- /test/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/test/setup.ts -------------------------------------------------------------------------------- /test/to-migrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/test/to-migrate.ts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig" 3 | } 4 | -------------------------------------------------------------------------------- /test/types/jest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/test/types/jest.d.ts -------------------------------------------------------------------------------- /test/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/test/util.ts -------------------------------------------------------------------------------- /tools/check-fenced-code.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tools/check-fenced-code.mjs -------------------------------------------------------------------------------- /tools/check-git-version.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tools/check-git-version.mjs -------------------------------------------------------------------------------- /tools/check-re2.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tools/check-re2.mjs -------------------------------------------------------------------------------- /tools/clean-cache.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tools/clean-cache.mjs -------------------------------------------------------------------------------- /tools/docker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tools/docker.ts -------------------------------------------------------------------------------- /tools/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tools/docker/Dockerfile -------------------------------------------------------------------------------- /tools/docker/bake.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tools/docker/bake.hcl -------------------------------------------------------------------------------- /tools/docker/bin/renovate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tools/docker/bin/renovate -------------------------------------------------------------------------------- /tools/docs/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tools/docs/config.ts -------------------------------------------------------------------------------- /tools/docs/datasources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tools/docs/datasources.ts -------------------------------------------------------------------------------- /tools/docs/github-query-items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tools/docs/github-query-items.ts -------------------------------------------------------------------------------- /tools/docs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tools/docs/index.ts -------------------------------------------------------------------------------- /tools/docs/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tools/docs/manager.ts -------------------------------------------------------------------------------- /tools/docs/platforms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tools/docs/platforms.ts -------------------------------------------------------------------------------- /tools/docs/presets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tools/docs/presets.ts -------------------------------------------------------------------------------- /tools/docs/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tools/docs/schema.ts -------------------------------------------------------------------------------- /tools/docs/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tools/docs/templates.ts -------------------------------------------------------------------------------- /tools/docs/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tools/docs/utils.ts -------------------------------------------------------------------------------- /tools/docs/versioning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tools/docs/versioning.ts -------------------------------------------------------------------------------- /tools/eslint/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tools/eslint/index.js -------------------------------------------------------------------------------- /tools/eslint/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tools/eslint/package.json -------------------------------------------------------------------------------- /tools/generate-docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tools/generate-docs.ts -------------------------------------------------------------------------------- /tools/generate-imports.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tools/generate-imports.mjs -------------------------------------------------------------------------------- /tools/generate-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tools/generate-schema.ts -------------------------------------------------------------------------------- /tools/jest.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tools/jest.mjs -------------------------------------------------------------------------------- /tools/prepare-release.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tools/prepare-release.ts -------------------------------------------------------------------------------- /tools/publish-release.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tools/publish-release.ts -------------------------------------------------------------------------------- /tools/static-data/utils.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tools/static-data/utils.mjs -------------------------------------------------------------------------------- /tools/utils/docker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tools/utils/docker.ts -------------------------------------------------------------------------------- /tools/utils/exec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tools/utils/exec.ts -------------------------------------------------------------------------------- /tools/utils/hash.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tools/utils/hash.mjs -------------------------------------------------------------------------------- /tools/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tools/utils/index.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.lint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tsconfig.lint.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vnukivan/study/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------