├── .eslintrc.js ├── .github ├── dependabot.yml └── workflows │ └── node.js.yml ├── .gitignore ├── .npmignore ├── .nvmrc ├── .yarn └── install-state.gz ├── .yarnrc.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── package.json ├── scripts ├── prepareTests.ps1 └── prepareTests.sh ├── src ├── index.js └── update-ts-references.js ├── test-scenarios ├── lerna │ ├── lerna.json │ ├── package.json │ ├── shared │ │ ├── workspace-c │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ └── workspace-d │ │ │ ├── package.json │ │ │ └── tsconfig.json │ ├── tsconfig.json │ ├── utils │ │ └── foos │ │ │ ├── foo-a │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ │ └── foo-b │ │ │ ├── package.json │ │ │ └── tsconfig.json │ ├── workspace-a │ │ ├── package.json │ │ └── tsconfig.json │ └── workspace-b │ │ ├── package.json │ │ └── tsconfig.json ├── pnpm │ ├── package.json │ ├── pnpm-workspace.yaml │ ├── shared │ │ ├── workspace-c │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ └── workspace-d │ │ │ ├── package.json │ │ │ └── tsconfig.json │ ├── tsconfig.json │ ├── utils │ │ └── foos │ │ │ ├── foo-a │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ │ ├── foo-b │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ │ └── tests │ │ │ └── test-a │ │ │ ├── package.json │ │ │ └── tsconfig.json │ ├── workspace-a │ │ ├── package.json │ │ └── tsconfig.json │ └── workspace-b │ │ ├── package.json │ │ └── tsconfig.json ├── ts-options-usecase-yaml │ ├── package.json │ ├── tsconfig.root.json │ ├── update-ts-references.e2e.yaml │ ├── workspace-a │ │ ├── package.json │ │ └── tsconfig.dev.json │ ├── workspace-b │ │ ├── package.json │ │ └── tsconfig.dev.json │ └── workspace-ignore │ │ ├── package.json │ │ └── tsconfig.json ├── ts-options-yaml │ ├── package.json │ ├── tsconfig.root.json │ ├── update-ts-references.yaml │ ├── workspace-a │ │ ├── package.json │ │ └── tsconfig.dev.json │ ├── workspace-b │ │ ├── package.json │ │ └── tsconfig.dev.json │ └── workspace-ignore │ │ ├── package.json │ │ └── tsconfig.json ├── ts-paths-ignore │ ├── package.json │ ├── tsconfig.json │ ├── update-ts-references.yaml │ ├── utils │ │ └── foos │ │ │ ├── foo-a │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ │ ├── foo-b │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ │ └── foo-c │ │ │ └── package.json │ ├── workspace-a │ │ ├── package.json │ │ └── tsconfig.json │ └── workspace-b │ │ ├── package.json │ │ └── tsconfig.json ├── ts-paths │ ├── package.json │ ├── tsconfig.json │ ├── utils │ │ └── foos │ │ │ ├── foo-a │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ │ ├── foo-b │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ │ ├── foo-c │ │ │ └── package.json │ │ │ └── js-only │ │ │ ├── jsconfig.json │ │ │ └── package.json │ ├── workspace-a │ │ ├── package.json │ │ └── tsconfig.json │ └── workspace-b │ │ ├── package.json │ │ └── tsconfig.json ├── ts-ref-noroot-yaml │ ├── package.json │ ├── shared │ │ ├── workspace-c │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ └── workspace-d │ │ │ ├── package.json │ │ │ └── tsconfig.json │ ├── tsconfig.json │ ├── update-ts-references.yaml │ ├── utils │ │ └── foos │ │ │ ├── foo-a │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ │ ├── foo-b │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ │ └── tests │ │ │ └── test-a │ │ │ ├── package.json │ │ │ └── tsconfig.json │ ├── workspace-a │ │ ├── package.json │ │ └── tsconfig.json │ ├── workspace-b │ │ ├── package.json │ │ └── tsconfig.json │ └── workspace-ignore │ │ ├── package.json │ │ └── tsconfig.json ├── ts-ref-noroot │ ├── package.json │ ├── shared │ │ ├── workspace-c │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ └── workspace-d │ │ │ ├── package.json │ │ │ └── tsconfig.json │ ├── tsconfig.json │ ├── update-ts-references.yaml │ ├── utils │ │ └── foos │ │ │ ├── foo-a │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ │ ├── foo-b │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ │ └── tests │ │ │ └── test-a │ │ │ ├── package.json │ │ │ └── tsconfig.json │ ├── workspace-a │ │ ├── package.json │ │ └── tsconfig.json │ ├── workspace-b │ │ ├── package.json │ │ └── tsconfig.json │ └── workspace-ignore │ │ ├── package.json │ │ └── tsconfig.json ├── ts-ref-yaml │ ├── package.json │ ├── shared │ │ ├── workspace-c │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ └── workspace-d │ │ │ ├── package.json │ │ │ └── tsconfig.json │ ├── tsconfig.json │ ├── update-ts-references.yaml │ ├── utils │ │ └── foos │ │ │ ├── foo-a │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ │ ├── foo-b │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ │ └── tests │ │ │ └── test-a │ │ │ ├── package.json │ │ │ └── tsconfig.json │ ├── workspace-a │ │ ├── package.json │ │ └── tsconfig.json │ ├── workspace-b │ │ ├── package.json │ │ └── tsconfig.json │ └── workspace-ignore │ │ ├── package.json │ │ └── tsconfig.json ├── yarn-ws-check-no-changes │ ├── package.json │ ├── shared │ │ ├── workspace-c │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ └── workspace-d │ │ │ ├── package.json │ │ │ └── tsconfig.json │ ├── tsconfig.json │ ├── utils │ │ └── foos │ │ │ ├── foo-a │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ │ └── foo-b │ │ │ ├── package.json │ │ │ └── tsconfig.json │ ├── workspace-a │ │ ├── package.json │ │ └── tsconfig.json │ ├── workspace-b │ │ ├── package.json │ │ └── tsconfig.json │ └── yarn.lock ├── yarn-ws-check-paths-no-changes │ ├── package.json │ ├── tsconfig.json │ ├── utils │ │ └── foos │ │ │ ├── foo-a │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ │ └── foo-b │ │ │ └── package.json │ ├── workspace-a │ │ ├── package.json │ │ └── tsconfig.json │ ├── workspace-b │ │ ├── package.json │ │ └── tsconfig.json │ └── yarn.lock ├── yarn-ws-check-paths │ ├── package.json │ ├── tsconfig.json │ ├── utils │ │ └── foos │ │ │ ├── foo-a │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ │ ├── foo-b │ │ │ └── package.json │ │ │ └── js-only │ │ │ ├── jsconfig.json │ │ │ └── package.json │ ├── workspace-a │ │ ├── package.json │ │ └── tsconfig.json │ ├── workspace-b │ │ ├── package.json │ │ └── tsconfig.json │ ├── workspace-c │ │ ├── package.json │ │ └── tsconfig.json │ └── yarn.lock ├── yarn-ws-check-strict │ ├── package.json │ ├── shared │ │ ├── workspace-c │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ └── workspace-d │ │ │ ├── package.json │ │ │ └── tsconfig.json │ ├── utils │ │ └── foos │ │ │ ├── foo-a │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ │ └── foo-b │ │ │ ├── package.json │ │ │ └── tsconfig.json │ ├── workspace-a │ │ ├── package.json │ │ └── tsconfig.json │ ├── workspace-b │ │ ├── package.json │ │ └── tsconfig.json │ └── yarn.lock ├── yarn-ws-check │ ├── package.json │ ├── shared │ │ ├── workspace-c │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ └── workspace-d │ │ │ ├── package.json │ │ │ └── tsconfig.json │ ├── tsconfig.json │ ├── utils │ │ └── foos │ │ │ ├── foo-a │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ │ └── foo-b │ │ │ ├── package.json │ │ │ └── tsconfig.json │ ├── workspace-a │ │ ├── package.json │ │ └── tsconfig.json │ └── workspace-b │ │ ├── package.json │ │ └── tsconfig.json ├── yarn-ws-create │ ├── package.json │ ├── tsconfig.base.json │ ├── tsconfig.json │ ├── workspace-a │ │ ├── package.json │ │ └── src │ │ │ └── index.ts │ ├── workspace-b │ │ ├── package.json │ │ └── tsconfig.json │ └── workspace-c │ │ └── package.json ├── yarn-ws-custom-tsconfig-names │ ├── package.json │ ├── shared │ │ ├── workspace-c │ │ │ ├── package.json │ │ │ └── tsconfig.dev.json │ │ └── workspace-d │ │ │ ├── package.json │ │ │ └── tsconfig.dev.json │ ├── tsconfig.ref.json │ ├── utils │ │ └── foos │ │ │ ├── foo-a │ │ │ ├── package.json │ │ │ └── tsconfig.dev.json │ │ │ ├── foo-b │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ │ ├── js-only │ │ │ ├── jsconfig.dev.json │ │ │ └── package.json │ │ │ └── js-only2 │ │ │ ├── jsconfig.json │ │ │ └── package.json │ ├── workspace-a │ │ ├── package.json │ │ └── tsconfig.dev.json │ └── workspace-b │ │ ├── package.json │ │ └── tsconfig.dev.json ├── yarn-ws-empty-compilerOptions │ ├── package.json │ ├── tsconfig.base.json │ ├── tsconfig.json │ ├── workspace-a │ │ ├── package.json │ │ └── tsconfig.json │ └── workspace-b │ │ ├── package.json │ │ ├── tsconfig.base.json │ │ └── tsconfig.json ├── yarn-ws-nohoist │ ├── package.json │ ├── shared │ │ ├── workspace-c │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ └── workspace-d │ │ │ ├── package.json │ │ │ └── tsconfig.json │ ├── tsconfig.json │ ├── utils │ │ └── foos │ │ │ ├── foo-a │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ │ └── foo-b │ │ │ ├── package.json │ │ │ └── tsconfig.json │ ├── workspace-a │ │ ├── package.json │ │ └── tsconfig.json │ └── workspace-b │ │ ├── package.json │ │ └── tsconfig.json └── yarn-ws │ ├── package.json │ ├── shared │ ├── workspace-c │ │ ├── package.json │ │ └── tsconfig.json │ └── workspace-d │ │ ├── package.json │ │ └── tsconfig.json │ ├── tsconfig.json │ ├── utils │ └── foos │ │ ├── foo-a │ │ ├── package.json │ │ └── tsconfig.json │ │ └── foo-b │ │ ├── package.json │ │ └── tsconfig.json │ ├── workspace-a │ ├── package.json │ └── tsconfig.json │ └── workspace-b │ ├── package.json │ └── tsconfig.json ├── tests ├── setup.js ├── update-ts-references.check.test.js ├── update-ts-references.test.js └── update-ts-references.yaml.test.js └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/hydrogen -------------------------------------------------------------------------------- /.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/.yarn/install-state.gz -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/package.json -------------------------------------------------------------------------------- /scripts/prepareTests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/scripts/prepareTests.ps1 -------------------------------------------------------------------------------- /scripts/prepareTests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/scripts/prepareTests.sh -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/src/index.js -------------------------------------------------------------------------------- /src/update-ts-references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/src/update-ts-references.js -------------------------------------------------------------------------------- /test-scenarios/lerna/lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/lerna/lerna.json -------------------------------------------------------------------------------- /test-scenarios/lerna/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/lerna/package.json -------------------------------------------------------------------------------- /test-scenarios/lerna/shared/workspace-c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/lerna/shared/workspace-c/package.json -------------------------------------------------------------------------------- /test-scenarios/lerna/shared/workspace-c/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/lerna/shared/workspace-c/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/lerna/shared/workspace-d/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/lerna/shared/workspace-d/package.json -------------------------------------------------------------------------------- /test-scenarios/lerna/shared/workspace-d/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/lerna/shared/workspace-d/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/lerna/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/lerna/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/lerna/utils/foos/foo-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/lerna/utils/foos/foo-a/package.json -------------------------------------------------------------------------------- /test-scenarios/lerna/utils/foos/foo-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/lerna/utils/foos/foo-a/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/lerna/utils/foos/foo-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/lerna/utils/foos/foo-b/package.json -------------------------------------------------------------------------------- /test-scenarios/lerna/utils/foos/foo-b/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/lerna/utils/foos/foo-b/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/lerna/workspace-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/lerna/workspace-a/package.json -------------------------------------------------------------------------------- /test-scenarios/lerna/workspace-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/lerna/workspace-a/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/lerna/workspace-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/lerna/workspace-b/package.json -------------------------------------------------------------------------------- /test-scenarios/lerna/workspace-b/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/lerna/workspace-b/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/pnpm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/pnpm/package.json -------------------------------------------------------------------------------- /test-scenarios/pnpm/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/pnpm/pnpm-workspace.yaml -------------------------------------------------------------------------------- /test-scenarios/pnpm/shared/workspace-c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/pnpm/shared/workspace-c/package.json -------------------------------------------------------------------------------- /test-scenarios/pnpm/shared/workspace-c/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/pnpm/shared/workspace-c/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/pnpm/shared/workspace-d/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/pnpm/shared/workspace-d/package.json -------------------------------------------------------------------------------- /test-scenarios/pnpm/shared/workspace-d/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/pnpm/shared/workspace-d/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/pnpm/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/pnpm/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/pnpm/utils/foos/foo-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/pnpm/utils/foos/foo-a/package.json -------------------------------------------------------------------------------- /test-scenarios/pnpm/utils/foos/foo-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/pnpm/utils/foos/foo-a/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/pnpm/utils/foos/foo-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/pnpm/utils/foos/foo-b/package.json -------------------------------------------------------------------------------- /test-scenarios/pnpm/utils/foos/foo-b/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/pnpm/utils/foos/foo-b/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/pnpm/utils/foos/tests/test-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/pnpm/utils/foos/tests/test-a/package.json -------------------------------------------------------------------------------- /test-scenarios/pnpm/utils/foos/tests/test-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/pnpm/utils/foos/tests/test-a/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/pnpm/workspace-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/pnpm/workspace-a/package.json -------------------------------------------------------------------------------- /test-scenarios/pnpm/workspace-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/pnpm/workspace-a/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/pnpm/workspace-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/pnpm/workspace-b/package.json -------------------------------------------------------------------------------- /test-scenarios/pnpm/workspace-b/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/pnpm/workspace-b/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-options-usecase-yaml/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-options-usecase-yaml/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-options-usecase-yaml/tsconfig.root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-options-usecase-yaml/tsconfig.root.json -------------------------------------------------------------------------------- /test-scenarios/ts-options-usecase-yaml/update-ts-references.e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-options-usecase-yaml/update-ts-references.e2e.yaml -------------------------------------------------------------------------------- /test-scenarios/ts-options-usecase-yaml/workspace-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-options-usecase-yaml/workspace-a/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-options-usecase-yaml/workspace-a/tsconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-options-usecase-yaml/workspace-a/tsconfig.dev.json -------------------------------------------------------------------------------- /test-scenarios/ts-options-usecase-yaml/workspace-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-options-usecase-yaml/workspace-b/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-options-usecase-yaml/workspace-b/tsconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-options-usecase-yaml/workspace-b/tsconfig.dev.json -------------------------------------------------------------------------------- /test-scenarios/ts-options-usecase-yaml/workspace-ignore/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-options-usecase-yaml/workspace-ignore/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-options-usecase-yaml/workspace-ignore/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-options-usecase-yaml/workspace-ignore/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-options-yaml/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-options-yaml/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-options-yaml/tsconfig.root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-options-yaml/tsconfig.root.json -------------------------------------------------------------------------------- /test-scenarios/ts-options-yaml/update-ts-references.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-options-yaml/update-ts-references.yaml -------------------------------------------------------------------------------- /test-scenarios/ts-options-yaml/workspace-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-options-yaml/workspace-a/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-options-yaml/workspace-a/tsconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-options-yaml/workspace-a/tsconfig.dev.json -------------------------------------------------------------------------------- /test-scenarios/ts-options-yaml/workspace-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-options-yaml/workspace-b/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-options-yaml/workspace-b/tsconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-options-yaml/workspace-b/tsconfig.dev.json -------------------------------------------------------------------------------- /test-scenarios/ts-options-yaml/workspace-ignore/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-options-yaml/workspace-ignore/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-options-yaml/workspace-ignore/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-options-yaml/workspace-ignore/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-paths-ignore/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-paths-ignore/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-paths-ignore/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-paths-ignore/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-paths-ignore/update-ts-references.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-paths-ignore/update-ts-references.yaml -------------------------------------------------------------------------------- /test-scenarios/ts-paths-ignore/utils/foos/foo-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-paths-ignore/utils/foos/foo-a/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-paths-ignore/utils/foos/foo-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-paths-ignore/utils/foos/foo-a/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-paths-ignore/utils/foos/foo-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-paths-ignore/utils/foos/foo-b/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-paths-ignore/utils/foos/foo-b/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-paths-ignore/utils/foos/foo-b/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-paths-ignore/utils/foos/foo-c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-paths-ignore/utils/foos/foo-c/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-paths-ignore/workspace-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-paths-ignore/workspace-a/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-paths-ignore/workspace-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-paths-ignore/workspace-a/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-paths-ignore/workspace-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-paths-ignore/workspace-b/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-paths-ignore/workspace-b/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-paths-ignore/workspace-b/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-paths/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-paths/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-paths/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-paths/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-paths/utils/foos/foo-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-paths/utils/foos/foo-a/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-paths/utils/foos/foo-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-paths/utils/foos/foo-a/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-paths/utils/foos/foo-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-paths/utils/foos/foo-b/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-paths/utils/foos/foo-b/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-paths/utils/foos/foo-b/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-paths/utils/foos/foo-c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-paths/utils/foos/foo-c/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-paths/utils/foos/js-only/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-paths/utils/foos/js-only/jsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-paths/utils/foos/js-only/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-paths/utils/foos/js-only/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-paths/workspace-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-paths/workspace-a/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-paths/workspace-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-paths/workspace-a/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-paths/workspace-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-paths/workspace-b/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-paths/workspace-b/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-paths/workspace-b/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot-yaml/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot-yaml/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot-yaml/shared/workspace-c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot-yaml/shared/workspace-c/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot-yaml/shared/workspace-c/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot-yaml/shared/workspace-c/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot-yaml/shared/workspace-d/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot-yaml/shared/workspace-d/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot-yaml/shared/workspace-d/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot-yaml/shared/workspace-d/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot-yaml/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot-yaml/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot-yaml/update-ts-references.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot-yaml/update-ts-references.yaml -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot-yaml/utils/foos/foo-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot-yaml/utils/foos/foo-a/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot-yaml/utils/foos/foo-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot-yaml/utils/foos/foo-a/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot-yaml/utils/foos/foo-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot-yaml/utils/foos/foo-b/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot-yaml/utils/foos/foo-b/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot-yaml/utils/foos/foo-b/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot-yaml/utils/foos/tests/test-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot-yaml/utils/foos/tests/test-a/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot-yaml/utils/foos/tests/test-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot-yaml/utils/foos/tests/test-a/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot-yaml/workspace-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot-yaml/workspace-a/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot-yaml/workspace-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot-yaml/workspace-a/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot-yaml/workspace-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot-yaml/workspace-b/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot-yaml/workspace-b/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot-yaml/workspace-b/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot-yaml/workspace-ignore/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot-yaml/workspace-ignore/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot-yaml/workspace-ignore/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot-yaml/workspace-ignore/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot/shared/workspace-c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot/shared/workspace-c/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot/shared/workspace-c/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot/shared/workspace-c/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot/shared/workspace-d/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot/shared/workspace-d/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot/shared/workspace-d/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot/shared/workspace-d/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot/update-ts-references.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot/update-ts-references.yaml -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot/utils/foos/foo-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot/utils/foos/foo-a/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot/utils/foos/foo-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot/utils/foos/foo-a/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot/utils/foos/foo-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot/utils/foos/foo-b/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot/utils/foos/foo-b/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot/utils/foos/foo-b/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot/utils/foos/tests/test-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot/utils/foos/tests/test-a/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot/utils/foos/tests/test-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot/utils/foos/tests/test-a/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot/workspace-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot/workspace-a/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot/workspace-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot/workspace-a/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot/workspace-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot/workspace-b/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot/workspace-b/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot/workspace-b/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot/workspace-ignore/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot/workspace-ignore/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-noroot/workspace-ignore/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-noroot/workspace-ignore/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-yaml/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-yaml/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-yaml/shared/workspace-c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-yaml/shared/workspace-c/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-yaml/shared/workspace-c/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-yaml/shared/workspace-c/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-yaml/shared/workspace-d/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-yaml/shared/workspace-d/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-yaml/shared/workspace-d/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-yaml/shared/workspace-d/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-yaml/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-yaml/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-yaml/update-ts-references.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-yaml/update-ts-references.yaml -------------------------------------------------------------------------------- /test-scenarios/ts-ref-yaml/utils/foos/foo-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-yaml/utils/foos/foo-a/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-yaml/utils/foos/foo-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-yaml/utils/foos/foo-a/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-yaml/utils/foos/foo-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-yaml/utils/foos/foo-b/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-yaml/utils/foos/foo-b/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-yaml/utils/foos/foo-b/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-yaml/utils/foos/tests/test-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-yaml/utils/foos/tests/test-a/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-yaml/utils/foos/tests/test-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-yaml/utils/foos/tests/test-a/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-yaml/workspace-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-yaml/workspace-a/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-yaml/workspace-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-yaml/workspace-a/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-yaml/workspace-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-yaml/workspace-b/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-yaml/workspace-b/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-yaml/workspace-b/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-yaml/workspace-ignore/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-yaml/workspace-ignore/package.json -------------------------------------------------------------------------------- /test-scenarios/ts-ref-yaml/workspace-ignore/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/ts-ref-yaml/workspace-ignore/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-no-changes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-no-changes/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-no-changes/shared/workspace-c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-no-changes/shared/workspace-c/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-no-changes/shared/workspace-c/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-no-changes/shared/workspace-c/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-no-changes/shared/workspace-d/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-no-changes/shared/workspace-d/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-no-changes/shared/workspace-d/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-no-changes/shared/workspace-d/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-no-changes/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-no-changes/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-no-changes/utils/foos/foo-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-no-changes/utils/foos/foo-a/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-no-changes/utils/foos/foo-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-no-changes/utils/foos/foo-a/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-no-changes/utils/foos/foo-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-no-changes/utils/foos/foo-b/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-no-changes/utils/foos/foo-b/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-no-changes/utils/foos/foo-b/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-no-changes/workspace-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-no-changes/workspace-a/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-no-changes/workspace-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-no-changes/workspace-a/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-no-changes/workspace-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-no-changes/workspace-b/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-no-changes/workspace-b/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-no-changes/workspace-b/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-no-changes/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-no-changes/yarn.lock -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-paths-no-changes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-paths-no-changes/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-paths-no-changes/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-paths-no-changes/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-paths-no-changes/utils/foos/foo-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-paths-no-changes/utils/foos/foo-a/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-paths-no-changes/utils/foos/foo-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-paths-no-changes/utils/foos/foo-a/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-paths-no-changes/utils/foos/foo-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-paths-no-changes/utils/foos/foo-b/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-paths-no-changes/workspace-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-paths-no-changes/workspace-a/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-paths-no-changes/workspace-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-paths-no-changes/workspace-a/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-paths-no-changes/workspace-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-paths-no-changes/workspace-b/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-paths-no-changes/workspace-b/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-paths-no-changes/workspace-b/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-paths-no-changes/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-paths-no-changes/yarn.lock -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-paths/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-paths/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-paths/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-paths/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-paths/utils/foos/foo-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-paths/utils/foos/foo-a/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-paths/utils/foos/foo-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-paths/utils/foos/foo-a/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-paths/utils/foos/foo-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-paths/utils/foos/foo-b/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-paths/utils/foos/js-only/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-paths/utils/foos/js-only/jsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-paths/utils/foos/js-only/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-paths/utils/foos/js-only/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-paths/workspace-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-paths/workspace-a/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-paths/workspace-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-paths/workspace-a/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-paths/workspace-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-paths/workspace-b/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-paths/workspace-b/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-paths/workspace-b/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-paths/workspace-c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-paths/workspace-c/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-paths/workspace-c/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-paths/workspace-c/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-paths/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-paths/yarn.lock -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-strict/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-strict/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-strict/shared/workspace-c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-strict/shared/workspace-c/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-strict/shared/workspace-c/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-strict/shared/workspace-c/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-strict/shared/workspace-d/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-strict/shared/workspace-d/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-strict/shared/workspace-d/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-strict/shared/workspace-d/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-strict/utils/foos/foo-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-strict/utils/foos/foo-a/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-strict/utils/foos/foo-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-strict/utils/foos/foo-a/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-strict/utils/foos/foo-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-strict/utils/foos/foo-b/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-strict/utils/foos/foo-b/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-strict/utils/foos/foo-b/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-strict/workspace-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-strict/workspace-a/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-strict/workspace-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-strict/workspace-a/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-strict/workspace-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-strict/workspace-b/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-strict/workspace-b/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-strict/workspace-b/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check-strict/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check-strict/yarn.lock -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check/shared/workspace-c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check/shared/workspace-c/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check/shared/workspace-c/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check/shared/workspace-c/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check/shared/workspace-d/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check/shared/workspace-d/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check/shared/workspace-d/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check/shared/workspace-d/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check/utils/foos/foo-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check/utils/foos/foo-a/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check/utils/foos/foo-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check/utils/foos/foo-a/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check/utils/foos/foo-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check/utils/foos/foo-b/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check/utils/foos/foo-b/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check/utils/foos/foo-b/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check/workspace-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check/workspace-a/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check/workspace-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check/workspace-a/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check/workspace-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check/workspace-b/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-check/workspace-b/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-check/workspace-b/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-create/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-create/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-create/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-create/tsconfig.base.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-create/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-create/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-create/workspace-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-create/workspace-a/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-create/workspace-a/src/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-create/workspace-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-create/workspace-b/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-create/workspace-b/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-create/workspace-b/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-create/workspace-c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-create/workspace-c/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-custom-tsconfig-names/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-custom-tsconfig-names/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-custom-tsconfig-names/shared/workspace-c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-custom-tsconfig-names/shared/workspace-c/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-custom-tsconfig-names/shared/workspace-c/tsconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-custom-tsconfig-names/shared/workspace-c/tsconfig.dev.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-custom-tsconfig-names/shared/workspace-d/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-custom-tsconfig-names/shared/workspace-d/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-custom-tsconfig-names/shared/workspace-d/tsconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-custom-tsconfig-names/shared/workspace-d/tsconfig.dev.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-custom-tsconfig-names/tsconfig.ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-custom-tsconfig-names/tsconfig.ref.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-custom-tsconfig-names/utils/foos/foo-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-custom-tsconfig-names/utils/foos/foo-a/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-custom-tsconfig-names/utils/foos/foo-a/tsconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-custom-tsconfig-names/utils/foos/foo-a/tsconfig.dev.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-custom-tsconfig-names/utils/foos/foo-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-custom-tsconfig-names/utils/foos/foo-b/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-custom-tsconfig-names/utils/foos/foo-b/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-custom-tsconfig-names/utils/foos/foo-b/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-custom-tsconfig-names/utils/foos/js-only/jsconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-custom-tsconfig-names/utils/foos/js-only/jsconfig.dev.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-custom-tsconfig-names/utils/foos/js-only/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-custom-tsconfig-names/utils/foos/js-only/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-custom-tsconfig-names/utils/foos/js-only2/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-custom-tsconfig-names/utils/foos/js-only2/jsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-custom-tsconfig-names/utils/foos/js-only2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-custom-tsconfig-names/utils/foos/js-only2/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-custom-tsconfig-names/workspace-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-custom-tsconfig-names/workspace-a/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-custom-tsconfig-names/workspace-a/tsconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-custom-tsconfig-names/workspace-a/tsconfig.dev.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-custom-tsconfig-names/workspace-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-custom-tsconfig-names/workspace-b/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-custom-tsconfig-names/workspace-b/tsconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-custom-tsconfig-names/workspace-b/tsconfig.dev.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-empty-compilerOptions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-empty-compilerOptions/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-empty-compilerOptions/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-empty-compilerOptions/tsconfig.base.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-empty-compilerOptions/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.base.json" 3 | } 4 | -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-empty-compilerOptions/workspace-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-empty-compilerOptions/workspace-a/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-empty-compilerOptions/workspace-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-empty-compilerOptions/workspace-a/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-empty-compilerOptions/workspace-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-empty-compilerOptions/workspace-b/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-empty-compilerOptions/workspace-b/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-empty-compilerOptions/workspace-b/tsconfig.base.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-empty-compilerOptions/workspace-b/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.base.json" 3 | } 4 | -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-nohoist/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-nohoist/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-nohoist/shared/workspace-c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-nohoist/shared/workspace-c/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-nohoist/shared/workspace-c/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-nohoist/shared/workspace-c/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-nohoist/shared/workspace-d/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-nohoist/shared/workspace-d/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-nohoist/shared/workspace-d/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-nohoist/shared/workspace-d/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-nohoist/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-nohoist/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-nohoist/utils/foos/foo-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-nohoist/utils/foos/foo-a/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-nohoist/utils/foos/foo-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-nohoist/utils/foos/foo-a/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-nohoist/utils/foos/foo-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-nohoist/utils/foos/foo-b/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-nohoist/utils/foos/foo-b/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-nohoist/utils/foos/foo-b/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-nohoist/workspace-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-nohoist/workspace-a/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-nohoist/workspace-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-nohoist/workspace-a/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-nohoist/workspace-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-nohoist/workspace-b/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws-nohoist/workspace-b/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws-nohoist/workspace-b/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws/shared/workspace-c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws/shared/workspace-c/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws/shared/workspace-c/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws/shared/workspace-c/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws/shared/workspace-d/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws/shared/workspace-d/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws/shared/workspace-d/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws/shared/workspace-d/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws/utils/foos/foo-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws/utils/foos/foo-a/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws/utils/foos/foo-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws/utils/foos/foo-a/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws/utils/foos/foo-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws/utils/foos/foo-b/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws/utils/foos/foo-b/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws/utils/foos/foo-b/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws/workspace-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws/workspace-a/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws/workspace-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws/workspace-a/tsconfig.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws/workspace-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws/workspace-b/package.json -------------------------------------------------------------------------------- /test-scenarios/yarn-ws/workspace-b/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/test-scenarios/yarn-ws/workspace-b/tsconfig.json -------------------------------------------------------------------------------- /tests/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/tests/setup.js -------------------------------------------------------------------------------- /tests/update-ts-references.check.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/tests/update-ts-references.check.test.js -------------------------------------------------------------------------------- /tests/update-ts-references.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/tests/update-ts-references.test.js -------------------------------------------------------------------------------- /tests/update-ts-references.yaml.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/tests/update-ts-references.yaml.test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBayClassifiedsGroup/update-ts-references/HEAD/yarn.lock --------------------------------------------------------------------------------