├── .gitattributes ├── .github └── workflows │ ├── pr.yml │ └── release.yml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc.json5 ├── .vscode ├── launch.json └── settings.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── beachball.config.js ├── lage.config.js ├── package.json ├── packages ├── grapher │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── README.md │ ├── bin │ │ └── grapher.js │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── commands │ │ │ └── depsCommand.ts │ │ └── index.ts │ └── tsconfig.json └── workspace-tools │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── README.md │ ├── etc │ └── workspace-tools.api.md │ ├── jest.config.js │ ├── package.json │ ├── src │ ├── __tests__ │ │ ├── dependencies │ │ │ └── dependencies.test.ts │ │ ├── getScopedPackages.test.ts │ │ ├── git │ │ │ ├── config.test.ts │ │ │ ├── fetchRemote.test.ts │ │ │ ├── getBranchChanges.test.ts │ │ │ ├── getChangesBetweenRefs.test.ts │ │ │ ├── getDefaultRemote.test.ts │ │ │ ├── getFileAddedHash.test.ts │ │ │ ├── getRecentCommitMessages.test.ts │ │ │ ├── getRepositoryName.test.ts │ │ │ ├── getStagedChanges.test.ts │ │ │ ├── getUnstagedChanges.test.ts │ │ │ ├── getUntrackedChanges.test.ts │ │ │ ├── listAllTrackedFiles.test.ts │ │ │ ├── parseRemoteBranch.test.ts │ │ │ ├── refs.test.ts │ │ │ ├── revertLocalChanges.test.ts │ │ │ └── stageAndCommit.test.ts │ │ ├── graph │ │ │ └── graph.test.ts │ │ ├── lockfile │ │ │ ├── lockfile.test.ts │ │ │ └── queryLockFile.test.ts │ │ └── workspaces │ │ │ ├── catalogs.test.ts │ │ │ ├── getChangedPackages.test.ts │ │ │ ├── getPackagesByFiles.test.ts │ │ │ ├── getWorkspaceRoot.test.ts │ │ │ └── getWorkspaces.test.ts │ ├── dependencies │ │ ├── index.ts │ │ └── transitiveDeps.ts │ ├── getPackageInfo.ts │ ├── getPackageInfos.ts │ ├── getPackagePaths.ts │ ├── git │ │ ├── config.ts │ │ ├── getDefaultRemote.ts │ │ ├── getDefaultRemoteBranch.ts │ │ ├── getRepositoryName.ts │ │ ├── git.ts │ │ ├── gitUtilities.ts │ │ ├── index.ts │ │ └── types.ts │ ├── graph │ │ ├── createDependencyMap.ts │ │ ├── createPackageGraph.ts │ │ ├── getPackageDependencies.ts │ │ └── index.ts │ ├── index.ts │ ├── infoFromPackageJson.ts │ ├── isCachingEnabled.ts │ ├── lockfile │ │ ├── index.ts │ │ ├── nameAtVersion.ts │ │ ├── parseBerryLock.ts │ │ ├── parseNpmLock.ts │ │ ├── parsePnpmLock.ts │ │ ├── queryLockFile.ts │ │ ├── readYaml.ts │ │ └── types.ts │ ├── logging.ts │ ├── paths.ts │ ├── scope.ts │ ├── types │ │ ├── Catalogs.ts │ │ ├── PackageGraph.ts │ │ ├── PackageInfo.ts │ │ └── WorkspaceInfo.ts │ └── workspaces │ │ ├── WorkspaceManager.ts │ │ ├── catalogs.ts │ │ ├── findWorkspacePath.ts │ │ ├── getAllPackageJsonFiles.ts │ │ ├── getChangedPackages.ts │ │ ├── getPackagesByFiles.ts │ │ ├── getWorkspacePackageInfo.ts │ │ ├── getWorkspacePackagePaths.ts │ │ ├── getWorkspaceRoot.ts │ │ ├── getWorkspaces.ts │ │ ├── implementations │ │ ├── getWorkspaceManagerAndRoot.ts │ │ ├── getWorkspaceUtilities.ts │ │ ├── index.ts │ │ ├── lerna.ts │ │ ├── npm.ts │ │ ├── packageJsonWorkspaces.ts │ │ ├── pnpm.ts │ │ ├── rush.ts │ │ └── yarn.ts │ │ └── listOfWorkspacePackageNames.ts │ └── tsconfig.json ├── renovate.json5 ├── scripts ├── api-extractor │ ├── api-extractor.base.json │ └── index.js ├── bin │ └── ws-tools-scripts.js ├── jest │ ├── __fixtures__ │ │ ├── basic-pnpm │ │ │ ├── .npmrc │ │ │ ├── package.json │ │ │ └── pnpm-lock.yaml │ │ ├── basic-without-lock-file │ │ │ └── package.json │ │ ├── basic-yarn-1 │ │ │ ├── package.json │ │ │ └── yarn.lock │ │ ├── basic-yarn-berry │ │ │ ├── .yarnrc.yml │ │ │ ├── package.json │ │ │ └── yarn.lock │ │ ├── lage-yarn-1 │ │ │ ├── package.json │ │ │ └── yarn.lock │ │ ├── lage-yarn-berry │ │ │ ├── .yarnrc.yml │ │ │ ├── package.json │ │ │ └── yarn.lock │ │ ├── monorepo-lerna-npm │ │ │ ├── individual │ │ │ │ └── package.json │ │ │ ├── lerna.json │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ └── packages │ │ │ │ ├── package-a │ │ │ │ └── package.json │ │ │ │ └── package-b │ │ │ │ └── package.json │ │ ├── monorepo-nested │ │ │ └── monorepo │ │ │ │ ├── package.json │ │ │ │ ├── packages │ │ │ │ ├── package-a │ │ │ │ │ └── package.json │ │ │ │ └── package-b │ │ │ │ │ └── package.json │ │ │ │ └── yarn.lock │ │ ├── monorepo-npm-unsupported │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ └── packages │ │ │ │ ├── package-a │ │ │ │ └── package.json │ │ │ │ └── package-b │ │ │ │ └── package.json │ │ ├── monorepo-npm │ │ │ ├── individual │ │ │ │ └── package.json │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ └── packages │ │ │ │ ├── package-a │ │ │ │ └── package.json │ │ │ │ └── package-b │ │ │ │ └── package.json │ │ ├── monorepo-pnpm │ │ │ ├── .npmrc │ │ │ ├── individual │ │ │ │ └── package.json │ │ │ ├── package.json │ │ │ ├── packages │ │ │ │ ├── package-a │ │ │ │ │ └── package.json │ │ │ │ └── package-b │ │ │ │ │ └── package.json │ │ │ ├── pnpm-lock.yaml │ │ │ └── pnpm-workspace.yaml │ │ ├── monorepo-rush-pnpm │ │ │ ├── common │ │ │ │ └── config │ │ │ │ │ └── rush │ │ │ │ │ └── pnpm-lock.yaml │ │ │ ├── individual │ │ │ │ └── package.json │ │ │ ├── packages │ │ │ │ ├── package-a │ │ │ │ │ └── package.json │ │ │ │ └── package-b │ │ │ │ │ └── package.json │ │ │ └── rush.json │ │ ├── monorepo-rush-yarn │ │ │ ├── common │ │ │ │ └── config │ │ │ │ │ └── rush │ │ │ │ │ └── yarn.lock │ │ │ ├── individual │ │ │ │ └── package.json │ │ │ ├── packages │ │ │ │ ├── package-a │ │ │ │ │ └── package.json │ │ │ │ └── package-b │ │ │ │ │ └── package.json │ │ │ ├── rush.json │ │ │ └── yarn.lock │ │ ├── monorepo-yarn-berry │ │ │ ├── .yarnrc.yml │ │ │ ├── individual │ │ │ │ └── package.json │ │ │ ├── package.json │ │ │ ├── packages │ │ │ │ ├── package-a │ │ │ │ │ └── package.json │ │ │ │ └── package-b │ │ │ │ │ └── package.json │ │ │ └── yarn.lock │ │ └── monorepo │ │ │ ├── individual │ │ │ └── package.json │ │ │ ├── package.json │ │ │ ├── packages │ │ │ ├── package-a │ │ │ │ └── package.json │ │ │ └── package-b │ │ │ │ └── package.json │ │ │ └── yarn.lock │ ├── debugTests.js │ ├── jest.config.js │ ├── setupFixture.ts │ └── setupTests.ts ├── package.json ├── tsconfig.base.json └── tsconfig.json ├── typedoc.json └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- 1 | *.json linguist-language=JSON-with-Comments -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 16 -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/.prettierrc.json5 -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/SECURITY.md -------------------------------------------------------------------------------- /beachball.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/beachball.config.js -------------------------------------------------------------------------------- /lage.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/lage.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/package.json -------------------------------------------------------------------------------- /packages/grapher/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/grapher/CHANGELOG.json -------------------------------------------------------------------------------- /packages/grapher/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/grapher/CHANGELOG.md -------------------------------------------------------------------------------- /packages/grapher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/grapher/README.md -------------------------------------------------------------------------------- /packages/grapher/bin/grapher.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require("../lib/index"); 3 | -------------------------------------------------------------------------------- /packages/grapher/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/grapher/jest.config.js -------------------------------------------------------------------------------- /packages/grapher/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/grapher/package.json -------------------------------------------------------------------------------- /packages/grapher/src/commands/depsCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/grapher/src/commands/depsCommand.ts -------------------------------------------------------------------------------- /packages/grapher/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/grapher/src/index.ts -------------------------------------------------------------------------------- /packages/grapher/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/grapher/tsconfig.json -------------------------------------------------------------------------------- /packages/workspace-tools/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/CHANGELOG.json -------------------------------------------------------------------------------- /packages/workspace-tools/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/CHANGELOG.md -------------------------------------------------------------------------------- /packages/workspace-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/README.md -------------------------------------------------------------------------------- /packages/workspace-tools/etc/workspace-tools.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/etc/workspace-tools.api.md -------------------------------------------------------------------------------- /packages/workspace-tools/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/jest.config.js -------------------------------------------------------------------------------- /packages/workspace-tools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/package.json -------------------------------------------------------------------------------- /packages/workspace-tools/src/__tests__/dependencies/dependencies.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/__tests__/dependencies/dependencies.test.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/__tests__/getScopedPackages.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/__tests__/getScopedPackages.test.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/__tests__/git/config.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/__tests__/git/config.test.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/__tests__/git/fetchRemote.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/__tests__/git/fetchRemote.test.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/__tests__/git/getBranchChanges.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/__tests__/git/getBranchChanges.test.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/__tests__/git/getChangesBetweenRefs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/__tests__/git/getChangesBetweenRefs.test.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/__tests__/git/getDefaultRemote.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/__tests__/git/getDefaultRemote.test.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/__tests__/git/getFileAddedHash.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/__tests__/git/getFileAddedHash.test.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/__tests__/git/getRecentCommitMessages.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/__tests__/git/getRecentCommitMessages.test.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/__tests__/git/getRepositoryName.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/__tests__/git/getRepositoryName.test.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/__tests__/git/getStagedChanges.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/__tests__/git/getStagedChanges.test.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/__tests__/git/getUnstagedChanges.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/__tests__/git/getUnstagedChanges.test.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/__tests__/git/getUntrackedChanges.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/__tests__/git/getUntrackedChanges.test.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/__tests__/git/listAllTrackedFiles.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/__tests__/git/listAllTrackedFiles.test.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/__tests__/git/parseRemoteBranch.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/__tests__/git/parseRemoteBranch.test.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/__tests__/git/refs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/__tests__/git/refs.test.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/__tests__/git/revertLocalChanges.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/__tests__/git/revertLocalChanges.test.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/__tests__/git/stageAndCommit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/__tests__/git/stageAndCommit.test.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/__tests__/graph/graph.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/__tests__/graph/graph.test.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/__tests__/lockfile/lockfile.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/__tests__/lockfile/lockfile.test.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/__tests__/lockfile/queryLockFile.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/__tests__/lockfile/queryLockFile.test.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/__tests__/workspaces/catalogs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/__tests__/workspaces/catalogs.test.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/__tests__/workspaces/getChangedPackages.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/__tests__/workspaces/getChangedPackages.test.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/__tests__/workspaces/getPackagesByFiles.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/__tests__/workspaces/getPackagesByFiles.test.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/__tests__/workspaces/getWorkspaceRoot.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/__tests__/workspaces/getWorkspaceRoot.test.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/__tests__/workspaces/getWorkspaces.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/__tests__/workspaces/getWorkspaces.test.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/dependencies/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/dependencies/index.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/dependencies/transitiveDeps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/dependencies/transitiveDeps.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/getPackageInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/getPackageInfo.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/getPackageInfos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/getPackageInfos.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/getPackagePaths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/getPackagePaths.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/git/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/git/config.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/git/getDefaultRemote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/git/getDefaultRemote.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/git/getDefaultRemoteBranch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/git/getDefaultRemoteBranch.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/git/getRepositoryName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/git/getRepositoryName.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/git/git.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/git/git.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/git/gitUtilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/git/gitUtilities.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/git/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/git/index.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/git/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/git/types.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/graph/createDependencyMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/graph/createDependencyMap.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/graph/createPackageGraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/graph/createPackageGraph.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/graph/getPackageDependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/graph/getPackageDependencies.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/graph/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/graph/index.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/index.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/infoFromPackageJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/infoFromPackageJson.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/isCachingEnabled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/isCachingEnabled.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/lockfile/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/lockfile/index.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/lockfile/nameAtVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/lockfile/nameAtVersion.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/lockfile/parseBerryLock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/lockfile/parseBerryLock.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/lockfile/parseNpmLock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/lockfile/parseNpmLock.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/lockfile/parsePnpmLock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/lockfile/parsePnpmLock.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/lockfile/queryLockFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/lockfile/queryLockFile.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/lockfile/readYaml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/lockfile/readYaml.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/lockfile/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/lockfile/types.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/logging.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/paths.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/scope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/scope.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/types/Catalogs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/types/Catalogs.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/types/PackageGraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/types/PackageGraph.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/types/PackageInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/types/PackageInfo.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/types/WorkspaceInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/types/WorkspaceInfo.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/workspaces/WorkspaceManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/workspaces/WorkspaceManager.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/workspaces/catalogs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/workspaces/catalogs.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/workspaces/findWorkspacePath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/workspaces/findWorkspacePath.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/workspaces/getAllPackageJsonFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/workspaces/getAllPackageJsonFiles.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/workspaces/getChangedPackages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/workspaces/getChangedPackages.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/workspaces/getPackagesByFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/workspaces/getPackagesByFiles.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/workspaces/getWorkspacePackageInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/workspaces/getWorkspacePackageInfo.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/workspaces/getWorkspacePackagePaths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/workspaces/getWorkspacePackagePaths.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/workspaces/getWorkspaceRoot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/workspaces/getWorkspaceRoot.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/workspaces/getWorkspaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/workspaces/getWorkspaces.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/workspaces/implementations/getWorkspaceManagerAndRoot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/workspaces/implementations/getWorkspaceManagerAndRoot.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/workspaces/implementations/getWorkspaceUtilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/workspaces/implementations/getWorkspaceUtilities.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/workspaces/implementations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/workspaces/implementations/index.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/workspaces/implementations/lerna.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/workspaces/implementations/lerna.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/workspaces/implementations/npm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/workspaces/implementations/npm.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/workspaces/implementations/packageJsonWorkspaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/workspaces/implementations/packageJsonWorkspaces.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/workspaces/implementations/pnpm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/workspaces/implementations/pnpm.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/workspaces/implementations/rush.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/workspaces/implementations/rush.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/workspaces/implementations/yarn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/workspaces/implementations/yarn.ts -------------------------------------------------------------------------------- /packages/workspace-tools/src/workspaces/listOfWorkspacePackageNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/src/workspaces/listOfWorkspacePackageNames.ts -------------------------------------------------------------------------------- /packages/workspace-tools/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/packages/workspace-tools/tsconfig.json -------------------------------------------------------------------------------- /renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/renovate.json5 -------------------------------------------------------------------------------- /scripts/api-extractor/api-extractor.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/api-extractor/api-extractor.base.json -------------------------------------------------------------------------------- /scripts/api-extractor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/api-extractor/index.js -------------------------------------------------------------------------------- /scripts/bin/ws-tools-scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/bin/ws-tools-scripts.js -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/basic-pnpm/.npmrc: -------------------------------------------------------------------------------- 1 | strict-peer-dependencies=false 2 | -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/basic-pnpm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/basic-pnpm/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/basic-pnpm/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/basic-pnpm/pnpm-lock.yaml -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/basic-without-lock-file/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/basic-without-lock-file/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/basic-yarn-1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/basic-yarn-1/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/basic-yarn-1/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/basic-yarn-1/yarn.lock -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/basic-yarn-berry/.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/basic-yarn-berry/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/basic-yarn-berry/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/basic-yarn-berry/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/basic-yarn-berry/yarn.lock -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/lage-yarn-1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/lage-yarn-1/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/lage-yarn-1/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/lage-yarn-1/yarn.lock -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/lage-yarn-berry/.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/lage-yarn-berry/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/lage-yarn-berry/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/lage-yarn-berry/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/lage-yarn-berry/yarn.lock -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-lerna-npm/individual/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-lerna-npm/individual/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-lerna-npm/lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-lerna-npm/lerna.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-lerna-npm/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-lerna-npm/package-lock.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-lerna-npm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-lerna-npm/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-lerna-npm/packages/package-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-lerna-npm/packages/package-a/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-lerna-npm/packages/package-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-lerna-npm/packages/package-b/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-nested/monorepo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-nested/monorepo/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-nested/monorepo/packages/package-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-nested/monorepo/packages/package-a/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-nested/monorepo/packages/package-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-nested/monorepo/packages/package-b/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-nested/monorepo/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-nested/monorepo/yarn.lock -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-npm-unsupported/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-npm-unsupported/package-lock.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-npm-unsupported/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-npm-unsupported/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-npm-unsupported/packages/package-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-npm-unsupported/packages/package-a/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-npm-unsupported/packages/package-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-npm-unsupported/packages/package-b/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-npm/individual/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-npm/individual/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-npm/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-npm/package-lock.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-npm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-npm/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-npm/packages/package-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-npm/packages/package-a/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-npm/packages/package-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-npm/packages/package-b/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-pnpm/.npmrc: -------------------------------------------------------------------------------- 1 | strict-peer-dependencies=false 2 | -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-pnpm/individual/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-pnpm/individual/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-pnpm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-pnpm/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-pnpm/packages/package-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-pnpm/packages/package-a/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-pnpm/packages/package-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-pnpm/packages/package-b/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-pnpm/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-pnpm/pnpm-lock.yaml -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-pnpm/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-pnpm/pnpm-workspace.yaml -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-rush-pnpm/common/config/rush/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-rush-pnpm/common/config/rush/pnpm-lock.yaml -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-rush-pnpm/individual/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-rush-pnpm/individual/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-rush-pnpm/packages/package-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-rush-pnpm/packages/package-a/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-rush-pnpm/packages/package-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-rush-pnpm/packages/package-b/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-rush-pnpm/rush.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-rush-pnpm/rush.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-rush-yarn/common/config/rush/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-rush-yarn/common/config/rush/yarn.lock -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-rush-yarn/individual/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-rush-yarn/individual/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-rush-yarn/packages/package-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-rush-yarn/packages/package-a/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-rush-yarn/packages/package-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-rush-yarn/packages/package-b/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-rush-yarn/rush.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-rush-yarn/rush.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-rush-yarn/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-rush-yarn/yarn.lock -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-yarn-berry/.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-yarn-berry/individual/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-yarn-berry/individual/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-yarn-berry/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-yarn-berry/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-yarn-berry/packages/package-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-yarn-berry/packages/package-a/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-yarn-berry/packages/package-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-yarn-berry/packages/package-b/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo-yarn-berry/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo-yarn-berry/yarn.lock -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo/individual/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo/individual/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo/packages/package-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo/packages/package-a/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo/packages/package-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo/packages/package-b/package.json -------------------------------------------------------------------------------- /scripts/jest/__fixtures__/monorepo/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/__fixtures__/monorepo/yarn.lock -------------------------------------------------------------------------------- /scripts/jest/debugTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/debugTests.js -------------------------------------------------------------------------------- /scripts/jest/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/jest.config.js -------------------------------------------------------------------------------- /scripts/jest/setupFixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/setupFixture.ts -------------------------------------------------------------------------------- /scripts/jest/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/jest/setupTests.ts -------------------------------------------------------------------------------- /scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/package.json -------------------------------------------------------------------------------- /scripts/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/tsconfig.base.json -------------------------------------------------------------------------------- /scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/scripts/tsconfig.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/typedoc.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/workspace-tools/HEAD/yarn.lock --------------------------------------------------------------------------------