├── .cursor └── rules │ └── rush.mdc ├── .devcontainer ├── devcontainer.json └── setup.sh ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── api-documenter.md │ ├── api-extractor.md │ ├── config.yml │ ├── eslint-config.md │ ├── eslint-plugin-packlets.md │ ├── heft.md │ ├── lockfile-explorer.md │ ├── rush.md │ └── z-other-project.md ├── PULL_REQUEST_TEMPLATE.md ├── copilot-instructions.md └── workflows │ ├── ci.yml │ └── file-doc-tickets.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.js ├── .trae └── project_rules.md ├── .vscode ├── debug-certificate-manager.json ├── launch.json ├── redis-cobuild.code-workspace └── settings.json ├── LICENSE ├── README.md ├── SECURITY.md ├── apps ├── api-documenter │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── ad.cmd │ ├── bin │ │ └── api-documenter │ ├── config │ │ ├── api-extractor.json │ │ ├── heft.json │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── run.cmd │ ├── src │ │ ├── cli │ │ │ ├── ApiDocumenterCommandLine.ts │ │ │ ├── BaseAction.ts │ │ │ ├── GenerateAction.ts │ │ │ ├── MarkdownAction.ts │ │ │ └── YamlAction.ts │ │ ├── documenters │ │ │ ├── DocumenterConfig.ts │ │ │ ├── ExperimentalYamlDocumenter.ts │ │ │ ├── IConfigFile.ts │ │ │ ├── MarkdownDocumenter.ts │ │ │ ├── OfficeYamlDocumenter.ts │ │ │ └── YamlDocumenter.ts │ │ ├── index.ts │ │ ├── markdown │ │ │ ├── CustomMarkdownEmitter.ts │ │ │ ├── MarkdownEmitter.ts │ │ │ └── test │ │ │ │ ├── CustomMarkdownEmitter.test.ts │ │ │ │ └── __snapshots__ │ │ │ │ └── CustomMarkdownEmitter.test.ts.snap │ │ ├── nodes │ │ │ ├── CustomDocNodeKind.ts │ │ │ ├── DocEmphasisSpan.ts │ │ │ ├── DocHeading.ts │ │ │ ├── DocNoteBox.ts │ │ │ ├── DocTable.ts │ │ │ ├── DocTableCell.ts │ │ │ └── DocTableRow.ts │ │ ├── plugin │ │ │ ├── IApiDocumenterPluginManifest.ts │ │ │ ├── MarkdownDocumenterAccessor.ts │ │ │ ├── MarkdownDocumenterFeature.ts │ │ │ ├── PluginFeature.ts │ │ │ └── PluginLoader.ts │ │ ├── schemas │ │ │ ├── api-documenter-template.json │ │ │ └── api-documenter.schema.json │ │ ├── start.ts │ │ ├── utils │ │ │ ├── IndentedWriter.ts │ │ │ ├── ToSdpConvertHelper.ts │ │ │ ├── Utilities.ts │ │ │ └── test │ │ │ │ ├── IndentedWriter.test.ts │ │ │ │ └── __snapshots__ │ │ │ │ └── IndentedWriter.test.ts.snap │ │ └── yaml │ │ │ ├── ISDPYamlFile.ts │ │ │ ├── IYamlApiFile.ts │ │ │ ├── IYamlTocFile.ts │ │ │ └── typescript.schema.json │ └── tsconfig.json ├── api-extractor │ ├── .npmignore │ ├── .vscode │ │ └── launch.json │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── ae.cmd │ ├── bin │ │ └── api-extractor │ ├── build-tests.cmd │ ├── config │ │ ├── api-extractor.json │ │ ├── heft.json │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── extends │ │ └── tsdoc-base.json │ ├── package.json │ ├── src │ │ ├── aedoc │ │ │ └── PackageDocComment.ts │ │ ├── analyzer │ │ │ ├── AstDeclaration.ts │ │ │ ├── AstEntity.ts │ │ │ ├── AstImport.ts │ │ │ ├── AstModule.ts │ │ │ ├── AstNamespaceExport.ts │ │ │ ├── AstNamespaceImport.ts │ │ │ ├── AstReferenceResolver.ts │ │ │ ├── AstSymbol.ts │ │ │ ├── AstSymbolTable.ts │ │ │ ├── ExportAnalyzer.ts │ │ │ ├── PackageMetadataManager.ts │ │ │ ├── SourceFileLocationFormatter.ts │ │ │ ├── Span.ts │ │ │ ├── SyntaxHelpers.ts │ │ │ ├── TypeScriptHelpers.ts │ │ │ ├── TypeScriptInternals.ts │ │ │ └── test │ │ │ │ ├── PackageMetadataManager.test.ts │ │ │ │ └── SyntaxHelpers.test.ts │ │ ├── api │ │ │ ├── CompilerState.ts │ │ │ ├── ConsoleMessageId.ts │ │ │ ├── Extractor.ts │ │ │ ├── ExtractorConfig.ts │ │ │ ├── ExtractorLogLevel.ts │ │ │ ├── ExtractorMessage.ts │ │ │ ├── ExtractorMessageId.ts │ │ │ ├── IConfigFile.ts │ │ │ └── test │ │ │ │ ├── Extractor-custom-tags.test.ts │ │ │ │ ├── ExtractorConfig-lookup.test.ts │ │ │ │ ├── ExtractorConfig-merge.test.ts │ │ │ │ ├── ExtractorConfig-tagsToReport.test.ts │ │ │ │ └── test-data │ │ │ │ ├── config-lookup1 │ │ │ │ ├── api-extractor.json │ │ │ │ ├── index.d.ts │ │ │ │ ├── package.json │ │ │ │ └── tsconfig.json │ │ │ │ ├── config-lookup2 │ │ │ │ ├── config │ │ │ │ │ └── api-extractor.json │ │ │ │ ├── index.d.ts │ │ │ │ ├── package.json │ │ │ │ └── tsconfig.json │ │ │ │ ├── config-lookup3 │ │ │ │ ├── config │ │ │ │ │ └── api-extractor.json │ │ │ │ ├── index.d.ts │ │ │ │ ├── package.json │ │ │ │ ├── src │ │ │ │ │ └── test │ │ │ │ │ │ ├── config │ │ │ │ │ │ └── api-extractor.json │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ └── tsconfig.json │ │ │ │ └── tsconfig.json │ │ │ │ ├── custom-tsdoc-tags │ │ │ │ ├── api-extractor.json │ │ │ │ ├── index.d.ts │ │ │ │ ├── package.json │ │ │ │ ├── tsconfig.json │ │ │ │ └── tsdoc.json │ │ │ │ ├── invalid-tags-to-report │ │ │ │ ├── README.md │ │ │ │ ├── api-extractor.json │ │ │ │ ├── index.d.ts │ │ │ │ └── package.json │ │ │ │ ├── override-array-properties │ │ │ │ ├── README.md │ │ │ │ ├── api-extractor-base.json │ │ │ │ ├── api-extractor.json │ │ │ │ ├── index.d.ts │ │ │ │ └── package.json │ │ │ │ └── tags-to-report │ │ │ │ ├── README.md │ │ │ │ ├── api-extractor-base.json │ │ │ │ ├── api-extractor.json │ │ │ │ ├── index.d.ts │ │ │ │ └── package.json │ │ ├── cli │ │ │ ├── ApiExtractorCommandLine.ts │ │ │ ├── InitAction.ts │ │ │ └── RunAction.ts │ │ ├── collector │ │ │ ├── ApiItemMetadata.ts │ │ │ ├── Collector.ts │ │ │ ├── CollectorEntity.ts │ │ │ ├── DeclarationMetadata.ts │ │ │ ├── MessageRouter.ts │ │ │ ├── SourceMapper.ts │ │ │ ├── SymbolMetadata.ts │ │ │ ├── VisitorState.ts │ │ │ └── WorkingPackage.ts │ │ ├── enhancers │ │ │ ├── DocCommentEnhancer.ts │ │ │ └── ValidationEnhancer.ts │ │ ├── generators │ │ │ ├── ApiModelGenerator.ts │ │ │ ├── ApiReportGenerator.ts │ │ │ ├── DeclarationReferenceGenerator.ts │ │ │ ├── DtsEmitHelpers.ts │ │ │ ├── DtsRollupGenerator.ts │ │ │ ├── ExcerptBuilder.ts │ │ │ ├── IndentedWriter.ts │ │ │ └── test │ │ │ │ ├── IndentedWriter.test.ts │ │ │ │ └── __snapshots__ │ │ │ │ └── IndentedWriter.test.ts.snap │ │ ├── index.ts │ │ ├── schemas │ │ │ ├── api-extractor-defaults.json │ │ │ ├── api-extractor-template.json │ │ │ └── api-extractor.schema.json │ │ └── start.ts │ └── tsconfig.json ├── cpu-profile-summarizer │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── bin │ │ └── cpu-profile-aggregator │ ├── config │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── protocol.ts │ │ ├── start.ts │ │ ├── types.ts │ │ └── worker.ts │ └── tsconfig.json ├── heft │ ├── .npmignore │ ├── .vscode │ │ └── launch.json │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── UPGRADING.md │ ├── bin │ │ └── heft │ ├── config │ │ ├── api-extractor.json │ │ ├── heft.json │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── heft-plugin.json │ ├── package.json │ ├── src │ │ ├── cli │ │ │ ├── HeftActionRunner.ts │ │ │ ├── HeftCommandLineParser.ts │ │ │ └── actions │ │ │ │ ├── AliasAction.ts │ │ │ │ ├── CleanAction.ts │ │ │ │ ├── IHeftAction.ts │ │ │ │ ├── PhaseAction.ts │ │ │ │ └── RunAction.ts │ │ ├── configuration │ │ │ ├── HeftConfiguration.ts │ │ │ ├── HeftPluginConfiguration.ts │ │ │ ├── HeftPluginDefinition.ts │ │ │ ├── RigPackageResolver.ts │ │ │ └── types.ts │ │ ├── index.ts │ │ ├── metrics │ │ │ └── MetricsCollector.ts │ │ ├── operations │ │ │ └── runners │ │ │ │ ├── PhaseOperationRunner.ts │ │ │ │ └── TaskOperationRunner.ts │ │ ├── pluginFramework │ │ │ ├── HeftLifecycle.ts │ │ │ ├── HeftLifecycleSession.ts │ │ │ ├── HeftParameterManager.ts │ │ │ ├── HeftPhase.ts │ │ │ ├── HeftPhaseSession.ts │ │ │ ├── HeftPluginHost.ts │ │ │ ├── HeftTask.ts │ │ │ ├── HeftTaskSession.ts │ │ │ ├── IHeftPlugin.ts │ │ │ ├── IncrementalBuildInfo.ts │ │ │ ├── InternalHeftSession.ts │ │ │ ├── StaticFileSystemAdapter.ts │ │ │ ├── logging │ │ │ │ ├── LoggingManager.ts │ │ │ │ ├── MockScopedLogger.ts │ │ │ │ └── ScopedLogger.ts │ │ │ └── tests │ │ │ │ ├── IncrementalBuildInfo.test.ts │ │ │ │ └── __snapshots__ │ │ │ │ └── IncrementalBuildInfo.test.ts.snap │ │ ├── plugins │ │ │ ├── CopyFilesPlugin.ts │ │ │ ├── DeleteFilesPlugin.ts │ │ │ ├── FileGlobSpecifier.ts │ │ │ ├── NodeServicePlugin.ts │ │ │ ├── RunScriptPlugin.ts │ │ │ └── SetEnvironmentVariablesPlugin.ts │ │ ├── schemas │ │ │ ├── README-ModifyingSchemas.md │ │ │ ├── anything.schema.json │ │ │ ├── copy-files-options.schema.json │ │ │ ├── delete-files-options.schema.json │ │ │ ├── heft-legacy.schema.json │ │ │ ├── heft-plugin.schema.json │ │ │ ├── heft.schema.json │ │ │ ├── node-service.schema.json │ │ │ ├── run-script-options.schema.json │ │ │ ├── set-environment-variables-plugin.schema.json │ │ │ └── templates │ │ │ │ └── heft.json │ │ ├── start.ts │ │ ├── startWithVersionSelector.ts │ │ └── utilities │ │ │ ├── CliUtilities.ts │ │ │ ├── Constants.ts │ │ │ ├── CoreConfigFiles.ts │ │ │ ├── GitUtilities.ts │ │ │ ├── Selection.ts │ │ │ ├── WatchFileSystemAdapter.ts │ │ │ └── test │ │ │ ├── GitUtilities.test.ts │ │ │ └── checkIgnoreTests │ │ │ ├── allIgnored │ │ │ └── .gitignore │ │ │ ├── negateIgnore │ │ │ ├── .gitignore │ │ │ └── a │ │ │ │ └── .gitignore │ │ │ └── someIgnored │ │ │ └── .gitignore │ └── tsconfig.json ├── lockfile-explorer-web │ ├── LICENSE │ ├── README.md │ ├── assets │ │ └── index.html │ ├── config │ │ ├── heft.json │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── App.scss │ │ ├── App.tsx │ │ ├── components │ │ │ └── ConnectionModal │ │ │ │ ├── index.tsx │ │ │ │ └── styles.scss │ │ ├── containers │ │ │ ├── BookmarksSidebar │ │ │ │ ├── index.tsx │ │ │ │ └── styles.scss │ │ │ ├── LockfileEntryDetailsView │ │ │ │ ├── index.tsx │ │ │ │ └── styles.scss │ │ │ ├── LockfileViewer │ │ │ │ ├── index.tsx │ │ │ │ └── styles.scss │ │ │ ├── LogoPanel │ │ │ │ ├── index.tsx │ │ │ │ ├── lockfile-explorer-icon.svg │ │ │ │ ├── lockfile-explorer-title-1.svg │ │ │ │ ├── lockfile-explorer-title-2.svg │ │ │ │ └── styles.scss │ │ │ ├── PackageJsonViewer │ │ │ │ ├── CodeBox.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── styles.scss │ │ │ └── SelectedEntryPreview │ │ │ │ ├── index.tsx │ │ │ │ └── styles.scss │ │ ├── helpers │ │ │ ├── displaySpecChanges.ts │ │ │ ├── isEntryModified.ts │ │ │ ├── lfxApiClient.ts │ │ │ ├── localStorage.ts │ │ │ └── logDiagnosticInfo.ts │ │ ├── packlets │ │ │ └── lfx-shared │ │ │ │ ├── IAppContext.ts │ │ │ │ ├── IJsonLfxGraph.ts │ │ │ │ ├── IJsonLfxWorkspace.ts │ │ │ │ ├── LfxGraph.ts │ │ │ │ ├── index.ts │ │ │ │ └── lfxGraphSerializer.ts │ │ ├── parsing │ │ │ ├── compareSpec.ts │ │ │ ├── readLockfile.ts │ │ │ └── test │ │ │ │ └── compareSpec.test.ts │ │ ├── start.css │ │ ├── start.tsx │ │ ├── store │ │ │ ├── hooks.ts │ │ │ ├── index.ts │ │ │ └── slices │ │ │ │ ├── entrySlice.ts │ │ │ │ └── workspaceSlice.ts │ │ ├── stub │ │ │ └── initappcontext.ts │ │ ├── styles │ │ │ └── _base.scss │ │ └── types │ │ │ ├── AppContext.ts │ │ │ ├── IPackageJson.ts │ │ │ └── ReactNull.ts │ ├── tsconfig.json │ └── webpack.config.js ├── lockfile-explorer │ ├── .npmignore │ ├── .vscode │ │ └── launch.json │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── assets │ │ └── favicon.ico │ ├── bin │ │ ├── lockfile-explorer │ │ └── lockfile-lint │ ├── config │ │ ├── heft.json │ │ ├── jest.config.json │ │ ├── node-service.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── assets │ │ │ └── lint-init │ │ │ │ └── lockfile-lint-template.json │ │ ├── cli │ │ │ ├── explorer │ │ │ │ └── ExplorerCommandLineParser.ts │ │ │ └── lint │ │ │ │ ├── LintCommandLineParser.ts │ │ │ │ └── actions │ │ │ │ ├── CheckAction.ts │ │ │ │ └── InitAction.ts │ │ ├── constants │ │ │ └── common.ts │ │ ├── graph │ │ │ ├── IPnpmfileModule.ts │ │ │ ├── PnpmfileRunner.ts │ │ │ ├── lfxGraphLoader.ts │ │ │ ├── lockfilePath.ts │ │ │ ├── pnpmfileRunnerWorkerThread.ts │ │ │ └── test │ │ │ │ ├── PnpmfileRunner.test.ts │ │ │ │ ├── __snapshots__ │ │ │ │ ├── lfxGraph-edge-cases-v5.4.test.ts.snap │ │ │ │ ├── lfxGraph-edge-cases-v6.0.test.ts.snap │ │ │ │ ├── lfxGraph-edge-cases-v9.0.test.ts.snap │ │ │ │ ├── lfxGraph-website-sample-1-v5.4.test.ts.snap │ │ │ │ ├── lfxGraph-website-sample-1-v6.0.test.ts.snap │ │ │ │ └── lfxGraph-website-sample-1-v9.0.test.ts.snap │ │ │ │ ├── fixtures │ │ │ │ ├── PnpmfileRunner │ │ │ │ │ └── .pnpmfile.cjs │ │ │ │ ├── edge-cases │ │ │ │ │ ├── edge-cases.md │ │ │ │ │ ├── pnpm-lock-v5.4.yaml │ │ │ │ │ ├── pnpm-lock-v6.0.yaml │ │ │ │ │ └── pnpm-lock-v9.0.yaml │ │ │ │ └── website-sample-1 │ │ │ │ │ ├── pnpm-lock-v5.4-rush.yaml │ │ │ │ │ ├── pnpm-lock-v6.0-rush.yaml │ │ │ │ │ ├── pnpm-lock-v9.0-rush.yaml │ │ │ │ │ └── website-sample-1.md │ │ │ │ ├── graphTestHelpers.ts │ │ │ │ ├── lfxGraph-edge-cases-v5.4.test.ts │ │ │ │ ├── lfxGraph-edge-cases-v6.0.test.ts │ │ │ │ ├── lfxGraph-edge-cases-v9.0.test.ts │ │ │ │ ├── lfxGraph-website-sample-1-v5.4.test.ts │ │ │ │ ├── lfxGraph-website-sample-1-v6.0.test.ts │ │ │ │ ├── lfxGraph-website-sample-1-v9.0.test.ts │ │ │ │ ├── lockfile.test.ts │ │ │ │ ├── lockfilePath.test.ts │ │ │ │ ├── serializeToJson.test.ts │ │ │ │ └── testLockfile.ts │ │ ├── schemas │ │ │ └── lockfile-lint.schema.json │ │ ├── start-explorer.ts │ │ ├── start-lint.ts │ │ ├── state │ │ │ └── index.ts │ │ ├── test │ │ │ ├── __snapshots__ │ │ │ │ └── help.test.ts.snap │ │ │ └── help.test.ts │ │ ├── typings.d.ts │ │ └── utils │ │ │ ├── init.ts │ │ │ └── shrinkwrap.ts │ └── tsconfig.json ├── rundown │ ├── .npmignore │ ├── .vscode │ │ └── launch.json │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── bin │ │ └── rundown │ ├── config │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── LauncherTypes.ts │ │ ├── Rundown.ts │ │ ├── cli │ │ │ ├── BaseReportAction.ts │ │ │ ├── InspectAction.ts │ │ │ ├── RundownCommandLine.ts │ │ │ └── SnapshotAction.ts │ │ ├── launcher.ts │ │ └── start.ts │ └── tsconfig.json ├── rush-mcp-server │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── bin │ │ └── mcp-server │ ├── config │ │ ├── api-extractor.json │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── pluginFramework │ │ │ ├── IRushMcpPlugin.ts │ │ │ ├── IRushMcpTool.ts │ │ │ ├── RushMcpPluginLoader.ts │ │ │ ├── RushMcpPluginSession.ts │ │ │ └── zodTypes.ts │ │ ├── schemas │ │ │ ├── rush-mcp-plugin.schema.json │ │ │ └── rush-mcp.schema.json │ │ ├── server.ts │ │ ├── start.ts │ │ ├── tools │ │ │ ├── base.tool.ts │ │ │ ├── conflict-resolver.tool.ts │ │ │ ├── index.ts │ │ │ ├── migrate-project.tool.ts │ │ │ ├── project-details.tool.ts │ │ │ ├── rush-command-validator.tool.ts │ │ │ └── workspace-details.ts │ │ └── utilities │ │ │ ├── command-runner.ts │ │ │ ├── common.ts │ │ │ └── log.ts │ └── tsconfig.json ├── rush │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── UPGRADING.md │ ├── bin │ │ ├── rush │ │ ├── rush-pnpm │ │ └── rushx │ ├── config │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── rush-debug.cmd │ ├── rush.cmd │ ├── src │ │ ├── MinimalRushConfiguration.ts │ │ ├── RushCommandSelector.ts │ │ ├── RushVersionSelector.ts │ │ ├── start-dev-docs.ts │ │ ├── start-dev.ts │ │ ├── start.ts │ │ └── test │ │ │ ├── MinimalRushConfiguration.test.ts │ │ │ └── sandbox │ │ │ ├── legacy-repo │ │ │ ├── project │ │ │ │ └── package.json │ │ │ └── rush.json │ │ │ └── repo │ │ │ ├── project │ │ │ └── package.json │ │ │ └── rush.json │ └── tsconfig.json ├── trace-import │ ├── .npmignore │ ├── .vscode │ │ └── launch.json │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── bin │ │ └── trace-import │ ├── config │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── TraceImportCommandLineParser.ts │ │ ├── start.ts │ │ └── traceImport.ts │ └── tsconfig.json └── zipsync │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── bin │ └── zipsync │ ├── config │ ├── jest.config.json │ ├── jestSymbolDispose.js │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ ├── cli │ │ ├── ZipSyncCommandLineParser.ts │ │ └── test │ │ │ ├── __snapshots__ │ │ │ └── start.test.ts.snap │ │ │ └── start.test.ts │ ├── compress.ts │ ├── crc32.ts │ ├── fs.ts │ ├── hash.ts │ ├── index.ts │ ├── pack.ts │ ├── packWorker.ts │ ├── packWorkerAsync.ts │ ├── perf.ts │ ├── start.ts │ ├── test │ │ ├── benchmark.test.ts │ │ ├── crc32.test.ts │ │ ├── index.test.ts │ │ ├── testUtils.ts │ │ └── workerAsync.test.ts │ ├── unpack.ts │ ├── unpackWorker.ts │ ├── unpackWorkerAsync.ts │ ├── zipSyncUtils.ts │ └── zipUtils.ts │ └── tsconfig.json ├── common ├── autoinstallers │ └── rush-prettier │ │ ├── package.json │ │ └── pnpm-lock.yaml ├── changes │ ├── @microsoft │ │ └── rush │ │ │ └── copilot-fix-resolutions-dependency-hash_2025-11-25-21-27.json │ ├── @rushstack │ │ ├── eslint-plugin-packlets │ │ │ ├── 2025-11-11-01-31.json │ │ │ ├── bump-cyclics_2025-10-24-22-51.json │ │ │ └── main_2025-10-14-22-16.json │ │ ├── eslint-plugin-security │ │ │ ├── 2025-11-11-01-31.json │ │ │ ├── bump-cyclics_2025-10-24-22-51.json │ │ │ └── main_2025-10-14-22-16.json │ │ ├── eslint-plugin │ │ │ └── 2025-11-11-01-31.json │ │ ├── localization-plugin │ │ │ └── move-terminal_2022-01-20-19-34.json │ │ ├── problem-matcher │ │ │ ├── 2025-11-11-01-31.json │ │ │ ├── bump-cyclics_2025-10-01-02-51.json │ │ │ ├── bump-cyclics_2025-10-24-22-51.json │ │ │ ├── bump-eslint_2025-10-07-19-34.json │ │ │ └── main_2025-10-14-22-16.json │ │ ├── rig-package │ │ │ ├── 2025-11-11-01-31.json │ │ │ ├── bump-cyclics_2025-10-24-22-51.json │ │ │ ├── bump-eslint_2025-10-07-19-34.json │ │ │ ├── json-schemas-artifact_2025-11-04-02-46.json │ │ │ └── main_2025-10-14-22-16.json │ │ ├── tls-sync-vscode-shared │ │ │ └── bmiddha-tls-sync_2025-06-27-01-35.json │ │ └── tree-pattern │ │ │ ├── 2025-11-11-01-31.json │ │ │ ├── bump-cyclics_2025-03-01-07-39.json │ │ │ ├── bump-cyclics_2025-03-11-02-24.json │ │ │ ├── bump-cyclics_2025-07-07-23-33.json │ │ │ ├── bump-cyclics_2025-08-31-01-08.json │ │ │ ├── bump-cyclics_2025-10-01-02-51.json │ │ │ ├── bump-cyclics_2025-10-24-22-51.json │ │ │ ├── bump-eslint_2025-10-07-19-34.json │ │ │ ├── bump-ts_2025-02-19-19-31.json │ │ │ ├── clean-up-cyclic-projects_2025-04-04-18-03.json │ │ │ ├── heft-jest-punycode_2024-12-10-05-37.json │ │ │ ├── main_2024-09-20-22-48.json │ │ │ ├── main_2024-11-23-00-43.json │ │ │ ├── main_2025-02-25-02-18.json │ │ │ ├── main_2025-03-01-05-27.json │ │ │ ├── main_2025-04-24-22-13.json │ │ │ ├── main_2025-07-23-21-06.json │ │ │ ├── main_2025-10-14-22-16.json │ │ │ ├── move-heft-plugins-to-decoupled-local-node-rig_2025-04-08-02-35.json │ │ │ ├── octogonz-bump-decoupled_2025-01-07-23-21.json │ │ │ ├── ts-5.8_2025-03-11-00-18.json │ │ │ ├── update-cyclics_2024-12-04-01-12.json │ │ │ └── user-danade-BumpEslintUtils_2024-08-13-00-25.json │ └── tls-sync-vscode-extension-pack │ │ └── bmiddha-tls-sync_2025-07-01-00-21.json ├── config │ ├── azure-pipelines │ │ ├── npm-publish-rush.yaml │ │ ├── npm-publish.yaml │ │ ├── templates │ │ │ ├── build.yaml │ │ │ ├── bump-versions.yaml │ │ │ ├── install-node.yaml │ │ │ ├── post-publish.yaml │ │ │ └── publish.yaml │ │ └── vscode-extension-publish.yaml │ ├── lockfile-explorer │ │ └── lockfile-lint.json │ ├── rush │ │ ├── .npmrc-publish │ │ ├── artifactory.json │ │ ├── browser-approved-packages.json │ │ ├── build-cache.json │ │ ├── cobuild.json │ │ ├── command-line.json │ │ ├── custom-tips.json │ │ ├── experiments.json │ │ ├── nonbrowser-approved-packages.json │ │ ├── pnpm-config.json │ │ ├── rush-plugins.json │ │ ├── subspaces.json │ │ └── version-policies.json │ └── subspaces │ │ ├── build-tests-subspace │ │ ├── .npmrc │ │ ├── .pnpmfile.cjs │ │ ├── common-versions.json │ │ ├── pnpm-lock.yaml │ │ └── repo-state.json │ │ └── default │ │ ├── .npmrc │ │ ├── .pnpmfile.cjs │ │ ├── common-versions.json │ │ ├── pnpm-lock.yaml │ │ └── repo-state.json ├── docs │ └── rfcs │ │ ├── images │ │ └── 4230 │ │ │ └── subspaces-figure-1.excalidraw.png │ │ └── rfc-4230-rush-subspaces.md ├── git-hooks │ ├── commit-msg.sample │ └── pre-commit ├── reviews │ └── api │ │ ├── api-documenter.api.md │ │ ├── api-extractor-model.api.md │ │ ├── api-extractor.api.md │ │ ├── credential-cache.api.md │ │ ├── debug-certificate-manager.api.md │ │ ├── hashed-folder-copy-plugin.api.md │ │ ├── heft-config-file.api.md │ │ ├── heft-dev-cert-plugin.api.md │ │ ├── heft-isolated-typescript-transpile-plugin.api.md │ │ ├── heft-jest-plugin.api.md │ │ ├── heft-rspack-plugin.api.md │ │ ├── heft-sass-plugin.api.md │ │ ├── heft-storybook-plugin.api.md │ │ ├── heft-typescript-plugin.api.md │ │ ├── heft-webpack4-plugin.api.md │ │ ├── heft-webpack5-plugin.api.md │ │ ├── heft.api.md │ │ ├── loader-load-themed-styles.api.md │ │ ├── localization-utilities.api.md │ │ ├── lookup-by-path.api.md │ │ ├── mcp-server.api.md │ │ ├── module-minifier.api.md │ │ ├── node-core-library.api.md │ │ ├── operation-graph.api.md │ │ ├── package-deps-hash.api.md │ │ ├── package-extractor.api.md │ │ ├── problem-matcher.api.md │ │ ├── real-node-module-path.api.md │ │ ├── rig-package.api.md │ │ ├── rush-amazon-s3-build-cache-plugin.api.md │ │ ├── rush-azure-storage-build-cache-plugin.api.md │ │ ├── rush-buildxl-graph-plugin.api.md │ │ ├── rush-lib.api.md │ │ ├── rush-redis-cobuild-plugin.api.md │ │ ├── rush-resolver-cache-plugin.api.md │ │ ├── rush-sdk.api.md │ │ ├── rush-serve-plugin.api.md │ │ ├── rush-themed-ui.api.md │ │ ├── rushell.api.md │ │ ├── set-webpack-public-path-plugin.api.md │ │ ├── stream-collator.api.md │ │ ├── terminal.api.md │ │ ├── tree-pattern.api.md │ │ ├── ts-command-line.api.md │ │ ├── typings-generator.api.md │ │ ├── webpack-deep-imports-plugin.api.md │ │ ├── webpack-embedded-dependencies-plugin.api.md │ │ ├── webpack-plugin-utilities.api.md │ │ ├── webpack-preserve-dynamic-require-plugin.api.md │ │ ├── webpack-workspace-resolve-plugin.api.md │ │ ├── webpack4-localization-plugin.api.md │ │ ├── webpack4-module-minifier-plugin.api.md │ │ ├── webpack5-load-themed-styles-loader.api.md │ │ ├── webpack5-localization-plugin.api.md │ │ ├── webpack5-module-minifier-plugin.api.md │ │ └── worker-pool.api.md ├── scripts │ ├── install-run-rush-pnpm.js │ ├── install-run-rush.js │ ├── install-run-rushx.js │ └── install-run.js └── wiki-images │ ├── api-extractor-title.png │ ├── heft-300x120.png │ ├── performance_pnpm.png │ └── rush-logo.png ├── eslint ├── eslint-bulk │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── bin │ │ └── eslint-bulk │ ├── config │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ └── start.ts │ └── tsconfig.json ├── eslint-config │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ └── rush-project.json │ ├── flat │ │ ├── mixins │ │ │ ├── friendly-locals.js │ │ │ ├── packlets.js │ │ │ ├── react.js │ │ │ └── tsdoc.js │ │ ├── patch │ │ │ └── eslint-bulk-suppressions.js │ │ └── profile │ │ │ ├── _common.js │ │ │ ├── _macros.js │ │ │ ├── node-trusted-tool.js │ │ │ ├── node.js │ │ │ └── web-app.js │ ├── index.js │ ├── mixins │ │ ├── friendly-locals.js │ │ ├── packlets.js │ │ ├── react.js │ │ └── tsdoc.js │ ├── package.json │ ├── patch-eslint6.js │ ├── patch │ │ ├── custom-config-package-names.js │ │ ├── eslint-bulk-suppressions.js │ │ └── modern-module-resolution.js │ ├── profile │ │ ├── _common.js │ │ ├── _macros.js │ │ ├── node-trusted-tool.js │ │ ├── node.js │ │ └── web-app.js │ └── react.js ├── eslint-patch │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ └── rig.json │ ├── custom-config-package-names.js │ ├── eslint-bulk-suppressions.js │ ├── eslint.config.js │ ├── modern-module-resolution.js │ ├── package.json │ ├── src │ │ ├── _patch-base.ts │ │ ├── custom-config-package-names.ts │ │ ├── eslint-bulk-suppressions │ │ │ ├── ast-guards.ts │ │ │ ├── bulk-suppressions-file.ts │ │ │ ├── bulk-suppressions-patch.ts │ │ │ ├── cli │ │ │ │ ├── prune.ts │ │ │ │ ├── runEslint.ts │ │ │ │ ├── start.ts │ │ │ │ ├── suppress.ts │ │ │ │ └── utils │ │ │ │ │ ├── get-eslint-cli.ts │ │ │ │ │ ├── is-correct-cwd.ts │ │ │ │ │ ├── print-help.ts │ │ │ │ │ └── wrap-words-to-lines.ts │ │ │ ├── constants.ts │ │ │ ├── generate-patched-file.ts │ │ │ ├── index.ts │ │ │ └── path-utils.ts │ │ ├── exports │ │ │ └── eslint-bulk.ts │ │ ├── modern-module-resolution.ts │ │ └── usage.ts │ └── tsconfig.json ├── eslint-plugin-packlets │ ├── .npmignore │ ├── .vscode │ │ └── launch.json │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── DependencyAnalyzer.ts │ │ ├── PackletAnalyzer.ts │ │ ├── Path.ts │ │ ├── circular-deps.ts │ │ ├── index.ts │ │ ├── mechanics.ts │ │ ├── readme.ts │ │ └── test │ │ │ └── Path.test.ts │ └── tsconfig.json ├── eslint-plugin-security │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── no-unsafe-regexp.ts │ │ └── test │ │ │ └── no-unsafe-regexp.test.ts │ └── tsconfig.json ├── eslint-plugin │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── LintUtilities.ts │ │ ├── hoist-jest-mock.ts │ │ ├── hoistJestMockPatterns.ts │ │ ├── import-requires-chunk-name.ts │ │ ├── index.ts │ │ ├── no-backslash-imports.ts │ │ ├── no-external-local-imports.ts │ │ ├── no-new-null.ts │ │ ├── no-null.ts │ │ ├── no-transitive-dependency-imports.ts │ │ ├── no-untyped-underscore.ts │ │ ├── normalized-imports.ts │ │ ├── pair-react-dom-render-unmount.ts │ │ ├── test │ │ │ ├── fixtures │ │ │ │ ├── file.ts │ │ │ │ └── tsconfig.json │ │ │ ├── hoist-jest-mock.test.ts │ │ │ ├── import-requires-chunk-name.test.ts │ │ │ ├── no-backslash-imports.test.ts │ │ │ ├── no-external-local-imports.test.ts │ │ │ ├── no-new-null.test.ts │ │ │ ├── no-transitive-dependency-imports.test.ts │ │ │ ├── no-untyped-underscore.test.ts │ │ │ ├── normalized-imports.test.ts │ │ │ ├── pair-react-dom-render-unmount.test.ts │ │ │ ├── ruleTester.ts │ │ │ └── typedef-var.test.ts │ │ └── typedef-var.ts │ └── tsconfig.json └── local-eslint-config │ ├── .gitignore │ ├── .npmignore │ ├── config │ ├── heft.json │ └── rush-project.json │ └── package.json ├── heft-plugins ├── heft-api-extractor-plugin │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── heft.json │ │ └── rig.json │ ├── eslint.config.js │ ├── heft-plugin.json │ ├── package.json │ ├── src │ │ ├── ApiExtractorPlugin.ts │ │ ├── ApiExtractorRunner.ts │ │ └── schemas │ │ │ └── api-extractor-task.schema.json │ └── tsconfig.json ├── heft-dev-cert-plugin │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ └── rig.json │ ├── eslint.config.js │ ├── heft-plugin.json │ ├── package.json │ ├── src │ │ ├── TrustDevCertificatePlugin.ts │ │ └── UntrustDevCertificatePlugin.ts │ └── tsconfig.json ├── heft-isolated-typescript-transpile-plugin │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── api-extractor.json │ │ ├── heft.json │ │ └── rig.json │ ├── eslint.config.js │ ├── heft-plugin.json │ ├── package.json │ ├── src │ │ ├── SwcIsolatedTranspilePlugin.ts │ │ ├── TranspileWorker.ts │ │ ├── index.ts │ │ ├── schemas │ │ │ └── swc-isolated-transpile-plugin.schema.json │ │ └── types.ts │ └── tsconfig.json ├── heft-jest-plugin │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── UPGRADING.md │ ├── config │ │ ├── heft.json │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── heft-plugin.json │ ├── includes │ │ ├── jest-shared.config.json │ │ └── jest-web.config.json │ ├── package.json │ ├── src │ │ ├── HeftJestReporter.ts │ │ ├── HeftJestResolver.ts │ │ ├── JestPlugin.ts │ │ ├── JestRealPathPatch.ts │ │ ├── JestUtils.ts │ │ ├── SourceMapSnapshotResolver.ts │ │ ├── TerminalWritableStream.ts │ │ ├── exports │ │ │ ├── jest-global-setup.ts │ │ │ ├── jest-identity-mock-transform.ts │ │ │ ├── jest-improved-resolver.ts │ │ │ ├── jest-node-modules-symlink-resolver.ts │ │ │ ├── jest-source-map-snapshot-resolver.ts │ │ │ ├── jest-string-mock-transform.ts │ │ │ └── patched-jest-environment-jsdom.ts │ │ ├── identityMock.ts │ │ ├── patches │ │ │ └── jestWorkerPatch.ts │ │ ├── schemas │ │ │ ├── anything.schema.json │ │ │ └── heft-jest-plugin.schema.json │ │ ├── test │ │ │ ├── JestPlugin.test.ts │ │ │ ├── project1 │ │ │ │ ├── a │ │ │ │ │ ├── b │ │ │ │ │ │ ├── globalSetupFile1.ts │ │ │ │ │ │ ├── mockTransformModule1.ts │ │ │ │ │ │ ├── mockTransformModule2.ts │ │ │ │ │ │ ├── mockWatchPlugin.ts │ │ │ │ │ │ ├── setupFile1.ts │ │ │ │ │ │ └── setupFile2.ts │ │ │ │ │ ├── c │ │ │ │ │ │ ├── d │ │ │ │ │ │ │ ├── globalSetupFile2.ts │ │ │ │ │ │ │ └── mockReporter2.ts │ │ │ │ │ │ ├── jest.config.json │ │ │ │ │ │ ├── mockReporter1.ts │ │ │ │ │ │ └── mockTransformModule3.ts │ │ │ │ │ └── jest.config.json │ │ │ │ └── config │ │ │ │ │ └── jest.config.json │ │ │ ├── project2 │ │ │ │ ├── a │ │ │ │ │ └── jest.config.json │ │ │ │ └── config │ │ │ │ │ └── jest.config.json │ │ │ └── project3 │ │ │ │ └── config │ │ │ │ └── jest.config.json │ │ └── transformers │ │ │ ├── IdentityMockTransformer.ts │ │ │ └── StringMockTransformer.ts │ └── tsconfig.json ├── heft-json-schema-typings-plugin │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── heft.json │ │ └── rig.json │ ├── eslint.config.js │ ├── heft-plugin.json │ ├── package.json │ ├── src │ │ ├── JsonSchemaTypingsGenerator.ts │ │ ├── JsonSchemaTypingsPlugin.ts │ │ └── schemas │ │ │ └── heft-json-schema-typings-plugin.schema.json │ └── tsconfig.json ├── heft-lint-plugin │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── heft.json │ │ └── rig.json │ ├── eslint.config.js │ ├── heft-plugin.json │ ├── package.json │ ├── src │ │ ├── Eslint.ts │ │ ├── LintPlugin.ts │ │ ├── LinterBase.ts │ │ ├── SarifFormatter.ts │ │ ├── Tslint.ts │ │ ├── internalTypings │ │ │ ├── TslintInternals.ts │ │ │ └── TypeScriptInternals.ts │ │ ├── schemas │ │ │ └── heft-lint-plugin.schema.json │ │ └── test │ │ │ ├── SarifFormatter.test.ts │ │ │ └── __snapshots__ │ │ │ └── SarifFormatter.test.ts.snap │ └── tsconfig.json ├── heft-localization-typings-plugin │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── config │ │ ├── heft.json │ │ └── rig.json │ ├── eslint.config.js │ ├── heft-plugin.json │ ├── package.json │ ├── src │ │ ├── LocalizationTypingsPlugin.ts │ │ └── schemas │ │ │ └── heft-localization-typings-plugin.schema.json │ └── tsconfig.json ├── heft-rspack-plugin │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── api-extractor.json │ │ ├── heft.json │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── heft-plugin.json │ ├── package.json │ ├── src │ │ ├── DeferredWatchFileSystem.ts │ │ ├── RspackConfigurationLoader.ts │ │ ├── RspackPlugin.ts │ │ ├── index.ts │ │ ├── schemas │ │ │ └── heft-rspack-plugin.schema.json │ │ └── shared.ts │ └── tsconfig.json ├── heft-sass-load-themed-styles-plugin │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ └── rig.json │ ├── eslint.config.js │ ├── heft-plugin.json │ ├── package.json │ ├── src │ │ └── SassLoadThemedStylesPlugin.ts │ └── tsconfig.json ├── heft-sass-plugin │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── heft.json │ │ └── rig.json │ ├── eslint.config.js │ ├── heft-plugin.json │ ├── package.json │ ├── src │ │ ├── SassPlugin.ts │ │ ├── SassProcessor.ts │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── schemas │ │ │ ├── README-ModifyingSchemas.md │ │ │ └── heft-sass-plugin.schema.json │ │ └── templates │ │ │ └── sass.json │ └── tsconfig.json ├── heft-serverless-stack-plugin │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── README.md │ ├── config │ │ └── rig.json │ ├── eslint.config.js │ ├── heft-plugin.json │ ├── package.json │ ├── src │ │ └── ServerlessStackPlugin.ts │ └── tsconfig.json ├── heft-storybook-plugin │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── heft.json │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── heft-plugin.json │ ├── package.json │ ├── src │ │ ├── StorybookPlugin.ts │ │ └── schemas │ │ │ └── storybook.schema.json │ └── tsconfig.json ├── heft-typescript-plugin │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── api-extractor.json │ │ ├── heft.json │ │ └── rig.json │ ├── eslint.config.js │ ├── heft-plugin.json │ ├── package.json │ ├── src │ │ ├── Performance.ts │ │ ├── TranspilerWorker.ts │ │ ├── TypeScriptBuilder.ts │ │ ├── TypeScriptPlugin.ts │ │ ├── configureProgramForMultiEmit.ts │ │ ├── fileSystem │ │ │ └── TypeScriptCachedFileSystem.ts │ │ ├── index.ts │ │ ├── internalTypings │ │ │ └── TypeScriptInternals.ts │ │ ├── loadTypeScriptTool.ts │ │ ├── schemas │ │ │ ├── anything.schema.json │ │ │ └── typescript.schema.json │ │ ├── tsconfigLoader.ts │ │ └── types.ts │ └── tsconfig.json ├── heft-vscode-extension-plugin │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ └── rig.json │ ├── eslint.config.js │ ├── heft-plugin.json │ ├── package.json │ ├── src │ │ ├── VSCodeExtensionPackagePlugin.ts │ │ ├── VSCodeExtensionPublishPlugin.ts │ │ ├── VSCodeExtensionVerifySignaturePlugin.ts │ │ └── util.ts │ └── tsconfig.json ├── heft-webpack4-plugin │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── api-extractor.json │ │ ├── heft.json │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── heft-plugin.json │ ├── package.json │ ├── src │ │ ├── DeferredWatchFileSystem.ts │ │ ├── Webpack4Plugin.ts │ │ ├── WebpackConfigurationLoader.test.ts │ │ ├── WebpackConfigurationLoader.ts │ │ ├── index.ts │ │ ├── schemas │ │ │ └── heft-webpack4-plugin.schema.json │ │ └── shared.ts │ └── tsconfig.json └── heft-webpack5-plugin │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ ├── api-extractor.json │ ├── heft.json │ ├── jest.config.json │ └── rig.json │ ├── eslint.config.js │ ├── heft-plugin.json │ ├── package.json │ ├── src │ ├── DeferredWatchFileSystem.ts │ ├── Webpack5Plugin.ts │ ├── WebpackConfigurationLoader.ts │ ├── index.ts │ ├── schemas │ │ └── heft-webpack5-plugin.schema.json │ ├── shared.ts │ └── test │ │ └── WebpackConfigurationLoader.test.ts │ └── tsconfig.json ├── libraries ├── api-extractor-model │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── api-extractor.json │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── aedoc │ │ │ ├── AedocDefinitions.ts │ │ │ └── ReleaseTag.ts │ │ ├── index.ts │ │ ├── items │ │ │ ├── ApiDeclaredItem.ts │ │ │ ├── ApiDocumentedItem.ts │ │ │ ├── ApiItem.ts │ │ │ └── ApiPropertyItem.ts │ │ ├── mixins │ │ │ ├── ApiAbstractMixin.ts │ │ │ ├── ApiExportedMixin.ts │ │ │ ├── ApiInitializerMixin.ts │ │ │ ├── ApiItemContainerMixin.ts │ │ │ ├── ApiNameMixin.ts │ │ │ ├── ApiOptionalMixin.ts │ │ │ ├── ApiParameterListMixin.ts │ │ │ ├── ApiProtectedMixin.ts │ │ │ ├── ApiReadonlyMixin.ts │ │ │ ├── ApiReleaseTagMixin.ts │ │ │ ├── ApiReturnTypeMixin.ts │ │ │ ├── ApiStaticMixin.ts │ │ │ ├── ApiTypeParameterListMixin.ts │ │ │ ├── Excerpt.ts │ │ │ ├── IFindApiItemsResult.ts │ │ │ └── Mixin.ts │ │ └── model │ │ │ ├── ApiCallSignature.ts │ │ │ ├── ApiClass.ts │ │ │ ├── ApiConstructSignature.ts │ │ │ ├── ApiConstructor.ts │ │ │ ├── ApiEntryPoint.ts │ │ │ ├── ApiEnum.ts │ │ │ ├── ApiEnumMember.ts │ │ │ ├── ApiFunction.ts │ │ │ ├── ApiIndexSignature.ts │ │ │ ├── ApiInterface.ts │ │ │ ├── ApiMethod.ts │ │ │ ├── ApiMethodSignature.ts │ │ │ ├── ApiModel.ts │ │ │ ├── ApiNamespace.ts │ │ │ ├── ApiPackage.ts │ │ │ ├── ApiProperty.ts │ │ │ ├── ApiPropertySignature.ts │ │ │ ├── ApiTypeAlias.ts │ │ │ ├── ApiVariable.ts │ │ │ ├── Deserializer.ts │ │ │ ├── DeserializerContext.ts │ │ │ ├── HeritageType.ts │ │ │ ├── ModelReferenceResolver.ts │ │ │ ├── Parameter.ts │ │ │ ├── SourceLocation.ts │ │ │ └── TypeParameter.ts │ └── tsconfig.json ├── credential-cache │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── api-extractor.json │ │ ├── heft.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── CredentialCache.ts │ │ ├── index.ts │ │ ├── schemas │ │ │ └── credentials.schema.json │ │ └── test │ │ │ ├── CredentialCache.mock.ts │ │ │ ├── CredentialCache.test.ts │ │ │ └── __snapshots__ │ │ │ └── CredentialCache.test.ts.snap │ └── tsconfig.json ├── debug-certificate-manager │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── api-extractor.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── CertificateManager.ts │ │ ├── CertificateStore.ts │ │ ├── index.ts │ │ └── runCommand.ts │ └── tsconfig.json ├── heft-config-file │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── api-extractor.json │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── ConfigurationFileBase.ts │ │ ├── NonProjectConfigurationFile.ts │ │ ├── ProjectConfigurationFile.ts │ │ ├── TestUtilities.ts │ │ ├── index.ts │ │ └── test │ │ │ ├── ConfigurationFile.test.ts │ │ │ ├── __snapshots__ │ │ │ └── ConfigurationFile.test.ts.snap │ │ │ ├── complexConfigFile │ │ │ ├── plugins.schema.json │ │ │ ├── pluginsA.json │ │ │ ├── pluginsB.json │ │ │ ├── pluginsC.json │ │ │ └── pluginsD.json │ │ │ ├── errorCases │ │ │ ├── circularReference │ │ │ │ ├── config.schema.json │ │ │ │ ├── config1.json │ │ │ │ ├── config2.json │ │ │ │ └── config3.json │ │ │ ├── extendsNotExist │ │ │ │ ├── config.json │ │ │ │ └── config.schema.json │ │ │ ├── invalidCombinedFile │ │ │ │ ├── config.schema.json │ │ │ │ ├── config1.json │ │ │ │ └── config2.json │ │ │ ├── invalidJson │ │ │ │ ├── .gitattributes │ │ │ │ ├── config.json │ │ │ │ └── config.schema.json │ │ │ └── invalidType │ │ │ │ ├── config.json │ │ │ │ └── config.schema.json │ │ │ ├── inheritanceTypeConfigFile │ │ │ ├── inheritanceTypeConfigFile.schema.json │ │ │ ├── inheritanceTypeConfigFileA.json │ │ │ └── inheritanceTypeConfigFileB.json │ │ │ ├── project-referencing-rig │ │ │ ├── .gitignore │ │ │ ├── config │ │ │ │ └── rig.json │ │ │ ├── node_modules │ │ │ │ └── test-rig │ │ │ │ │ ├── package.json │ │ │ │ │ └── profiles │ │ │ │ │ └── default │ │ │ │ │ └── config │ │ │ │ │ └── simplestConfigFile.json │ │ │ └── package.json │ │ │ ├── simpleConfigFile │ │ │ ├── simpleConfigFile.json │ │ │ └── simpleConfigFile.schema.json │ │ │ ├── simpleConfigFileWithExtends │ │ │ ├── simpleConfigFileWithExtends.json │ │ │ └── simpleConfigFileWithExtends.schema.json │ │ │ ├── simpleInheritanceTypeConfigFile │ │ │ ├── badInheritanceTypeConfigFileA.json │ │ │ ├── badInheritanceTypeConfigFileB.json │ │ │ ├── badInheritanceTypeConfigFileC.json │ │ │ ├── badInheritanceTypeConfigFileD.json │ │ │ ├── badInheritanceTypeConfigFileE.json │ │ │ ├── simpleInheritanceTypeConfigFile.schema.json │ │ │ ├── simpleInheritanceTypeConfigFileA.json │ │ │ └── simpleInheritanceTypeConfigFileB.json │ │ │ └── simplestConfigFile │ │ │ ├── simplestConfigFile.json │ │ │ └── simplestConfigFile.schema.json │ └── tsconfig.json ├── load-themed-styles │ ├── .npmignore │ ├── .vscode │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── heft.json │ │ ├── jest.config.json │ │ ├── rig.json │ │ ├── rush-project.json │ │ └── typescript.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── test │ │ │ └── index.test.ts │ └── tsconfig.json ├── localization-utilities │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── api-extractor.json │ │ ├── rig.json │ │ └── typescript.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── LocFileParser.ts │ │ ├── Pseudolocalization.ts │ │ ├── TypingsGenerator.ts │ │ ├── index.ts │ │ ├── interfaces.ts │ │ ├── parsers │ │ │ ├── parseLocJson.ts │ │ │ ├── parseResJson.ts │ │ │ ├── parseResx.ts │ │ │ └── test │ │ │ │ ├── __snapshots__ │ │ │ │ ├── parseLocJson.test.ts.snap │ │ │ │ ├── parseResJson.test.ts.snap │ │ │ │ └── parseResx.test.ts.snap │ │ │ │ ├── parseLocJson.test.ts │ │ │ │ ├── parseResJson.test.ts │ │ │ │ ├── parseResx.test.ts │ │ │ │ └── testResxFiles │ │ │ │ ├── invalidXml.resx │ │ │ │ ├── resxWithDuplicateEntry.resx │ │ │ │ ├── resxWithSchema.resx │ │ │ │ ├── stringWithQuotemarks.resx │ │ │ │ ├── stringWithoutComment.resx │ │ │ │ └── withNewlines.resx │ │ ├── schemas │ │ │ └── locJson.schema.json │ │ └── test │ │ │ ├── Pseudolocalization.test.ts │ │ │ └── __snapshots__ │ │ │ └── Pseudolocalization.test.ts.snap │ └── tsconfig.json ├── lookup-by-path │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── api-extractor.json │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── LookupByPath.ts │ │ ├── getFirstDifferenceInCommonNodes.ts │ │ ├── index.ts │ │ └── test │ │ │ ├── LookupByPath.test.ts │ │ │ └── getFirstDifferenceInCommonNodes.test.ts │ └── tsconfig.json ├── module-minifier │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── api-extractor.json │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── LocalMinifier.ts │ │ ├── MessagePortMinifier.ts │ │ ├── MinifiedIdentifier.ts │ │ ├── MinifierWorker.ts │ │ ├── MinifySingleFile.ts │ │ ├── NoopMinifier.ts │ │ ├── WorkerPoolMinifier.ts │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── test │ │ │ ├── LocalMinifier.test.ts │ │ │ ├── MinifiedIdentifier.test.ts │ │ │ ├── MinifySingleFile.test.ts │ │ │ ├── WorkerPoolMinifier.test.ts │ │ │ └── __snapshots__ │ │ │ │ ├── LocalMinifier.test.ts.snap │ │ │ │ ├── MinifySingleFile.test.ts.snap │ │ │ │ └── WorkerPoolMinifier.test.ts.snap │ │ └── types.ts │ └── tsconfig.json ├── node-core-library │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── api-extractor.json │ │ ├── heft.json │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── AlreadyReportedError.ts │ │ ├── Async.ts │ │ ├── Constants.ts │ │ ├── Disposables.ts │ │ ├── Enum.ts │ │ ├── EnvironmentMap.ts │ │ ├── Executable.ts │ │ ├── FileError.ts │ │ ├── FileSystem.ts │ │ ├── FileWriter.ts │ │ ├── IPackageJson.ts │ │ ├── Import.ts │ │ ├── InternalError.ts │ │ ├── JsonFile.ts │ │ ├── JsonSchema.ts │ │ ├── LegacyAdapters.ts │ │ ├── LockFile.ts │ │ ├── MapExtensions.ts │ │ ├── MinimumHeap.ts │ │ ├── Objects.ts │ │ ├── PackageJsonLookup.ts │ │ ├── PackageName.ts │ │ ├── Path.ts │ │ ├── PosixModeBits.ts │ │ ├── PrimitiveTypes.ts │ │ ├── ProtectableMap.ts │ │ ├── ProtectableMapView.ts │ │ ├── RealNodeModulePath.ts │ │ ├── Sort.ts │ │ ├── StringBuilder.ts │ │ ├── SubprocessTerminator.ts │ │ ├── Text.ts │ │ ├── TypeUuid.ts │ │ ├── User.ts │ │ ├── disposables │ │ │ ├── index.ts │ │ │ └── polyfillDisposeSymbols.ts │ │ ├── index.ts │ │ ├── objects │ │ │ ├── areDeepEqual.ts │ │ │ ├── index.ts │ │ │ └── test │ │ │ │ └── areDeepEqual.test.ts │ │ ├── test │ │ │ ├── 2 │ │ │ │ └── test#999999999.lock │ │ │ ├── 3 │ │ │ │ └── test#1.lock │ │ │ ├── Async.test.ts │ │ │ ├── Enum.test.ts │ │ │ ├── EnvironmentMap.test.ts │ │ │ ├── Executable.test.ts │ │ │ ├── FileError.test.ts │ │ │ ├── FileSystem.test.ts │ │ │ ├── Import.test.ts │ │ │ ├── JsonFile.test.ts │ │ │ ├── JsonSchema.test.ts │ │ │ ├── LockFile.test.ts │ │ │ ├── MinimumHeap.test.ts │ │ │ ├── PackageJsonLookup.test.ts │ │ │ ├── PackageName.test.ts │ │ │ ├── Path.test.ts │ │ │ ├── ProtectableMap.test.ts │ │ │ ├── RealNodeModulePath.test.ts │ │ │ ├── Sort.test.ts │ │ │ ├── Text.test.ts │ │ │ ├── TypeUuid.test.ts │ │ │ ├── __snapshots__ │ │ │ │ ├── Async.test.ts.snap │ │ │ │ ├── Executable.test.ts.snap │ │ │ │ ├── Import.test.ts.snap │ │ │ │ ├── JsonFile.test.ts.snap │ │ │ │ ├── JsonSchema.test.ts.snap │ │ │ │ └── Sort.test.ts.snap │ │ │ ├── test-data │ │ │ │ ├── example-package-no-version │ │ │ │ │ └── package.json │ │ │ │ ├── example-package │ │ │ │ │ ├── package.json │ │ │ │ │ └── src │ │ │ │ │ │ └── ExampleFile.txt │ │ │ │ ├── example-subdir-package-no-name │ │ │ │ │ ├── package.json │ │ │ │ │ └── src │ │ │ │ │ │ ├── ExampleFile.txt │ │ │ │ │ │ └── package.json │ │ │ │ ├── executable │ │ │ │ │ ├── fail │ │ │ │ │ │ ├── javascript-file.js │ │ │ │ │ │ ├── npm-binary-wrapper │ │ │ │ │ │ └── npm-binary-wrapper.cmd │ │ │ │ │ ├── no-terminate │ │ │ │ │ │ └── javascript-file.js │ │ │ │ │ ├── skipped │ │ │ │ │ │ └── missing-extension │ │ │ │ │ └── success │ │ │ │ │ │ ├── javascript-file.js │ │ │ │ │ │ ├── npm-binary-wrapper │ │ │ │ │ │ └── npm-binary-wrapper.cmd │ │ │ │ └── test-schemas │ │ │ │ │ ├── test-invalid-additional.schema.json │ │ │ │ │ ├── test-invalid-format.schema.json │ │ │ │ │ ├── test-schema-draft-04.schema.json │ │ │ │ │ ├── test-schema-draft-07.schema.json │ │ │ │ │ ├── test-schema-invalid.schema.json │ │ │ │ │ ├── test-schema-nested-child.schema.json │ │ │ │ │ ├── test-schema-nested.schema.json │ │ │ │ │ ├── test-schema.schema.json │ │ │ │ │ └── test-valid.schema.json │ │ │ └── writeBuffersToFile.test.ts │ │ └── user │ │ │ ├── getHomeFolder.ts │ │ │ └── index.ts │ └── tsconfig.json ├── npm-check-fork │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── BestGuessHomepage.ts │ │ ├── CreatePackageSummary.ts │ │ ├── FindModulePath.ts │ │ ├── GetLatestFromRegistry.ts │ │ ├── NpmCheck.ts │ │ ├── NpmCheckState.ts │ │ ├── ReadPackageJson.ts │ │ ├── index.ts │ │ ├── interfaces │ │ │ ├── INpmCheck.ts │ │ │ ├── INpmCheckPackageSummary.ts │ │ │ └── INpmCheckRegistry.ts │ │ ├── tests │ │ │ ├── BestGuessHomepage.test.ts │ │ │ ├── CreatePackageSummary.test.ts │ │ │ ├── FindModulePath.test.ts │ │ │ ├── GetLatestFromRegistry.test.ts │ │ │ ├── NpmCheck.test.ts │ │ │ ├── NpmCheckState.test.ts │ │ │ └── ReadPackageJson.test.ts │ │ └── types │ │ │ └── giturl-typings.d.ts │ └── tsconfig.json ├── operation-graph │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── api-extractor.json │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── IOperationRunner.ts │ │ ├── Operation.ts │ │ ├── OperationError.ts │ │ ├── OperationExecutionManager.ts │ │ ├── OperationGroupRecord.ts │ │ ├── OperationStatus.ts │ │ ├── Stopwatch.ts │ │ ├── WatchLoop.ts │ │ ├── WorkQueue.ts │ │ ├── calculateCriticalPath.ts │ │ ├── index.ts │ │ ├── protocol.types.ts │ │ └── test │ │ │ ├── OperationExecutionManager.test.ts │ │ │ ├── WatchLoop.test.ts │ │ │ ├── WorkQueue.test.ts │ │ │ ├── __snapshots__ │ │ │ ├── OperationExecutionManager.test.ts.snap │ │ │ └── calculateCriticalPath.test.ts.snap │ │ │ └── calculateCriticalPath.test.ts │ └── tsconfig.json ├── package-deps-hash │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── api-extractor.json │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── getPackageDeps.ts │ │ ├── getRepoState.ts │ │ ├── index.ts │ │ └── test │ │ │ ├── __snapshots__ │ │ │ └── getRepoDeps.test.ts.snap │ │ │ ├── getPackageDeps.test.ts │ │ │ ├── getRepoDeps.test.ts │ │ │ ├── getRepoState.test.ts │ │ │ ├── nestedTestProject │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── file 1.txt │ │ │ └── testProject │ │ │ ├── file 2.txt │ │ │ ├── file1.txt │ │ │ ├── file蝴蝶.txt │ │ │ └── package.json │ └── tsconfig.json ├── package-extractor │ ├── .gitignore │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── api-extractor.json │ │ ├── heft.json │ │ ├── jest.config.json │ │ ├── rig.json │ │ └── typescript.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── ArchiveManager.ts │ │ ├── AssetHandler.ts │ │ ├── PackageExtractor.ts │ │ ├── PathConstants.ts │ │ ├── SymlinkAnalyzer.ts │ │ ├── Utils.ts │ │ ├── index.ts │ │ ├── scripts │ │ │ └── createLinks │ │ │ │ ├── cli │ │ │ │ ├── CreateLinksCommandLineParser.ts │ │ │ │ └── actions │ │ │ │ │ ├── CreateLinksAction.ts │ │ │ │ │ └── RemoveLinksAction.ts │ │ │ │ ├── start.ts │ │ │ │ └── utilities │ │ │ │ ├── CreateLinksUtilities.ts │ │ │ │ └── constants.ts │ │ └── test │ │ │ ├── PackageExtractor.test.ts │ │ │ └── __snapshots__ │ │ │ └── PackageExtractor.test.ts.snap │ ├── tsconfig.json │ └── webpack.config.js ├── problem-matcher │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── api-extractor.json │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── ProblemMatcher.ts │ │ ├── index.ts │ │ └── test │ │ │ └── ProblemMatcher.test.ts │ └── tsconfig.json ├── rig-package │ ├── .npmignore │ ├── .vscode │ │ └── launch.json │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── api-extractor.json │ │ ├── heft.json │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── Helpers.ts │ │ ├── RigConfig.ts │ │ ├── index.ts │ │ ├── schemas │ │ │ └── rig.schema.json │ │ └── test │ │ │ ├── RigConfig.test.ts │ │ │ └── test-project │ │ │ ├── config │ │ │ └── rig.json │ │ │ ├── node_modules │ │ │ └── example-rig │ │ │ │ ├── package.json │ │ │ │ └── profiles │ │ │ │ └── web-app │ │ │ │ └── example-config.json │ │ │ └── package.json │ └── tsconfig.json ├── rush-lib │ ├── .npmignore │ ├── LICENSE │ ├── README.md │ ├── assets │ │ ├── rush-init-deploy │ │ │ └── scenario-template.json │ │ ├── rush-init │ │ │ ├── [dot]gitattributes │ │ │ ├── [dot]github │ │ │ │ └── workflows │ │ │ │ │ └── ci.yml │ │ │ ├── [dot]gitignore │ │ │ ├── common │ │ │ │ ├── config │ │ │ │ │ └── rush │ │ │ │ │ │ ├── .pnpmfile.cjs │ │ │ │ │ │ ├── [dot]npmrc │ │ │ │ │ │ ├── [dot]npmrc-publish │ │ │ │ │ │ ├── artifactory.json │ │ │ │ │ │ ├── build-cache.json │ │ │ │ │ │ ├── cobuild.json │ │ │ │ │ │ ├── command-line.json │ │ │ │ │ │ ├── common-versions.json │ │ │ │ │ │ ├── custom-tips.json │ │ │ │ │ │ ├── experiments.json │ │ │ │ │ │ ├── pnpm-config.json │ │ │ │ │ │ ├── rush-alerts.json │ │ │ │ │ │ ├── rush-plugins.json │ │ │ │ │ │ ├── subspaces.json │ │ │ │ │ │ └── version-policies.json │ │ │ │ └── git-hooks │ │ │ │ │ └── commit-msg.sample │ │ │ └── rush.json │ │ └── website-only │ │ │ ├── rush-plugin-manifest.json │ │ │ └── rush-project.json │ ├── config │ │ ├── api-extractor.json │ │ ├── heft.json │ │ ├── jest.config.json │ │ ├── rig.json │ │ └── typescript.json │ ├── eslint.config.js │ ├── package.json │ ├── scripts │ │ ├── copyEmptyModules.js │ │ └── plugins-prepublish.js │ ├── src │ │ ├── api │ │ │ ├── ApprovedPackagesConfiguration.ts │ │ │ ├── ApprovedPackagesPolicy.ts │ │ │ ├── BuildCacheConfiguration.ts │ │ │ ├── ChangeFile.ts │ │ │ ├── ChangeManagement.ts │ │ │ ├── ChangeManager.ts │ │ │ ├── Changelog.ts │ │ │ ├── CobuildConfiguration.ts │ │ │ ├── CommandLineConfiguration.ts │ │ │ ├── CommandLineJson.ts │ │ │ ├── CommonVersionsConfiguration.ts │ │ │ ├── CustomTipsConfiguration.ts │ │ │ ├── EnvironmentConfiguration.ts │ │ │ ├── EventHooks.ts │ │ │ ├── ExperimentsConfiguration.ts │ │ │ ├── FlagFile.ts │ │ │ ├── LastInstallFlag.ts │ │ │ ├── PackageJsonEditor.ts │ │ │ ├── PackageNameParsers.ts │ │ │ ├── Rush.ts │ │ │ ├── RushCommandLine.ts │ │ │ ├── RushConfiguration.ts │ │ │ ├── RushConfigurationProject.ts │ │ │ ├── RushGlobalFolder.ts │ │ │ ├── RushInternals.ts │ │ │ ├── RushPluginsConfiguration.ts │ │ │ ├── RushProjectConfiguration.ts │ │ │ ├── RushUserConfiguration.ts │ │ │ ├── SaveCallbackPackageJsonEditor.ts │ │ │ ├── Subspace.ts │ │ │ ├── SubspacesConfiguration.ts │ │ │ ├── Variants.ts │ │ │ ├── VersionPolicy.ts │ │ │ ├── VersionPolicyConfiguration.ts │ │ │ ├── packageManager │ │ │ │ ├── NpmPackageManager.ts │ │ │ │ ├── PackageManager.ts │ │ │ │ ├── PnpmPackageManager.ts │ │ │ │ └── YarnPackageManager.ts │ │ │ └── test │ │ │ │ ├── ChangeFile.test.ts │ │ │ │ ├── CommandLineConfiguration.test.ts │ │ │ │ ├── CommonVersionsConfiguration.test.ts │ │ │ │ ├── CustomTipsConfiguration.test.ts │ │ │ │ ├── EnvironmentConfiguration.test.ts │ │ │ │ ├── EventHooks.test.ts │ │ │ │ ├── FlagFile.test.ts │ │ │ │ ├── LastInstallFlag.test.ts │ │ │ │ ├── RushCommandLine.test.ts │ │ │ │ ├── RushConfiguration.test.ts │ │ │ │ ├── RushConfigurationProject.test.ts │ │ │ │ ├── RushProjectConfiguration.test.ts │ │ │ │ ├── VersionMismatchFinder.test.ts │ │ │ │ ├── VersionPolicy.test.ts │ │ │ │ ├── __snapshots__ │ │ │ │ ├── CommandLineConfiguration.test.ts.snap │ │ │ │ ├── CommonVersionsConfiguration.test.ts.snap │ │ │ │ ├── CustomTipsConfiguration.test.ts.snap │ │ │ │ ├── RushCommandLine.test.ts.snap │ │ │ │ ├── RushConfiguration.test.ts.snap │ │ │ │ ├── RushConfigurationProject.test.ts.snap │ │ │ │ └── RushProjectConfiguration.test.ts.snap │ │ │ │ ├── jsonFiles │ │ │ │ ├── common-versions-with-ensureConsistentVersionsTrue.json │ │ │ │ ├── common-versions.json │ │ │ │ ├── custom-tips.error.json │ │ │ │ ├── rush-project-base.json │ │ │ │ ├── rushWithIndividualVersion.json │ │ │ │ ├── rushWithLockVersion.json │ │ │ │ ├── test-project-a │ │ │ │ │ └── config │ │ │ │ │ │ └── rush-project.json │ │ │ │ ├── test-project-b │ │ │ │ │ └── config │ │ │ │ │ │ └── rush-project.json │ │ │ │ ├── test-project-c │ │ │ │ │ └── config │ │ │ │ │ │ └── rush-project.json │ │ │ │ ├── test-project-d │ │ │ │ │ └── config │ │ │ │ │ │ └── rush-project.json │ │ │ │ ├── test-project-e │ │ │ │ │ └── config │ │ │ │ │ │ └── rush-project.json │ │ │ │ ├── test-project-f │ │ │ │ │ └── config │ │ │ │ │ │ └── rush-project.json │ │ │ │ └── test-project-g │ │ │ │ │ └── config │ │ │ │ │ └── rush-project.json │ │ │ │ ├── pnpmConfigThrow │ │ │ │ ├── common │ │ │ │ │ └── config │ │ │ │ │ │ └── rush │ │ │ │ │ │ └── pnpm-config.json │ │ │ │ └── rush.json │ │ │ │ └── repo │ │ │ │ ├── apps │ │ │ │ ├── app1 │ │ │ │ │ └── package.json │ │ │ │ └── app2 │ │ │ │ │ └── package.json │ │ │ │ ├── common │ │ │ │ └── config │ │ │ │ │ └── rush │ │ │ │ │ ├── browser-approved-packages.json │ │ │ │ │ ├── custom-tips.json │ │ │ │ │ ├── nonbrowser-approved-packages.json │ │ │ │ │ └── version-policies.json │ │ │ │ ├── project1 │ │ │ │ └── package.json │ │ │ │ ├── project2 │ │ │ │ └── package.json │ │ │ │ ├── project3 │ │ │ │ └── package.json │ │ │ │ ├── rush-npm.json │ │ │ │ ├── rush-pnpm-5.json │ │ │ │ ├── rush-pnpm-global.json │ │ │ │ ├── rush-pnpm-invalid-store.json │ │ │ │ ├── rush-pnpm-local.json │ │ │ │ ├── rush-pnpm.json │ │ │ │ ├── rush-repository-url-urls.json │ │ │ │ └── rush-too-new.json │ │ ├── cli │ │ │ ├── CommandLineMigrationAdvisor.ts │ │ │ ├── RushCommandLineParser.ts │ │ │ ├── RushPnpmCommandLine.ts │ │ │ ├── RushPnpmCommandLineParser.ts │ │ │ ├── RushStartupBanner.ts │ │ │ ├── RushXCommandLine.ts │ │ │ ├── actions │ │ │ │ ├── AddAction.ts │ │ │ │ ├── AlertAction.ts │ │ │ │ ├── BaseAddAndRemoveAction.ts │ │ │ │ ├── BaseAutoinstallerAction.ts │ │ │ │ ├── BaseHotlinkPackageAction.ts │ │ │ │ ├── BaseInstallAction.ts │ │ │ │ ├── BaseRushAction.ts │ │ │ │ ├── BridgePackageAction.ts │ │ │ │ ├── ChangeAction.ts │ │ │ │ ├── CheckAction.ts │ │ │ │ ├── DeployAction.ts │ │ │ │ ├── InitAction.ts │ │ │ │ ├── InitAutoinstallerAction.ts │ │ │ │ ├── InitDeployAction.ts │ │ │ │ ├── InitSubspaceAction.ts │ │ │ │ ├── InstallAction.ts │ │ │ │ ├── InstallAutoinstallerAction.ts │ │ │ │ ├── LinkAction.ts │ │ │ │ ├── LinkPackageAction.ts │ │ │ │ ├── ListAction.ts │ │ │ │ ├── PublishAction.ts │ │ │ │ ├── PurgeAction.ts │ │ │ │ ├── RemoveAction.ts │ │ │ │ ├── ScanAction.ts │ │ │ │ ├── SetupAction.ts │ │ │ │ ├── UnlinkAction.ts │ │ │ │ ├── UpdateAction.ts │ │ │ │ ├── UpdateAutoinstallerAction.ts │ │ │ │ ├── UpdateCloudCredentialsAction.ts │ │ │ │ ├── UpgradeInteractiveAction.ts │ │ │ │ ├── VersionAction.ts │ │ │ │ └── test │ │ │ │ │ ├── AddAction.test.ts │ │ │ │ │ ├── RemoveAction.test.ts │ │ │ │ │ ├── addRepo │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── a │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── b │ │ │ │ │ │ └── package.json │ │ │ │ │ └── rush.json │ │ │ │ │ ├── removeRepo │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── a │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── b │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── c │ │ │ │ │ │ └── package.json │ │ │ │ │ └── rush.json │ │ │ │ │ └── tabComplete │ │ │ │ │ ├── abc │ │ │ │ │ └── package.json │ │ │ │ │ ├── def │ │ │ │ │ └── package.json │ │ │ │ │ └── rush.json │ │ │ ├── parsing │ │ │ │ ├── ParseParallelism.ts │ │ │ │ ├── SelectionParameterSet.ts │ │ │ │ ├── associateParametersByPhase.ts │ │ │ │ ├── defineCustomParameters.ts │ │ │ │ └── test │ │ │ │ │ ├── ParseParallelism.test.ts │ │ │ │ │ └── __snapshots__ │ │ │ │ │ └── ParseParallelism.test.ts.snap │ │ │ ├── scriptActions │ │ │ │ ├── BaseScriptAction.ts │ │ │ │ ├── GlobalScriptAction.ts │ │ │ │ └── PhasedScriptAction.ts │ │ │ └── test │ │ │ │ ├── .gitignore │ │ │ │ ├── Cli.test.ts │ │ │ │ ├── CommandLineHelp.test.ts │ │ │ │ ├── RushCommandLineParser.test.ts │ │ │ │ ├── RushCommandLineParserFailureCases.test.ts │ │ │ │ ├── RushPluginCommandLineParameters.test.ts │ │ │ │ ├── RushXCommandLine.test.ts │ │ │ │ ├── TestUtils.ts │ │ │ │ ├── __snapshots__ │ │ │ │ ├── CommandLineHelp.test.ts.snap │ │ │ │ └── RushXCommandLine.test.ts.snap │ │ │ │ ├── basicAndRunBuildActionRepo │ │ │ │ ├── a │ │ │ │ │ └── package.json │ │ │ │ ├── b │ │ │ │ │ └── package.json │ │ │ │ └── rush.json │ │ │ │ ├── basicAndRunRebuildActionRepo │ │ │ │ ├── a │ │ │ │ │ └── package.json │ │ │ │ ├── b │ │ │ │ │ └── package.json │ │ │ │ └── rush.json │ │ │ │ ├── mockRushCommandLineParser.ts │ │ │ │ ├── mock_child_process.ts │ │ │ │ ├── overrideAndDefaultBuildActionRepo │ │ │ │ ├── a │ │ │ │ │ └── package.json │ │ │ │ ├── b │ │ │ │ │ └── package.json │ │ │ │ ├── common │ │ │ │ │ └── config │ │ │ │ │ │ └── rush │ │ │ │ │ │ └── command-line.json │ │ │ │ └── rush.json │ │ │ │ ├── overrideAndDefaultRebuildActionRepo │ │ │ │ ├── a │ │ │ │ │ └── package.json │ │ │ │ ├── b │ │ │ │ │ └── package.json │ │ │ │ ├── common │ │ │ │ │ └── config │ │ │ │ │ │ └── rush │ │ │ │ │ │ └── command-line.json │ │ │ │ └── rush.json │ │ │ │ ├── overrideBuildAsGlobalCommandRepo │ │ │ │ ├── a │ │ │ │ │ └── package.json │ │ │ │ ├── b │ │ │ │ │ └── package.json │ │ │ │ ├── common │ │ │ │ │ └── config │ │ │ │ │ │ └── rush │ │ │ │ │ │ └── command-line.json │ │ │ │ └── rush.json │ │ │ │ ├── overrideBuildWithSimultaneousProcessesRepo │ │ │ │ ├── a │ │ │ │ │ └── package.json │ │ │ │ ├── b │ │ │ │ │ └── package.json │ │ │ │ ├── common │ │ │ │ │ └── config │ │ │ │ │ │ └── rush │ │ │ │ │ │ └── command-line.json │ │ │ │ └── rush.json │ │ │ │ ├── overrideRebuildAndRunBuildActionRepo │ │ │ │ ├── a │ │ │ │ │ └── package.json │ │ │ │ ├── b │ │ │ │ │ └── package.json │ │ │ │ ├── common │ │ │ │ │ └── config │ │ │ │ │ │ └── rush │ │ │ │ │ │ └── command-line.json │ │ │ │ └── rush.json │ │ │ │ ├── overrideRebuildAndRunRebuildActionRepo │ │ │ │ ├── a │ │ │ │ │ └── package.json │ │ │ │ ├── b │ │ │ │ │ └── package.json │ │ │ │ ├── common │ │ │ │ │ └── config │ │ │ │ │ │ └── rush │ │ │ │ │ │ └── command-line.json │ │ │ │ └── rush.json │ │ │ │ ├── overrideRebuildAsGlobalCommandRepo │ │ │ │ ├── a │ │ │ │ │ └── package.json │ │ │ │ ├── b │ │ │ │ │ └── package.json │ │ │ │ ├── common │ │ │ │ │ └── config │ │ │ │ │ │ └── rush │ │ │ │ │ │ └── command-line.json │ │ │ │ └── rush.json │ │ │ │ ├── overrideRebuildWithSimultaneousProcessesRepo │ │ │ │ ├── a │ │ │ │ │ └── package.json │ │ │ │ ├── b │ │ │ │ │ └── package.json │ │ │ │ ├── common │ │ │ │ │ └── config │ │ │ │ │ │ └── rush │ │ │ │ │ │ └── command-line.json │ │ │ │ └── rush.json │ │ │ │ ├── pluginCommandLineParametersRepo │ │ │ │ ├── common │ │ │ │ │ ├── autoinstallers │ │ │ │ │ │ └── plugins │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── rush-plugins │ │ │ │ │ │ │ └── rush-command-parameters-plugin │ │ │ │ │ │ │ ├── rush-command-parameters-plugin │ │ │ │ │ │ │ └── command-line.json │ │ │ │ │ │ │ └── rush-plugin-manifest.json │ │ │ │ │ └── config │ │ │ │ │ │ └── rush │ │ │ │ │ │ └── rush-plugins.json │ │ │ │ ├── rush-command-parameters-plugin │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── rush-plugin-manifest.json │ │ │ │ └── rush.json │ │ │ │ ├── pluginWithBuildCommandRepo │ │ │ │ ├── a │ │ │ │ │ └── package.json │ │ │ │ ├── b │ │ │ │ │ └── package.json │ │ │ │ ├── common │ │ │ │ │ ├── autoinstallers │ │ │ │ │ │ └── plugins │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── rush-plugins │ │ │ │ │ │ │ └── rush-build-command-plugin │ │ │ │ │ │ │ ├── rush-build-command-plugin │ │ │ │ │ │ │ └── command-line.json │ │ │ │ │ │ │ └── rush-plugin-manifest.json │ │ │ │ │ └── config │ │ │ │ │ │ └── rush │ │ │ │ │ │ └── rush-plugins.json │ │ │ │ ├── rush-build-command-plugin │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── rush-plugin-manifest.json │ │ │ │ └── rush.json │ │ │ │ ├── pluginWithConflictBuildCommandRepo │ │ │ │ ├── a │ │ │ │ │ └── package.json │ │ │ │ ├── b │ │ │ │ │ └── package.json │ │ │ │ ├── common │ │ │ │ │ ├── autoinstallers │ │ │ │ │ │ └── plugins │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── rush-plugins │ │ │ │ │ │ │ └── rush-build-command-plugin │ │ │ │ │ │ │ ├── rush-build-command-plugin │ │ │ │ │ │ │ └── command-line.json │ │ │ │ │ │ │ └── rush-plugin-manifest.json │ │ │ │ │ └── config │ │ │ │ │ │ └── rush │ │ │ │ │ │ ├── command-line.json │ │ │ │ │ │ └── rush-plugins.json │ │ │ │ ├── rush-build-command-plugin │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── rush-plugin-manifest.json │ │ │ │ └── rush.json │ │ │ │ ├── pluginWithConflictRebuildCommandRepo │ │ │ │ ├── a │ │ │ │ │ └── package.json │ │ │ │ ├── b │ │ │ │ │ └── package.json │ │ │ │ ├── common │ │ │ │ │ ├── autoinstallers │ │ │ │ │ │ └── plugins │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── rush-plugins │ │ │ │ │ │ │ └── rush-rebuild-command-plugin │ │ │ │ │ │ │ ├── rush-plugin-manifest.json │ │ │ │ │ │ │ └── rush-rebuild-command-plugin │ │ │ │ │ │ │ └── command-line.json │ │ │ │ │ └── config │ │ │ │ │ │ └── rush │ │ │ │ │ │ ├── command-line.json │ │ │ │ │ │ └── rush-plugins.json │ │ │ │ ├── rush-rebuild-command-plugin │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── rush-plugin-manifest.json │ │ │ │ └── rush.json │ │ │ │ ├── pluginWithRebuildCommandRepo │ │ │ │ ├── a │ │ │ │ │ └── package.json │ │ │ │ ├── b │ │ │ │ │ └── package.json │ │ │ │ ├── common │ │ │ │ │ ├── autoinstallers │ │ │ │ │ │ └── plugins │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── rush-plugins │ │ │ │ │ │ │ └── rush-rebuild-command-plugin │ │ │ │ │ │ │ ├── rush-plugin-manifest.json │ │ │ │ │ │ │ └── rush-rebuild-command-plugin │ │ │ │ │ │ │ └── command-line.json │ │ │ │ │ └── config │ │ │ │ │ │ └── rush │ │ │ │ │ │ └── rush-plugins.json │ │ │ │ ├── rush-rebuild-command-plugin │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── rush-plugin-manifest.json │ │ │ │ └── rush.json │ │ │ │ ├── repo │ │ │ │ ├── common │ │ │ │ │ ├── config │ │ │ │ │ │ └── rush │ │ │ │ │ │ │ ├── command-line.json │ │ │ │ │ │ │ └── experiments.json │ │ │ │ │ └── scripts │ │ │ │ │ │ └── deploy.js │ │ │ │ ├── rush.json │ │ │ │ ├── rushx-not-in-rush-project │ │ │ │ │ ├── build.js │ │ │ │ │ └── package.json │ │ │ │ └── rushx-project │ │ │ │ │ ├── build.js │ │ │ │ │ └── package.json │ │ │ │ ├── rush-mock-flush-telemetry-plugin │ │ │ │ ├── index.ts │ │ │ │ ├── package.json │ │ │ │ └── rush-plugin-manifest.json │ │ │ │ └── tapFlushTelemetryAndRunBuildActionRepo │ │ │ │ ├── a │ │ │ │ └── package.json │ │ │ │ ├── b │ │ │ │ └── package.json │ │ │ │ ├── common │ │ │ │ ├── autoinstallers │ │ │ │ │ └── plugins │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── rush-plugins │ │ │ │ │ │ └── rush-mock-flush-telemetry-plugin │ │ │ │ │ │ └── rush-plugin-manifest.json │ │ │ │ └── config │ │ │ │ │ └── rush │ │ │ │ │ └── rush-plugins.json │ │ │ │ └── rush.json │ │ ├── index.ts │ │ ├── logic │ │ │ ├── ApprovedPackagesChecker.ts │ │ │ ├── Autoinstaller.ts │ │ │ ├── ChangeFiles.ts │ │ │ ├── ChangeManager.ts │ │ │ ├── ChangelogGenerator.ts │ │ │ ├── DependencyAnalyzer.ts │ │ │ ├── DependencySpecifier.ts │ │ │ ├── EventHooksManager.ts │ │ │ ├── Git.ts │ │ │ ├── GitStatusParser.ts │ │ │ ├── InstallManagerFactory.ts │ │ │ ├── InteractiveUpgrader.ts │ │ │ ├── JsonSchemaUrls.ts │ │ │ ├── LinkManagerFactory.ts │ │ │ ├── NodeJsCompatibility.ts │ │ │ ├── PackageJsonUpdater.ts │ │ │ ├── PackageJsonUpdaterTypes.ts │ │ │ ├── PackageLookup.ts │ │ │ ├── PrereleaseToken.ts │ │ │ ├── ProjectChangeAnalyzer.ts │ │ │ ├── ProjectCommandSet.ts │ │ │ ├── ProjectImpactGraphGenerator.ts │ │ │ ├── ProjectWatcher.ts │ │ │ ├── PublishGit.ts │ │ │ ├── PublishUtilities.ts │ │ │ ├── PurgeManager.ts │ │ │ ├── RepoStateFile.ts │ │ │ ├── RushConstants.ts │ │ │ ├── Selection.ts │ │ │ ├── SetupChecks.ts │ │ │ ├── ShrinkwrapFileFactory.ts │ │ │ ├── StandardScriptUpdater.ts │ │ │ ├── Telemetry.ts │ │ │ ├── TempProjectHelper.ts │ │ │ ├── UnlinkManager.ts │ │ │ ├── VersionManager.ts │ │ │ ├── base │ │ │ │ ├── BaseInstallManager.ts │ │ │ │ ├── BaseInstallManagerTypes.ts │ │ │ │ ├── BaseLinkManager.ts │ │ │ │ ├── BasePackage.ts │ │ │ │ ├── BasePackageManagerOptionsConfiguration.ts │ │ │ │ ├── BaseProjectShrinkwrapFile.ts │ │ │ │ ├── BaseShrinkwrapFile.ts │ │ │ │ └── BaseWorkspaceFile.ts │ │ │ ├── buildCache │ │ │ │ ├── CacheEntryId.ts │ │ │ │ ├── FileSystemBuildCacheProvider.ts │ │ │ │ ├── ICloudBuildCacheProvider.ts │ │ │ │ ├── OperationBuildCache.ts │ │ │ │ └── test │ │ │ │ │ ├── CacheEntryId.test.ts │ │ │ │ │ ├── OperationBuildCache.test.ts │ │ │ │ │ └── __snapshots__ │ │ │ │ │ └── CacheEntryId.test.ts.snap │ │ │ ├── cobuild │ │ │ │ ├── CobuildLock.ts │ │ │ │ ├── DisjointSet.ts │ │ │ │ ├── ICobuildLockProvider.ts │ │ │ │ └── test │ │ │ │ │ ├── CobuildLock.test.ts │ │ │ │ │ └── DisjointSet.test.ts │ │ │ ├── deploy │ │ │ │ └── DeployScenarioConfiguration.ts │ │ │ ├── dotenv.ts │ │ │ ├── incremental │ │ │ │ ├── InputsSnapshot.ts │ │ │ │ └── test │ │ │ │ │ ├── InputsSnapshot.test.ts │ │ │ │ │ └── __snapshots__ │ │ │ │ │ └── InputsSnapshot.test.ts.snap │ │ │ ├── installManager │ │ │ │ ├── InstallHelpers.ts │ │ │ │ ├── RushInstallManager.ts │ │ │ │ ├── WorkspaceInstallManager.ts │ │ │ │ └── doBasicInstallAsync.ts │ │ │ ├── npm │ │ │ │ ├── NpmLinkManager.ts │ │ │ │ ├── NpmOptionsConfiguration.ts │ │ │ │ ├── NpmPackage.ts │ │ │ │ └── NpmShrinkwrapFile.ts │ │ │ ├── operations │ │ │ │ ├── AsyncOperationQueue.ts │ │ │ │ ├── BuildPlanPlugin.ts │ │ │ │ ├── CacheableOperationPlugin.ts │ │ │ │ ├── ConsoleTimelinePlugin.ts │ │ │ │ ├── DebugHashesPlugin.ts │ │ │ │ ├── IOperationExecutionResult.ts │ │ │ │ ├── IOperationRunner.ts │ │ │ │ ├── IPCOperationRunner.ts │ │ │ │ ├── IPCOperationRunnerPlugin.ts │ │ │ │ ├── LegacySkipPlugin.ts │ │ │ │ ├── NodeDiagnosticDirPlugin.ts │ │ │ │ ├── NullOperationRunner.ts │ │ │ │ ├── Operation.ts │ │ │ │ ├── OperationError.ts │ │ │ │ ├── OperationExecutionManager.ts │ │ │ │ ├── OperationExecutionRecord.ts │ │ │ │ ├── OperationMetadataManager.ts │ │ │ │ ├── OperationResultSummarizerPlugin.ts │ │ │ │ ├── OperationStateFile.ts │ │ │ │ ├── OperationStatus.ts │ │ │ │ ├── PeriodicCallback.ts │ │ │ │ ├── PhasedOperationPlugin.ts │ │ │ │ ├── PnpmSyncCopyOperationPlugin.ts │ │ │ │ ├── ProjectLogWritable.ts │ │ │ │ ├── ShardedPhaseOperationPlugin.ts │ │ │ │ ├── ShellOperationRunner.ts │ │ │ │ ├── ShellOperationRunnerPlugin.ts │ │ │ │ ├── ValidateOperationsPlugin.ts │ │ │ │ ├── WeightedOperationPlugin.ts │ │ │ │ └── test │ │ │ │ │ ├── AsyncOperationQueue.test.ts │ │ │ │ │ ├── BuildPlanPlugin.test.ts │ │ │ │ │ ├── MockOperationRunner.ts │ │ │ │ │ ├── OperationExecutionManager.test.ts │ │ │ │ │ ├── OperationMetadataManager.test.ts │ │ │ │ │ ├── PhasedOperationPlugin.test.ts │ │ │ │ │ ├── ShellOperationRunner.test.ts │ │ │ │ │ ├── ShellOperationRunnerPlugin.test.ts │ │ │ │ │ └── __snapshots__ │ │ │ │ │ ├── AsyncOperationQueue.test.ts.snap │ │ │ │ │ ├── BuildPlanPlugin.test.ts.snap │ │ │ │ │ ├── OperationExecutionManager.test.ts.snap │ │ │ │ │ ├── OperationMetadataManager.test.ts.snap │ │ │ │ │ ├── PhasedOperationPlugin.test.ts.snap │ │ │ │ │ └── ShellOperationRunnerPlugin.test.ts.snap │ │ │ ├── pnpm │ │ │ │ ├── IPnpmfile.ts │ │ │ │ ├── PnpmLinkManager.ts │ │ │ │ ├── PnpmOptionsConfiguration.ts │ │ │ │ ├── PnpmProjectShrinkwrapFile.ts │ │ │ │ ├── PnpmShrinkWrapFileConverters.ts │ │ │ │ ├── PnpmShrinkwrapFile.ts │ │ │ │ ├── PnpmWorkspaceFile.ts │ │ │ │ ├── PnpmYamlCommon.ts │ │ │ │ ├── PnpmfileConfiguration.ts │ │ │ │ ├── PnpmfileShim.ts │ │ │ │ ├── SubspaceGlobalPnpmfileShim.ts │ │ │ │ ├── SubspacePnpmfileConfiguration.ts │ │ │ │ └── test │ │ │ │ │ ├── PnpmOptionsConfiguration.test.ts │ │ │ │ │ ├── PnpmShrinkwrapConverters.test.ts │ │ │ │ │ ├── PnpmShrinkwrapFile.test.ts │ │ │ │ │ ├── PnpmfileConfiguration.test.ts │ │ │ │ │ ├── jsonFiles │ │ │ │ │ ├── pnpm-config-minimumReleaseAge.json │ │ │ │ │ ├── pnpm-config-neverBuiltDependencies.json │ │ │ │ │ ├── pnpm-config-overrides.json │ │ │ │ │ ├── pnpm-config-packageExtensions.json │ │ │ │ │ └── pnpm-config-unknown.json │ │ │ │ │ ├── repo │ │ │ │ │ ├── apps │ │ │ │ │ │ ├── bar │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── baz │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── common │ │ │ │ │ │ └── config │ │ │ │ │ │ │ └── rush │ │ │ │ │ │ │ └── common-versions.json │ │ │ │ │ ├── rush.json │ │ │ │ │ ├── rush2.json │ │ │ │ │ └── rush3.json │ │ │ │ │ └── yamlFiles │ │ │ │ │ ├── pnpm-lock-v5 │ │ │ │ │ ├── modified.yaml │ │ │ │ │ ├── not-modified.yaml │ │ │ │ │ └── overrides-not-modified.yaml │ │ │ │ │ ├── pnpm-lock-v6 │ │ │ │ │ ├── inconsistent-dep-devDep.yaml │ │ │ │ │ ├── modified.yaml │ │ │ │ │ ├── not-modified.yaml │ │ │ │ │ └── overrides-not-modified.yaml │ │ │ │ │ └── pnpm-lock-v9 │ │ │ │ │ ├── inconsistent-dep-devDep.yaml │ │ │ │ │ ├── modified.yaml │ │ │ │ │ ├── not-modified.yaml │ │ │ │ │ ├── overrides-not-modified.yaml │ │ │ │ │ └── pnpm-lock-v9.yaml │ │ │ ├── policy │ │ │ │ ├── EnvironmentPolicy.ts │ │ │ │ ├── GitEmailPolicy.ts │ │ │ │ ├── PolicyValidator.ts │ │ │ │ └── ShrinkwrapFilePolicy.ts │ │ │ ├── selectors │ │ │ │ ├── GitChangedProjectSelectorParser.ts │ │ │ │ ├── ISelectorParser.ts │ │ │ │ ├── NamedProjectSelectorParser.ts │ │ │ │ ├── PathProjectSelectorParser.ts │ │ │ │ ├── SubspaceSelectorParser.ts │ │ │ │ ├── TagProjectSelectorParser.ts │ │ │ │ ├── VersionPolicyProjectSelectorParser.ts │ │ │ │ └── test │ │ │ │ │ ├── NamedProjectSelectorParser.test.ts │ │ │ │ │ ├── PathProjectSelectorParser.test.ts │ │ │ │ │ ├── SubspaceSelectorParser.test.ts │ │ │ │ │ ├── TagProjectSelectorParser.test.ts │ │ │ │ │ └── VersionPolicyProjectSelectorParser.test.ts │ │ │ ├── setup │ │ │ │ ├── ArtifactoryConfiguration.ts │ │ │ │ ├── KeyboardLoop.ts │ │ │ │ ├── SetupPackageRegistry.ts │ │ │ │ └── TerminalInput.ts │ │ │ ├── test │ │ │ │ ├── BaseInstallManager.test.ts │ │ │ │ ├── ChangeFiles.test.ts │ │ │ │ ├── ChangeManager.test.ts │ │ │ │ ├── ChangelogGenerator.test.ts │ │ │ │ ├── DependencyAnalyzer.test.ts │ │ │ │ ├── DependencyAnalyzerTestRepos │ │ │ │ │ ├── allowed-alternatives │ │ │ │ │ │ ├── a │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── b │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ └── config │ │ │ │ │ │ │ │ └── rush │ │ │ │ │ │ │ │ └── common-versions.json │ │ │ │ │ │ └── rush.json │ │ │ │ │ ├── no-allowed-alternatives-with-inconsistent-versions │ │ │ │ │ │ ├── a │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── b │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ └── rush.json │ │ │ │ │ └── no-allowed-alternatives │ │ │ │ │ │ ├── a │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── b │ │ │ │ │ │ └── package.json │ │ │ │ │ │ └── rush.json │ │ │ │ ├── DependencySpecifier.test.ts │ │ │ │ ├── Git.test.ts │ │ │ │ ├── InstallHelpers.test.ts │ │ │ │ ├── ProjectChangeAnalyzer.test.ts │ │ │ │ ├── ProjectImpactGraphGenerator.test.ts │ │ │ │ ├── PublishGit.test.ts │ │ │ │ ├── PublishUtilities.test.ts │ │ │ │ ├── Selection.test.ts │ │ │ │ ├── ShrinkwrapFile.test.ts │ │ │ │ ├── Telemetry.test.ts │ │ │ │ ├── VersionManager.test.ts │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── InstallHelpers.test.ts.snap │ │ │ │ │ ├── ProjectImpactGraphGenerator.test.ts.snap │ │ │ │ │ └── ShrinkwrapFile.test.ts.snap │ │ │ │ ├── categorizedChanges │ │ │ │ │ ├── @ms │ │ │ │ │ │ ├── a │ │ │ │ │ │ │ └── changeA.json │ │ │ │ │ │ └── b │ │ │ │ │ │ │ └── changeB.json │ │ │ │ │ └── changeC.json │ │ │ │ ├── customShellCommandinBulkOverrideScriptsRepo │ │ │ │ │ ├── a │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── b │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── common │ │ │ │ │ │ └── config │ │ │ │ │ │ │ └── rush │ │ │ │ │ │ │ └── command-line.json │ │ │ │ │ └── rush.json │ │ │ │ ├── customShellCommandinBulkRepo │ │ │ │ │ ├── a │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── b │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── common │ │ │ │ │ │ └── config │ │ │ │ │ │ │ └── rush │ │ │ │ │ │ │ └── command-line.json │ │ │ │ │ └── rush.json │ │ │ │ ├── cyclicDeps │ │ │ │ │ └── change.json │ │ │ │ ├── cyclicDepsExplicit │ │ │ │ │ └── change.json │ │ │ │ ├── exampleChangelog │ │ │ │ │ └── CHANGELOG.json │ │ │ │ ├── exampleInvalidChangelog │ │ │ │ │ ├── emptyFile │ │ │ │ │ │ └── CHANGELOG.json │ │ │ │ │ └── emptyObject │ │ │ │ │ │ └── CHANGELOG.json │ │ │ │ ├── explicitVersionChange │ │ │ │ │ └── change1.json │ │ │ │ ├── hotfixWithPatchChanges │ │ │ │ │ ├── change1.json │ │ │ │ │ ├── change2.json │ │ │ │ │ └── change3.json │ │ │ │ ├── ignoreCompatibilityDb │ │ │ │ │ ├── rush1.json │ │ │ │ │ ├── rush2.json │ │ │ │ │ └── rush3.json │ │ │ │ ├── leafChange │ │ │ │ │ └── change1.json │ │ │ │ ├── lockstepRepo │ │ │ │ │ ├── a │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── b │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── common │ │ │ │ │ │ └── config │ │ │ │ │ │ │ └── rush │ │ │ │ │ │ │ └── version-policies.json │ │ │ │ │ └── rush.json │ │ │ │ ├── lockstepWithoutNextBump │ │ │ │ │ └── change1.json │ │ │ │ ├── multipleChangeFiles │ │ │ │ │ ├── a.json │ │ │ │ │ ├── b.json │ │ │ │ │ └── c.json │ │ │ │ ├── multipleChanges │ │ │ │ │ ├── change1.json │ │ │ │ │ ├── change2.json │ │ │ │ │ └── change3.json │ │ │ │ ├── multipleHotfixChanges │ │ │ │ │ ├── change1.json │ │ │ │ │ ├── change2.json │ │ │ │ │ └── change3.json │ │ │ │ ├── noChange │ │ │ │ │ └── README.md │ │ │ │ ├── orderedChanges │ │ │ │ │ ├── change1.json │ │ │ │ │ └── change2.json │ │ │ │ ├── packages │ │ │ │ │ ├── a │ │ │ │ │ │ ├── CHANGELOG.json │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── b │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── c │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── common │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ └── rush │ │ │ │ │ │ │ │ └── version-policies.json │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── cyclic-dep-1 │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── cyclic-dep-2 │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── cyclic-dep-explicit-1 │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── cyclic-dep-explicit-2 │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── d │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── e │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── f │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── g │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── h │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── i │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── j │ │ │ │ │ │ └── package.json │ │ │ │ │ └── rush.json │ │ │ │ ├── parameterIgnoringRepo │ │ │ │ │ ├── a │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ └── rush-project.json │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── b │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ └── rush-project.json │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── common │ │ │ │ │ │ └── config │ │ │ │ │ │ │ └── rush │ │ │ │ │ │ │ └── command-line.json │ │ │ │ │ └── rush.json │ │ │ │ ├── pnpmConfig │ │ │ │ │ ├── common │ │ │ │ │ │ └── config │ │ │ │ │ │ │ └── rush │ │ │ │ │ │ │ └── pnpm-config.json │ │ │ │ │ └── rush.json │ │ │ │ ├── repo │ │ │ │ │ ├── a │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── b │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── c │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── changes │ │ │ │ │ │ ├── a.json │ │ │ │ │ │ ├── b.json │ │ │ │ │ │ ├── c.json │ │ │ │ │ │ ├── d.json │ │ │ │ │ │ └── h.json │ │ │ │ │ ├── common │ │ │ │ │ │ └── config │ │ │ │ │ │ │ └── rush │ │ │ │ │ │ │ └── version-policies.json │ │ │ │ │ ├── d │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── e │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── f │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── g │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── h │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── i │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── j │ │ │ │ │ │ └── package.json │ │ │ │ │ └── rush.json │ │ │ │ ├── rootHotfixChange │ │ │ │ │ └── change1.json │ │ │ │ ├── rootMajorChange │ │ │ │ │ └── change1.json │ │ │ │ ├── rootPatchChange │ │ │ │ │ └── change1.json │ │ │ │ ├── shrinkwrapFile │ │ │ │ │ ├── non-workspace-pnpm-lock-v5.3.yaml │ │ │ │ │ ├── non-workspace-pnpm-lock-v5.yaml │ │ │ │ │ ├── non-workspace-pnpm-lock-v6.1.yaml │ │ │ │ │ ├── non-workspace-pnpm-lock-v9.yaml │ │ │ │ │ ├── npm-shrinkwrap.json │ │ │ │ │ ├── workspace-pnpm-lock-v5.3.yaml │ │ │ │ │ ├── workspace-pnpm-lock-v6.1.yaml │ │ │ │ │ └── workspace-pnpm-lock-v9.yaml │ │ │ │ ├── telemetry │ │ │ │ │ ├── telemetryEnabled.json │ │ │ │ │ └── telemetryNotEnabled.json │ │ │ │ ├── verifyChanges │ │ │ │ │ └── changes.json │ │ │ │ ├── workspacePackages │ │ │ │ │ ├── .mergequeueignore │ │ │ │ │ ├── a │ │ │ │ │ │ ├── CHANGELOG.json │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── b │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── c │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── common │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ └── rush │ │ │ │ │ │ │ │ └── version-policies.json │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── cyclic-dep-1 │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── cyclic-dep-2 │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── cyclic-dep-explicit-1 │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── cyclic-dep-explicit-2 │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── d │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── e │ │ │ │ │ │ ├── .mergequeueignore │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── f │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── g │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── h │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── i │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── j │ │ │ │ │ │ └── package.json │ │ │ │ │ └── rush.json │ │ │ │ └── workspaceRepo │ │ │ │ │ ├── a │ │ │ │ │ └── package.json │ │ │ │ │ ├── b │ │ │ │ │ └── package.json │ │ │ │ │ ├── c │ │ │ │ │ └── package.json │ │ │ │ │ ├── changes │ │ │ │ │ ├── a.json │ │ │ │ │ ├── b.json │ │ │ │ │ ├── c.json │ │ │ │ │ ├── d.json │ │ │ │ │ └── h.json │ │ │ │ │ ├── common │ │ │ │ │ └── config │ │ │ │ │ │ └── rush │ │ │ │ │ │ ├── command-line.json │ │ │ │ │ │ └── version-policies.json │ │ │ │ │ ├── d │ │ │ │ │ └── package.json │ │ │ │ │ ├── e │ │ │ │ │ └── package.json │ │ │ │ │ ├── f │ │ │ │ │ └── package.json │ │ │ │ │ ├── g │ │ │ │ │ └── package.json │ │ │ │ │ ├── h │ │ │ │ │ └── package.json │ │ │ │ │ ├── i │ │ │ │ │ └── package.json │ │ │ │ │ ├── j │ │ │ │ │ └── package.json │ │ │ │ │ └── rush.json │ │ │ ├── versionMismatch │ │ │ │ ├── VersionMismatchFinder.ts │ │ │ │ ├── VersionMismatchFinderCommonVersions.ts │ │ │ │ ├── VersionMismatchFinderEntity.ts │ │ │ │ └── VersionMismatchFinderProject.ts │ │ │ └── yarn │ │ │ │ ├── YarnOptionsConfiguration.ts │ │ │ │ └── YarnShrinkwrapFile.ts │ │ ├── npm-check-typings.d.ts │ │ ├── pluginFramework │ │ │ ├── IRushPlugin.ts │ │ │ ├── PhasedCommandHooks.ts │ │ │ ├── PluginLoader │ │ │ │ ├── AutoinstallerPluginLoader.ts │ │ │ │ ├── BuiltInPluginLoader.ts │ │ │ │ ├── PluginLoaderBase.ts │ │ │ │ └── RushSdk.ts │ │ │ ├── PluginManager.ts │ │ │ ├── RushLifeCycle.ts │ │ │ ├── RushSession.ts │ │ │ └── logging │ │ │ │ └── Logger.ts │ │ ├── schemas │ │ │ ├── anything.schema.json │ │ │ ├── approved-packages.schema.json │ │ │ ├── artifactory.schema.json │ │ │ ├── build-cache.schema.json │ │ │ ├── change-file.schema.json │ │ │ ├── changelog.schema.json │ │ │ ├── cobuild.schema.json │ │ │ ├── command-line.schema.json │ │ │ ├── common-versions.schema.json │ │ │ ├── custom-tips.schema.json │ │ │ ├── deploy-scenario.schema.json │ │ │ ├── experiments.schema.json │ │ │ ├── pnpm-config.schema.json │ │ │ ├── repo-state.schema.json │ │ │ ├── rush-alerts.schema.json │ │ │ ├── rush-hotlink-state.schema.json │ │ │ ├── rush-plugin-manifest.schema.json │ │ │ ├── rush-plugins.schema.json │ │ │ ├── rush-project.schema.json │ │ │ ├── rush-user-settings.schema.json │ │ │ ├── rush.schema.json │ │ │ ├── subspaces.schema.json │ │ │ └── version-policies.schema.json │ │ ├── scripts │ │ │ ├── install-run-rush-pnpm.ts │ │ │ ├── install-run-rush.ts │ │ │ ├── install-run-rushx.ts │ │ │ └── install-run.ts │ │ ├── start-pnpm.ts │ │ ├── start.ts │ │ ├── startx.ts │ │ └── utilities │ │ │ ├── AsyncRecycler.ts │ │ │ ├── CollatedTerminalProvider.ts │ │ │ ├── HotlinkManager.ts │ │ │ ├── InteractiveUpgradeUI.ts │ │ │ ├── Npm.ts │ │ │ ├── NullTerminalProvider.ts │ │ │ ├── OverlappingPathAnalyzer.ts │ │ │ ├── PathConstants.ts │ │ │ ├── PnpmSyncUtilities.ts │ │ │ ├── RushAlerts.ts │ │ │ ├── SetRushLibPath.ts │ │ │ ├── Stopwatch.ts │ │ │ ├── TarExecutable.ts │ │ │ ├── Utilities.ts │ │ │ ├── WebClient.ts │ │ │ ├── actionNameConstants.ts │ │ │ ├── npmrcUtilities.ts │ │ │ ├── objectUtilities.ts │ │ │ ├── performance.ts │ │ │ ├── prompts │ │ │ └── SearchListPrompt.ts │ │ │ ├── templateUtilities.ts │ │ │ └── test │ │ │ ├── Npm.test.ts │ │ │ ├── OverlappingPathAnalyzer.test.ts │ │ │ ├── Stopwatch.test.ts │ │ │ ├── Utilities.test.ts │ │ │ ├── WebClient.test.ts │ │ │ ├── __snapshots__ │ │ │ ├── Utilities.test.ts.snap │ │ │ ├── WebClient.test.ts.snap │ │ │ └── npmrcUtilities.test.ts.snap │ │ │ ├── global-teardown.ts │ │ │ ├── npmrcUtilities.test.ts │ │ │ └── objectUtilities.test.ts │ ├── tsconfig.json │ └── webpack.config.js ├── rush-sdk │ ├── .npmignore │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── api-extractor.json │ │ ├── heft.json │ │ ├── jest.config.json │ │ ├── rig.json │ │ ├── rush-project.json │ │ └── typescript.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── generate-stubs.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ ├── loader.ts │ │ └── test │ │ │ ├── __snapshots__ │ │ │ └── script.test.ts.snap │ │ │ ├── fixture │ │ │ └── mock-rush-lib.ts │ │ │ ├── sandbox │ │ │ ├── mock-package │ │ │ │ └── package.json │ │ │ └── rush.json │ │ │ └── script.test.ts │ ├── tsconfig.json │ └── webpack.config.js ├── rush-themed-ui │ ├── .npmignore │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── api-extractor.json │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── components │ │ │ ├── Button │ │ │ │ ├── index.tsx │ │ │ │ └── styles.scss │ │ │ ├── Checkbox │ │ │ │ ├── index.tsx │ │ │ │ └── styles.scss │ │ │ ├── Input │ │ │ │ ├── index.tsx │ │ │ │ └── styles.scss │ │ │ ├── ScrollArea │ │ │ │ ├── index.tsx │ │ │ │ └── styles.scss │ │ │ ├── Tabs │ │ │ │ ├── index.tsx │ │ │ │ └── styles.scss │ │ │ └── Text │ │ │ │ ├── index.tsx │ │ │ │ └── styles.scss │ │ ├── index.ts │ │ └── styles │ │ │ ├── _base.scss │ │ │ └── _colors.scss │ ├── tsconfig.json │ ├── tsconfig.type.json │ └── webpack.config.js ├── rushell │ ├── .npmignore │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── api-extractor.json │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── AstNode.ts │ │ ├── ParseError.ts │ │ ├── Parser.ts │ │ ├── Rushell.ts │ │ ├── TextRange.ts │ │ ├── Tokenizer.ts │ │ ├── index.ts │ │ └── test │ │ │ ├── Parser.test.ts │ │ │ ├── Rushell.test.ts │ │ │ ├── TextRange.test.ts │ │ │ ├── Tokenizer.test.ts │ │ │ └── __snapshots__ │ │ │ ├── Parser.test.ts.snap │ │ │ ├── TextRange.test.ts.snap │ │ │ └── Tokenizer.test.ts.snap │ └── tsconfig.json ├── stream-collator │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── api-extractor.json │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── CollatedTerminal.ts │ │ ├── CollatedWriter.ts │ │ ├── StreamCollator.ts │ │ ├── index.ts │ │ └── test │ │ │ └── StreamCollator.test.ts │ └── tsconfig.json ├── terminal │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── api-extractor.json │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── AnsiEscape.ts │ │ ├── CallbackWritable.ts │ │ ├── Colorize.ts │ │ ├── ConsoleTerminalProvider.ts │ │ ├── DiscardStdoutTransform.ts │ │ ├── IProblemCollector.ts │ │ ├── ITerminal.ts │ │ ├── ITerminalChunk.ts │ │ ├── ITerminalProvider.ts │ │ ├── MockWritable.ts │ │ ├── NoOpTerminalProvider.ts │ │ ├── NormalizeNewlinesTextRewriter.ts │ │ ├── PrefixProxyTerminalProvider.ts │ │ ├── PrintUtilities.ts │ │ ├── ProblemCollector.ts │ │ ├── RemoveColorsTextRewriter.ts │ │ ├── SplitterTransform.ts │ │ ├── StdioLineTransform.ts │ │ ├── StdioSummarizer.ts │ │ ├── StdioWritable.ts │ │ ├── StringBufferTerminalProvider.ts │ │ ├── Terminal.ts │ │ ├── TerminalStreamWritable.ts │ │ ├── TerminalTransform.ts │ │ ├── TerminalWritable.ts │ │ ├── TextRewriter.ts │ │ ├── TextRewriterTransform.ts │ │ ├── index.ts │ │ └── test │ │ │ ├── AnsiEscape.test.ts │ │ │ ├── Colorize.test.ts │ │ │ ├── NormalizeNewlinesTextRewriter.test.ts │ │ │ ├── PrefixProxyTerminalProvider.test.ts │ │ │ ├── PrintUtilities.test.ts │ │ │ ├── ProblemCollector.test.ts │ │ │ ├── RemoveColorsTextRewriter.test.ts │ │ │ ├── SplitterTransform.test.ts │ │ │ ├── StdioLineTransform.test.ts │ │ │ ├── StdioSummarizer.test.ts │ │ │ ├── Terminal.test.ts │ │ │ ├── TerminalStreamWritable.test.ts │ │ │ ├── TextRewriterTransform.test.ts │ │ │ ├── __snapshots__ │ │ │ ├── Colorize.test.ts.snap │ │ │ ├── PrefixProxyTerminalProvider.test.ts.snap │ │ │ ├── PrintUtilities.test.ts.snap │ │ │ ├── RemoveColorsTextRewriter.test.ts.snap │ │ │ ├── SplitterTransform.test.ts.snap │ │ │ ├── StdioLineTransform.test.ts.snap │ │ │ ├── StdioSummarizer.test.ts.snap │ │ │ ├── Terminal.test.ts.snap │ │ │ ├── TerminalStreamWritable.test.ts.snap │ │ │ ├── TerminalWritable.test.ts.snap │ │ │ └── TextRewriterTransform.test.ts.snap │ │ │ ├── createColorGrid.ts │ │ │ └── write-colors.ts │ └── tsconfig.json ├── tree-pattern │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── api-extractor.json │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── TreePattern.test.ts │ │ ├── TreePattern.ts │ │ └── index.ts │ └── tsconfig.json ├── ts-command-line │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── api-extractor.json │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── CommandLineHelper.ts │ │ ├── Constants.ts │ │ ├── TypeUuidLite.ts │ │ ├── escapeSprintf.ts │ │ ├── index.ts │ │ ├── parameters │ │ │ ├── BaseClasses.ts │ │ │ ├── CommandLineChoiceListParameter.ts │ │ │ ├── CommandLineChoiceParameter.ts │ │ │ ├── CommandLineDefinition.ts │ │ │ ├── CommandLineFlagParameter.ts │ │ │ ├── CommandLineIntegerListParameter.ts │ │ │ ├── CommandLineIntegerParameter.ts │ │ │ ├── CommandLineRemainder.ts │ │ │ ├── CommandLineStringListParameter.ts │ │ │ ├── CommandLineStringParameter.ts │ │ │ └── EnvironmentVariableParser.ts │ │ ├── providers │ │ │ ├── AliasCommandLineAction.ts │ │ │ ├── CommandLineAction.ts │ │ │ ├── CommandLineParameterProvider.ts │ │ │ ├── CommandLineParser.ts │ │ │ ├── CommandLineParserExitError.ts │ │ │ ├── DynamicCommandLineAction.ts │ │ │ ├── DynamicCommandLineParser.ts │ │ │ ├── ScopedCommandLineAction.ts │ │ │ └── TabCompletionAction.ts │ │ └── test │ │ │ ├── ActionlessParser.test.ts │ │ │ ├── AliasedCommandLineAction.test.ts │ │ │ ├── AmbiguousCommandLineParser.test.ts │ │ │ ├── CommandLineParameter.test.ts │ │ │ ├── CommandLineParser.test.ts │ │ │ ├── CommandLineRemainder.test.ts │ │ │ ├── ConflictingCommandLineParser.test.ts │ │ │ ├── DynamicCommandLineParser.test.ts │ │ │ ├── EndToEndTest.test.ts │ │ │ ├── ScopedCommandLineAction.test.ts │ │ │ ├── TabCompleteAction.test.ts │ │ │ ├── __snapshots__ │ │ │ ├── ActionlessParser.test.ts.snap │ │ │ ├── AliasedCommandLineAction.test.ts.snap │ │ │ ├── AmbiguousCommandLineParser.test.ts.snap │ │ │ ├── CommandLineParameter.test.ts.snap │ │ │ ├── CommandLineParser.test.ts.snap │ │ │ ├── CommandLineRemainder.test.ts.snap │ │ │ ├── ConflictingCommandLineParser.test.ts.snap │ │ │ ├── DynamicCommandLineParser.test.ts.snap │ │ │ ├── EndToEndTest.test.ts.snap │ │ │ ├── ScopedCommandLineAction.test.ts.snap │ │ │ └── TabCompleteAction.test.ts.snap │ │ │ ├── helpTestUtilities.ts │ │ │ └── test-cli │ │ │ ├── BusinessLogic.ts │ │ │ ├── PushAction.ts │ │ │ ├── RunAction.ts │ │ │ ├── WidgetCommandLine.ts │ │ │ └── start.ts │ └── tsconfig.json ├── typings-generator │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── api-extractor.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── StringValuesTypingsGenerator.ts │ │ ├── TypingsGenerator.ts │ │ ├── index.ts │ │ └── test │ │ │ ├── StringValuesTypingsGenerator.test.ts │ │ │ └── __snapshots__ │ │ │ └── StringValuesTypingsGenerator.test.ts.snap │ └── tsconfig.json └── worker-pool │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ ├── api-extractor.json │ ├── jest.config.json │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ ├── WorkerPool.ts │ └── index.ts │ └── tsconfig.json ├── repo-scripts ├── doc-plugin-rush-stack │ ├── .vscode │ │ └── launch.json │ ├── config │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── RushStackFeature.ts │ │ └── index.ts │ └── tsconfig.json ├── generate-api-docs │ ├── .vscode │ │ └── launch.json │ ├── api-documenter.json │ ├── config │ │ └── rush-project.json │ ├── generate-api-docs.cmd │ └── package.json ├── repo-toolbox │ ├── config │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── repo-toolbox.cmd │ ├── src │ │ ├── cli │ │ │ ├── ToolboxCommandLine.ts │ │ │ └── actions │ │ │ │ ├── BumpDecoupledLocalDependencies.ts │ │ │ │ ├── CollectJsonSchemasAction.ts │ │ │ │ ├── ReadmeAction.ts │ │ │ │ └── RecordVersionsAction.ts │ │ └── start.ts │ └── tsconfig.json └── tombstone │ ├── README.md │ ├── package.json │ └── postinstall.js ├── rigs ├── decoupled-local-node-rig │ ├── README.md │ ├── package.json │ └── profiles │ │ └── default │ │ ├── config │ │ ├── api-extractor-task.json │ │ ├── heft.json │ │ ├── jest.config.json │ │ ├── rush-project.json │ │ └── typescript.json │ │ ├── includes │ │ └── eslint │ │ │ └── flat │ │ │ ├── mixins │ │ │ ├── friendly-locals.js │ │ │ ├── packlets.js │ │ │ ├── react.js │ │ │ └── tsdoc.js │ │ │ ├── patch │ │ │ └── eslint-bulk-suppressions.js │ │ │ └── profile │ │ │ ├── _common.js │ │ │ ├── node-trusted-tool.js │ │ │ ├── node.js │ │ │ └── web-app.js │ │ └── tsconfig-base.json ├── heft-node-rig │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── package.json │ └── profiles │ │ └── default │ │ ├── config │ │ ├── api-extractor-task.json │ │ ├── heft.json │ │ ├── jest.config.json │ │ ├── rush-project.json │ │ └── typescript.json │ │ ├── includes │ │ └── eslint │ │ │ ├── flat │ │ │ ├── mixins │ │ │ │ ├── friendly-locals.js │ │ │ │ ├── packlets.js │ │ │ │ ├── react.js │ │ │ │ └── tsdoc.js │ │ │ ├── patch │ │ │ │ └── eslint-bulk-suppressions.js │ │ │ └── profile │ │ │ │ ├── node-trusted-tool.js │ │ │ │ └── node.js │ │ │ ├── mixins │ │ │ ├── friendly-locals.js │ │ │ ├── packlets.js │ │ │ ├── react.js │ │ │ └── tsdoc.js │ │ │ ├── patch │ │ │ ├── custom-config-package-names.js │ │ │ ├── eslint-bulk-suppressions.js │ │ │ └── modern-module-resolution.js │ │ │ └── profile │ │ │ ├── node-trusted-tool.js │ │ │ └── node.js │ │ └── tsconfig-base.json ├── heft-vscode-extension-rig │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── package.json │ └── profiles │ │ └── default │ │ ├── config │ │ ├── api-extractor-task.json │ │ ├── heft.json │ │ ├── jest.config.json │ │ ├── rush-project.json │ │ └── typescript.json │ │ ├── includes │ │ └── eslint │ │ │ └── flat │ │ │ ├── mixins │ │ │ ├── friendly-locals.js │ │ │ ├── packlets.js │ │ │ └── tsdoc.js │ │ │ ├── patch │ │ │ └── eslint-bulk-suppressions.js │ │ │ └── profile │ │ │ ├── node-trusted-tool.js │ │ │ └── node.js │ │ ├── tsconfig-base.json │ │ └── webpack.config.base.js ├── heft-web-rig │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── profiles │ │ ├── app │ │ │ ├── config │ │ │ │ ├── heft.json │ │ │ │ ├── jest.config.json │ │ │ │ ├── rush-project.json │ │ │ │ ├── sass.json │ │ │ │ └── typescript.json │ │ │ ├── includes │ │ │ │ └── eslint │ │ │ │ │ ├── flat │ │ │ │ │ ├── mixins │ │ │ │ │ │ ├── friendly-locals.js │ │ │ │ │ │ ├── packlets.js │ │ │ │ │ │ ├── react.js │ │ │ │ │ │ └── tsdoc.js │ │ │ │ │ ├── patch │ │ │ │ │ │ └── eslint-bulk-suppressions.js │ │ │ │ │ └── profile │ │ │ │ │ │ └── web-app.js │ │ │ │ │ ├── mixins │ │ │ │ │ ├── friendly-locals.js │ │ │ │ │ ├── packlets.js │ │ │ │ │ ├── react.js │ │ │ │ │ └── tsdoc.js │ │ │ │ │ ├── patch │ │ │ │ │ ├── custom-config-package-names.js │ │ │ │ │ ├── eslint-bulk-suppressions.js │ │ │ │ │ └── modern-module-resolution.js │ │ │ │ │ └── profile │ │ │ │ │ └── web-app.js │ │ │ ├── tsconfig-base.json │ │ │ └── webpack-base.config.js │ │ └── library │ │ │ ├── config │ │ │ ├── api-extractor-task.json │ │ │ ├── heft.json │ │ │ ├── jest.config.json │ │ │ ├── rush-project.json │ │ │ ├── sass.json │ │ │ └── typescript.json │ │ │ ├── includes │ │ │ └── eslint │ │ │ │ ├── flat │ │ │ │ ├── mixins │ │ │ │ │ ├── friendly-locals.js │ │ │ │ │ ├── packlets.js │ │ │ │ │ ├── react.js │ │ │ │ │ └── tsdoc.js │ │ │ │ ├── patch │ │ │ │ │ └── eslint-bulk-suppressions.js │ │ │ │ └── profile │ │ │ │ │ └── web-app.js │ │ │ │ ├── mixins │ │ │ │ ├── friendly-locals.js │ │ │ │ ├── packlets.js │ │ │ │ ├── react.js │ │ │ │ └── tsdoc.js │ │ │ │ ├── patch │ │ │ │ ├── custom-config-package-names.js │ │ │ │ ├── eslint-bulk-suppressions.js │ │ │ │ └── modern-module-resolution.js │ │ │ │ └── profile │ │ │ │ └── web-app.js │ │ │ ├── tsconfig-base.json │ │ │ └── webpack-base.config.js │ └── shared │ │ └── webpack-base.config.js ├── local-node-rig │ ├── README.md │ ├── package.json │ └── profiles │ │ └── default │ │ ├── config │ │ ├── api-extractor-task.json │ │ ├── heft.json │ │ ├── jest.config.json │ │ ├── rush-project.json │ │ └── typescript.json │ │ ├── includes │ │ └── eslint │ │ │ └── flat │ │ │ ├── mixins │ │ │ ├── friendly-locals.js │ │ │ ├── packlets.js │ │ │ ├── react.js │ │ │ └── tsdoc.js │ │ │ ├── patch │ │ │ └── eslint-bulk-suppressions.js │ │ │ └── profile │ │ │ ├── node-trusted-tool.js │ │ │ └── node.js │ │ └── tsconfig-base.json └── local-web-rig │ ├── README.md │ ├── package.json │ └── profiles │ ├── app │ ├── config │ │ ├── api-extractor-task.json │ │ ├── heft.json │ │ ├── jest.config.json │ │ ├── rush-project.json │ │ └── typescript.json │ ├── includes │ │ └── eslint │ │ │ └── flat │ │ │ ├── mixins │ │ │ ├── friendly-locals.js │ │ │ ├── packlets.js │ │ │ ├── react.js │ │ │ └── tsdoc.js │ │ │ ├── patch │ │ │ └── eslint-bulk-suppressions.js │ │ │ └── profile │ │ │ └── web-app.js │ ├── tsconfig-base.json │ └── webpack-base.config.js │ └── library │ ├── config │ ├── api-extractor-task.json │ ├── heft.json │ ├── jest.config.json │ ├── rush-project.json │ └── typescript.json │ ├── includes │ └── eslint │ │ └── flat │ │ ├── mixins │ │ ├── friendly-locals.js │ │ ├── packlets.js │ │ ├── react.js │ │ └── tsdoc.js │ │ ├── patch │ │ └── eslint-bulk-suppressions.js │ │ └── profile │ │ └── web-app.js │ ├── tsconfig-base.json │ └── webpack-base.config.js ├── rush-plugins ├── rush-amazon-s3-build-cache-plugin │ ├── .npmignore │ ├── .vscode │ │ └── launch.json │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── api-extractor.json │ │ ├── heft.json │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── rush-plugin-manifest.json │ ├── src │ │ ├── AmazonS3BuildCacheProvider.ts │ │ ├── AmazonS3Client.ts │ │ ├── AmazonS3Credentials.ts │ │ ├── RushAmazonS3BuildCachePlugin.ts │ │ ├── index.ts │ │ ├── schemas │ │ │ └── amazon-s3-config.schema.json │ │ └── test │ │ │ ├── AmazonS3BuildCacheProvider.test.ts │ │ │ ├── AmazonS3Client.test.ts │ │ │ ├── AmazonS3Credentials.test.ts │ │ │ └── __snapshots__ │ │ │ ├── AmazonS3BuildCacheProvider.test.ts.snap │ │ │ └── AmazonS3Client.test.ts.snap │ └── tsconfig.json ├── rush-azure-storage-build-cache-plugin │ ├── .npmignore │ ├── .vscode │ │ └── launch.json │ ├── LICENSE │ ├── config │ │ ├── api-extractor.json │ │ ├── heft.json │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── rush-plugin-manifest.json │ ├── src │ │ ├── AdoCodespacesAuthCredential.ts │ │ ├── AzureAuthenticationBase.ts │ │ ├── AzureStorageAuthentication.ts │ │ ├── AzureStorageBuildCacheProvider.ts │ │ ├── RushAzureInteractiveAuthPlugin.ts │ │ ├── RushAzureStorageBuildCachePlugin.ts │ │ ├── index.ts │ │ ├── schemas │ │ │ ├── azure-blob-storage-config.schema.json │ │ │ └── azure-interactive-auth.schema.json │ │ └── test │ │ │ ├── AzureStorageBuildCacheProvider.test.ts │ │ │ └── __snapshots__ │ │ │ └── AzureStorageBuildCacheProvider.test.ts.snap │ └── tsconfig.json ├── rush-bridge-cache-plugin │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── heft.json │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── rush-plugin-manifest.json │ ├── src │ │ ├── BridgeCachePlugin.ts │ │ ├── index.ts │ │ └── schemas │ │ │ └── bridge-cache-config.schema.json │ └── tsconfig.json ├── rush-buildxl-graph-plugin │ ├── .npmignore │ ├── LICENSE │ ├── config │ │ ├── api-extractor.json │ │ ├── heft.json │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── rush-plugin-manifest.json │ ├── src │ │ ├── DropBuildGraphPlugin.ts │ │ ├── GraphProcessor.ts │ │ ├── debugGraphFiltering.ts │ │ ├── dropGraph.ts │ │ ├── examples │ │ │ ├── debug-graph.json │ │ │ └── graph.json │ │ ├── index.ts │ │ ├── schemas │ │ │ └── rush-buildxl-graph-plugin.schema.json │ │ └── test │ │ │ ├── GraphProcessor.test.ts │ │ │ └── __snapshots__ │ │ │ └── GraphProcessor.test.ts.snap │ └── tsconfig.json ├── rush-http-build-cache-plugin │ ├── .npmignore │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── heft.json │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── rush-plugin-manifest.json │ ├── src │ │ ├── HttpBuildCacheProvider.ts │ │ ├── RushHttpBuildCachePlugin.ts │ │ ├── index.ts │ │ ├── schemas │ │ │ └── http-config.schema.json │ │ └── test │ │ │ └── HttpBuildCacheProvider.test.ts │ └── tsconfig.json ├── rush-litewatch-plugin │ ├── .npmignore │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── WatchManager.ts │ │ ├── WatchProject.ts │ │ ├── index.ts │ │ ├── start.ts │ │ └── test │ │ │ └── WatchManager.test.ts │ └── tsconfig.json ├── rush-mcp-docs-plugin │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── config │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── rush-mcp-plugin.json │ ├── src │ │ ├── DocsPlugin.ts │ │ ├── DocsTool.ts │ │ ├── index.ts │ │ └── rush-doc-fragment.mock.json │ └── tsconfig.json ├── rush-redis-cobuild-plugin │ ├── .npmignore │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── api-extractor.json │ │ ├── heft.json │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── rush-plugin-manifest.json │ ├── src │ │ ├── RedisCobuildLockProvider.ts │ │ ├── RushRedisCobuildPlugin.ts │ │ ├── index.ts │ │ ├── schemas │ │ │ └── redis-config.schema.json │ │ └── test │ │ │ ├── RedisCobuildLockProvider.test.ts │ │ │ └── __snapshots__ │ │ │ └── RedisCobuildLockProvider.test.ts.snap │ └── tsconfig.json ├── rush-resolver-cache-plugin │ ├── .npmignore │ ├── LICENSE │ ├── README.md │ ├── config │ │ ├── api-extractor.json │ │ ├── jest.config.json │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── rush-plugin-manifest.json │ ├── src │ │ ├── afterInstallAsync.ts │ │ ├── computeResolverCacheFromLockfileAsync.ts │ │ ├── externals.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ ├── test │ │ │ ├── __snapshots__ │ │ │ │ ├── computeResolverCacheFromLockfileAsync.test.ts.snap │ │ │ │ └── helpers.test.ts.snap │ │ │ ├── computeResolverCacheFromLockfileAsync.test.ts │ │ │ └── helpers.test.ts │ │ └── types.ts │ ├── test-collateral │ │ ├── build-tests-subspace.yaml │ │ ├── bundled-dependencies.yaml │ │ └── default-subspace.yaml │ └── tsconfig.json └── rush-serve-plugin │ ├── .npmignore │ ├── LICENSE │ ├── README.md │ ├── config │ ├── api-extractor.json │ ├── heft.json │ ├── jest.config.json │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── rush-plugin-manifest.json │ ├── src │ ├── RushProjectServeConfigFile.ts │ ├── RushServePlugin.ts │ ├── api.types.ts │ ├── constants.ts │ ├── index.ts │ ├── phasedCommandHandler.ts │ ├── schemas │ │ ├── rush-project-serve.schema.json │ │ └── rush-serve-plugin-options.schema.json │ ├── test │ │ └── Server.test.ts │ ├── tryEnableBuildStatusWebSocketServer.ts │ └── types.ts │ └── tsconfig.json ├── rush.json ├── vscode-extensions ├── debug-certificate-manager-vscode-extension │ ├── .npmignore │ ├── .vscodeignore │ ├── LICENSE │ ├── README.md │ ├── assets │ │ └── extension-icon.png │ ├── config │ │ ├── heft.json │ │ ├── rig.json │ │ └── rush-project.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── certificates.ts │ │ ├── config.ts │ │ ├── constants.ts │ │ ├── extension.ts │ │ └── terminal.ts │ ├── tsconfig.json │ └── webpack.config.js ├── rush-vscode-command-webview │ ├── README.md │ ├── config │ │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── public │ │ └── index.html │ ├── src │ │ ├── App.tsx │ │ ├── ControlledFormComponents │ │ │ ├── ControlledComboBox.tsx │ │ │ ├── ControlledTextField.tsx │ │ │ ├── ControlledTextFieldArray.tsx │ │ │ ├── ControlledToggle.tsx │ │ │ ├── ErrorMessage.tsx │ │ │ └── interface.ts │ │ ├── Message │ │ │ ├── fromExtension.ts │ │ │ └── toExtension.ts │ │ ├── ParameterView │ │ │ ├── ParameterForm │ │ │ │ ├── Watcher.tsx │ │ │ │ └── index.tsx │ │ │ ├── ParameterNav.tsx │ │ │ └── index.tsx │ │ ├── ProjectView │ │ │ └── index.tsx │ │ ├── Toolbar │ │ │ ├── RunButton.tsx │ │ │ ├── SearchBar.tsx │ │ │ └── index.tsx │ │ ├── VersionsView │ │ │ └── index.tsx │ │ ├── components │ │ │ └── IconButton.tsx │ │ ├── entry.tsx │ │ ├── hooks │ │ │ └── parametersFormScroll.ts │ │ ├── index.ts │ │ ├── store │ │ │ ├── hooks │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ └── slices │ │ │ │ ├── parameter.ts │ │ │ │ ├── project.ts │ │ │ │ └── ui.ts │ │ └── typings.d.ts │ ├── tsconfig.json │ └── webpack.config.js ├── rush-vscode-extension │ ├── .gitignore │ ├── .npmignore │ ├── .vscodeignore │ ├── LICENSE │ ├── README.md │ ├── assets │ │ ├── rushstack-icon.png │ │ └── rushstack-icon.svg │ ├── config │ │ ├── heft.json │ │ ├── rig.json │ │ └── rush-project.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ │ ├── extension.ts │ │ ├── logic │ │ │ ├── RushCommandWebViewPanel.ts │ │ │ ├── RushWorkspace.ts │ │ │ └── logger.ts │ │ ├── providers │ │ │ ├── RushCommandsProvider.ts │ │ │ ├── RushProjectsProvider.ts │ │ │ └── TaskProvider.ts │ │ └── test │ │ │ ├── runTest.ts │ │ │ └── suite │ │ │ ├── extension.test.ts │ │ │ └── index.ts │ ├── tsconfig.json │ └── webpack.config.js └── vscode-shared │ ├── .npmignore │ ├── LICENSE │ ├── README.md │ ├── config │ └── rig.json │ ├── eslint.config.js │ ├── package.json │ ├── src │ └── VScodeOutputChannelTerminalProvider.ts │ └── tsconfig.json └── webpack ├── hashed-folder-copy-plugin ├── .npmignore ├── CHANGELOG.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── config │ ├── api-extractor.json │ ├── heft.json │ ├── jest.config.json │ └── rig.json ├── eslint.config.js ├── package.json ├── src │ ├── HashedFolderCopyPlugin.ts │ ├── HashedFolderDependency.ts │ ├── ambientTypes.d.ts │ ├── index.ts │ ├── test │ │ ├── HashedFolderCopyPlugin.test.ts │ │ ├── __snapshots__ │ │ │ └── HashedFolderCopyPlugin.test.ts.snap │ │ └── scenarios │ │ │ ├── localFolder │ │ │ ├── assets │ │ │ │ ├── a.txt │ │ │ │ ├── b.txt │ │ │ │ └── subfolder │ │ │ │ │ └── c.txt │ │ │ ├── entry.ts │ │ │ └── package.json │ │ │ ├── nullCase │ │ │ ├── entry.ts │ │ │ └── package.json │ │ │ └── packageReference │ │ │ ├── .gitignore │ │ │ ├── entry.ts │ │ │ ├── node_modules │ │ │ ├── @scope │ │ │ │ └── scoped-package │ │ │ │ │ ├── assets │ │ │ │ │ ├── a.txt │ │ │ │ │ ├── b.txt │ │ │ │ │ └── subfolder │ │ │ │ │ │ └── c.txt │ │ │ │ │ └── package.json │ │ │ └── unscoped-package │ │ │ │ ├── assets │ │ │ │ ├── a.txt │ │ │ │ ├── b.txt │ │ │ │ └── subfolder │ │ │ │ │ └── c.txt │ │ │ │ └── package.json │ │ │ └── package.json │ └── webpackTypes.ts └── tsconfig.json ├── loader-load-themed-styles ├── .npmignore ├── CHANGELOG.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── config │ ├── api-extractor.json │ ├── jest.config.json │ └── rig.json ├── eslint.config.js ├── package.json ├── src │ ├── LoadThemedStylesLoader.ts │ ├── index.ts │ └── test │ │ ├── LoadThemedStylesLoader.test.ts │ │ └── testData │ │ ├── LoadThemedStylesMock.ts │ │ ├── MockStyle1.ts │ │ └── MockStyle2.ts └── tsconfig.json ├── loader-raw-script ├── .npmignore ├── CHANGELOG.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── config │ ├── jest.config.json │ └── rig.json ├── eslint.config.js ├── package.json ├── src │ ├── RawScriptLoader.ts │ ├── index.ts │ └── test │ │ └── RawScriptLoader.test.ts └── tsconfig.json ├── preserve-dynamic-require-plugin ├── .npmignore ├── CHANGELOG.json ├── CHANGELOG.md ├── README.md ├── config │ ├── api-extractor.json │ ├── jest.config.json │ └── rig.json ├── eslint.config.js ├── package.json ├── src │ ├── __snapshots__ │ │ └── index.test.ts.snap │ ├── index.test.ts │ └── index.ts └── tsconfig.json ├── set-webpack-public-path-plugin ├── .npmignore ├── CHANGELOG.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── config │ ├── api-extractor.json │ ├── jest.config.json │ └── rig.json ├── eslint.config.js ├── package.json ├── src │ ├── SetPublicPathCurrentScriptPlugin.ts │ ├── SetPublicPathPlugin.ts │ ├── SetPublicPathPluginBase.ts │ ├── codeGenerator.ts │ ├── index.ts │ └── test │ │ ├── SetPublicPathCurrentScriptPlugin.test.ts │ │ ├── SetPublicPathPlugin.test.ts │ │ ├── __snapshots__ │ │ ├── SetPublicPathCurrentScriptPlugin.test.ts.snap │ │ └── SetPublicPathPlugin.test.ts.snap │ │ └── testBase.ts └── tsconfig.json ├── webpack-deep-imports-plugin ├── .npmignore ├── LICENSE ├── README.md ├── config │ ├── api-extractor.json │ ├── jest.config.json │ └── rig.json ├── eslint.config.js ├── package.json ├── src │ ├── DeepImportsPlugin.ts │ └── index.ts └── tsconfig.json ├── webpack-embedded-dependencies-plugin ├── .npmignore ├── CHANGELOG.json ├── CHANGELOG.md ├── README.md ├── config │ ├── api-extractor.json │ └── rig.json ├── eslint.config.js ├── package.json ├── src │ ├── EmbeddedDependenciesWebpackPlugin.ts │ ├── index.ts │ ├── regexpUtils.ts │ └── test │ │ ├── .gitignore │ │ ├── WebpackEmbeddedDependenciesPlugin.test.ts │ │ ├── fixtures │ │ ├── dependencies-with-copyleft-licenses │ │ │ └── src │ │ │ │ └── index.js │ │ ├── dependencies-with-dependency-to-filter-out │ │ │ └── src │ │ │ │ └── index.js │ │ ├── dependencies-with-licenses │ │ │ └── src │ │ │ │ └── index.js │ │ ├── dependencies-with-transient-copyleft-license │ │ │ └── src │ │ │ │ └── index.js │ │ └── no-dependencies │ │ │ └── src │ │ │ ├── file-a.js │ │ │ ├── file-b.js │ │ │ └── index.js │ │ └── node_modules │ │ ├── fake-package-agpl-license │ │ ├── LICENSE │ │ ├── lib │ │ │ └── index.js │ │ └── package.json │ │ ├── fake-package-apache-with-copyleft-dep │ │ ├── LICENSE.txt │ │ ├── lib │ │ │ └── index.js │ │ └── package.json │ │ ├── fake-package-copyleft-license │ │ ├── lib │ │ │ └── index.js │ │ ├── license │ │ └── package.json │ │ ├── fake-package-mit-license │ │ ├── LICENSE-MIT.txt │ │ ├── lib │ │ │ └── index.js │ │ └── package.json │ │ ├── fake-package-mpl-license │ │ ├── lib │ │ │ └── index.js │ │ └── package.json │ │ └── some-fake-custom-package │ │ ├── lib │ │ ├── 1.js │ │ ├── 2.js │ │ └── index.js │ │ └── package.json └── tsconfig.json ├── webpack-plugin-utilities ├── .npmignore ├── CHANGELOG.json ├── CHANGELOG.md ├── README.md ├── config │ ├── api-extractor.json │ └── rig.json ├── eslint.config.js ├── package.json ├── src │ ├── DetectWebpackVersion.ts │ ├── Testing.ts │ └── index.ts └── tsconfig.json ├── webpack-workspace-resolve-plugin ├── .npmignore ├── CHANGELOG.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── config │ ├── api-extractor.json │ ├── jest.config.json │ └── rig.json ├── eslint.config.js ├── package.json ├── src │ ├── KnownDescriptionFilePlugin.ts │ ├── KnownPackageDependenciesPlugin.ts │ ├── WorkspaceLayoutCache.ts │ ├── WorkspaceResolvePlugin.ts │ ├── index.ts │ └── test │ │ ├── KnownDescriptionFilePlugin.test.ts │ │ ├── KnownPackageDependenciesPlugin.test.ts │ │ └── createResolveForTests.ts └── tsconfig.json ├── webpack4-localization-plugin ├── .npmignore ├── CHANGELOG.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── config │ ├── api-extractor.json │ └── rig.json ├── eslint.config.js ├── package.json ├── src │ ├── AssetProcessor.ts │ ├── LocalizationPlugin.ts │ ├── WebpackConfigurationUpdater.ts │ ├── index.ts │ ├── interfaces.ts │ ├── loaders │ │ ├── InPlaceLocFileLoader.ts │ │ ├── LoaderFactory.ts │ │ └── LocLoader.ts │ ├── utilities │ │ ├── Constants.ts │ │ ├── EntityMarker.ts │ │ └── LoaderTerminalProvider.ts │ └── webpackInterfaces.ts └── tsconfig.json ├── webpack4-module-minifier-plugin ├── .npmignore ├── CHANGELOG.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── config │ ├── api-extractor.json │ ├── jest.config.json │ └── rig.json ├── eslint.config.js ├── package.json ├── src │ ├── AsyncImportCompressionPlugin.ts │ ├── Constants.ts │ ├── GenerateLicenseFileForAsset.ts │ ├── ModuleMinifierPlugin.ts │ ├── ModuleMinifierPlugin.types.ts │ ├── OverrideWebpackIdentifierAllocation.ts │ ├── ParallelCompiler.ts │ ├── PortableMinifierIdsPlugin.ts │ ├── RehydrateAsset.ts │ ├── index.ts │ ├── test │ │ └── RehydrateAsset.test.ts │ └── workerPool │ │ └── WebpackWorker.ts └── tsconfig.json ├── webpack5-load-themed-styles-loader ├── .npmignore ├── CHANGELOG.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── config │ ├── api-extractor.json │ ├── jest.config.json │ ├── rig.json │ └── typescript.json ├── eslint.config.js ├── package.json ├── src │ ├── index.ts │ └── test │ │ ├── LoadThemedStylesLoader.test.ts │ │ ├── __snapshots__ │ │ └── LoadThemedStylesLoader.test.ts.snap │ │ └── testData │ │ ├── LoadThemedStylesMock.ts │ │ ├── MockStyle1.css │ │ ├── MockStyle1.ts │ │ ├── MockStyle2.ts │ │ └── getCompiler.ts └── tsconfig.json ├── webpack5-localization-plugin ├── .npmignore ├── CHANGELOG.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── config │ ├── api-extractor.json │ ├── jest.config.json │ └── rig.json ├── eslint.config.js ├── package.json ├── src │ ├── AssetProcessor.ts │ ├── LocalizationPlugin.ts │ ├── TrueHashPlugin.ts │ ├── index.ts │ ├── interfaces.ts │ ├── loaders │ │ ├── IResxLoaderOptions.ts │ │ ├── LoaderFactory.ts │ │ ├── default-locale-loader.ts │ │ ├── loc-loader.ts │ │ ├── locjson-loader.ts │ │ ├── resjson-loader.ts │ │ └── resx-loader.ts │ ├── test │ │ ├── LocalizedAsyncDynamic.test.ts │ │ ├── LocalizedAsyncDynamicFormatWithNoLocaleFallback.test.ts │ │ ├── LocalizedNoAsync.test.ts │ │ ├── LocalizedRuntime.test.ts │ │ ├── LocalizedRuntimeDifferentHashLengths.test.ts │ │ ├── LocalizedRuntimeTestBase.ts │ │ ├── MemFSPlugin.ts │ │ ├── MixedAsync.test.ts │ │ ├── MixedAsyncDynamic.test.ts │ │ ├── MixedAsyncNonHashed.test.ts │ │ ├── NoLocalizedFiles.test.ts │ │ ├── NonHashedNonLocalizedAssets.test.ts │ │ └── __snapshots__ │ │ │ ├── LocalizedAsyncDynamic.test.ts.snap │ │ │ ├── LocalizedAsyncDynamicFormatWithNoLocaleFallback.test.ts.snap │ │ │ ├── LocalizedNoAsync.test.ts.snap │ │ │ ├── LocalizedRuntime.test.ts.snap │ │ │ ├── LocalizedRuntimeDifferentHashLengths.test.ts.snap │ │ │ ├── MixedAsync.test.ts.snap │ │ │ ├── MixedAsyncDynamic.test.ts.snap │ │ │ ├── MixedAsyncNonHashed.test.ts.snap │ │ │ ├── NoLocalizedFiles.test.ts.snap │ │ │ └── NonHashedNonLocalizedAssets.test.ts.snap │ ├── trueHashes.ts │ ├── utilities │ │ ├── Constants.ts │ │ ├── EntityMarker.ts │ │ ├── LoaderTerminalProvider.ts │ │ └── chunkUtilities.ts │ └── webpackInterfaces.ts └── tsconfig.json └── webpack5-module-minifier-plugin ├── .npmignore ├── CHANGELOG.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── config ├── api-extractor.json ├── jest.config.json └── rig.json ├── eslint.config.js ├── package.json ├── src ├── Constants.ts ├── GenerateLicenseFileForAsset.ts ├── ModuleMinifierPlugin.ts ├── ModuleMinifierPlugin.types.ts ├── RehydrateAsset.ts ├── index.ts └── test │ ├── AmdExternals.test.ts │ ├── MockMinifier.ts │ ├── MultipleRuntimes.test.ts │ ├── RecordMetadataPlugin.ts │ └── __snapshots__ │ ├── AmdExternals.test.ts.snap │ └── MultipleRuntimes.test.ts.snap └── tsconfig.json /.cursor/rules/rush.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/.cursor/rules/rush.mdc -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/.devcontainer/setup.sh -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/api-documenter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/.github/ISSUE_TEMPLATE/api-documenter.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/api-extractor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/.github/ISSUE_TEMPLATE/api-extractor.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/eslint-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/.github/ISSUE_TEMPLATE/eslint-config.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/heft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/.github/ISSUE_TEMPLATE/heft.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/lockfile-explorer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/.github/ISSUE_TEMPLATE/lockfile-explorer.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/rush.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/.github/ISSUE_TEMPLATE/rush.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/z-other-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/.github/ISSUE_TEMPLATE/z-other-project.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/file-doc-tickets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/.github/workflows/file-doc-tickets.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.trae/project_rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/.trae/project_rules.md -------------------------------------------------------------------------------- /.vscode/debug-certificate-manager.json: -------------------------------------------------------------------------------- 1 | { 2 | "storePath": "common/temp/debug-certificates" 3 | } -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/redis-cobuild.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/.vscode/redis-cobuild.code-workspace -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/SECURITY.md -------------------------------------------------------------------------------- /apps/api-documenter/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-documenter/.npmignore -------------------------------------------------------------------------------- /apps/api-documenter/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-documenter/CHANGELOG.json -------------------------------------------------------------------------------- /apps/api-documenter/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-documenter/CHANGELOG.md -------------------------------------------------------------------------------- /apps/api-documenter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-documenter/LICENSE -------------------------------------------------------------------------------- /apps/api-documenter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-documenter/README.md -------------------------------------------------------------------------------- /apps/api-documenter/ad.cmd: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | @SETLOCAL 3 | node "%~dp0\lib\start" %* 4 | -------------------------------------------------------------------------------- /apps/api-documenter/bin/api-documenter: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../lib/start.js'); 3 | -------------------------------------------------------------------------------- /apps/api-documenter/config/heft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-documenter/config/heft.json -------------------------------------------------------------------------------- /apps/api-documenter/config/jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-documenter/config/jest.config.json -------------------------------------------------------------------------------- /apps/api-documenter/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-documenter/config/rig.json -------------------------------------------------------------------------------- /apps/api-documenter/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-documenter/eslint.config.js -------------------------------------------------------------------------------- /apps/api-documenter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-documenter/package.json -------------------------------------------------------------------------------- /apps/api-documenter/run.cmd: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | @SETLOCAL 3 | node "%~dp0\lib\index" %* -------------------------------------------------------------------------------- /apps/api-documenter/src/cli/BaseAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-documenter/src/cli/BaseAction.ts -------------------------------------------------------------------------------- /apps/api-documenter/src/cli/YamlAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-documenter/src/cli/YamlAction.ts -------------------------------------------------------------------------------- /apps/api-documenter/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-documenter/src/index.ts -------------------------------------------------------------------------------- /apps/api-documenter/src/nodes/DocHeading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-documenter/src/nodes/DocHeading.ts -------------------------------------------------------------------------------- /apps/api-documenter/src/nodes/DocNoteBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-documenter/src/nodes/DocNoteBox.ts -------------------------------------------------------------------------------- /apps/api-documenter/src/nodes/DocTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-documenter/src/nodes/DocTable.ts -------------------------------------------------------------------------------- /apps/api-documenter/src/nodes/DocTableRow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-documenter/src/nodes/DocTableRow.ts -------------------------------------------------------------------------------- /apps/api-documenter/src/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-documenter/src/start.ts -------------------------------------------------------------------------------- /apps/api-documenter/src/utils/Utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-documenter/src/utils/Utilities.ts -------------------------------------------------------------------------------- /apps/api-documenter/src/yaml/ISDPYamlFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-documenter/src/yaml/ISDPYamlFile.ts -------------------------------------------------------------------------------- /apps/api-documenter/src/yaml/IYamlApiFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-documenter/src/yaml/IYamlApiFile.ts -------------------------------------------------------------------------------- /apps/api-documenter/src/yaml/IYamlTocFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-documenter/src/yaml/IYamlTocFile.ts -------------------------------------------------------------------------------- /apps/api-documenter/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-documenter/tsconfig.json -------------------------------------------------------------------------------- /apps/api-extractor/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-extractor/.npmignore -------------------------------------------------------------------------------- /apps/api-extractor/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-extractor/.vscode/launch.json -------------------------------------------------------------------------------- /apps/api-extractor/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-extractor/CHANGELOG.json -------------------------------------------------------------------------------- /apps/api-extractor/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-extractor/CHANGELOG.md -------------------------------------------------------------------------------- /apps/api-extractor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-extractor/LICENSE -------------------------------------------------------------------------------- /apps/api-extractor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-extractor/README.md -------------------------------------------------------------------------------- /apps/api-extractor/ae.cmd: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | @SETLOCAL 3 | node "%~dp0\lib\start" %* 4 | -------------------------------------------------------------------------------- /apps/api-extractor/bin/api-extractor: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../lib/start.js'); 3 | -------------------------------------------------------------------------------- /apps/api-extractor/build-tests.cmd: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | @SETLOCAL 3 | rush test -t tag:api-extractor-tests 4 | -------------------------------------------------------------------------------- /apps/api-extractor/config/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-extractor/config/api-extractor.json -------------------------------------------------------------------------------- /apps/api-extractor/config/heft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-extractor/config/heft.json -------------------------------------------------------------------------------- /apps/api-extractor/config/jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-extractor/config/jest.config.json -------------------------------------------------------------------------------- /apps/api-extractor/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-extractor/config/rig.json -------------------------------------------------------------------------------- /apps/api-extractor/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-extractor/eslint.config.js -------------------------------------------------------------------------------- /apps/api-extractor/extends/tsdoc-base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-extractor/extends/tsdoc-base.json -------------------------------------------------------------------------------- /apps/api-extractor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-extractor/package.json -------------------------------------------------------------------------------- /apps/api-extractor/src/analyzer/AstEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-extractor/src/analyzer/AstEntity.ts -------------------------------------------------------------------------------- /apps/api-extractor/src/analyzer/AstImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-extractor/src/analyzer/AstImport.ts -------------------------------------------------------------------------------- /apps/api-extractor/src/analyzer/AstModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-extractor/src/analyzer/AstModule.ts -------------------------------------------------------------------------------- /apps/api-extractor/src/analyzer/AstSymbol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-extractor/src/analyzer/AstSymbol.ts -------------------------------------------------------------------------------- /apps/api-extractor/src/analyzer/Span.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-extractor/src/analyzer/Span.ts -------------------------------------------------------------------------------- /apps/api-extractor/src/api/CompilerState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-extractor/src/api/CompilerState.ts -------------------------------------------------------------------------------- /apps/api-extractor/src/api/Extractor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-extractor/src/api/Extractor.ts -------------------------------------------------------------------------------- /apps/api-extractor/src/api/IConfigFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-extractor/src/api/IConfigFile.ts -------------------------------------------------------------------------------- /apps/api-extractor/src/api/test/test-data/config-lookup1/index.d.ts: -------------------------------------------------------------------------------- 1 | // empty file 2 | -------------------------------------------------------------------------------- /apps/api-extractor/src/api/test/test-data/config-lookup2/index.d.ts: -------------------------------------------------------------------------------- 1 | // empty file 2 | -------------------------------------------------------------------------------- /apps/api-extractor/src/api/test/test-data/config-lookup3/index.d.ts: -------------------------------------------------------------------------------- 1 | // empty file 2 | -------------------------------------------------------------------------------- /apps/api-extractor/src/api/test/test-data/config-lookup3/src/test/index.d.ts: -------------------------------------------------------------------------------- 1 | // empty file 2 | -------------------------------------------------------------------------------- /apps/api-extractor/src/api/test/test-data/invalid-tags-to-report/index.d.ts: -------------------------------------------------------------------------------- 1 | // empty file 2 | -------------------------------------------------------------------------------- /apps/api-extractor/src/api/test/test-data/override-array-properties/index.d.ts: -------------------------------------------------------------------------------- 1 | // empty file 2 | -------------------------------------------------------------------------------- /apps/api-extractor/src/api/test/test-data/tags-to-report/index.d.ts: -------------------------------------------------------------------------------- 1 | // empty file 2 | -------------------------------------------------------------------------------- /apps/api-extractor/src/cli/InitAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-extractor/src/cli/InitAction.ts -------------------------------------------------------------------------------- /apps/api-extractor/src/cli/RunAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-extractor/src/cli/RunAction.ts -------------------------------------------------------------------------------- /apps/api-extractor/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-extractor/src/index.ts -------------------------------------------------------------------------------- /apps/api-extractor/src/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-extractor/src/start.ts -------------------------------------------------------------------------------- /apps/api-extractor/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/api-extractor/tsconfig.json -------------------------------------------------------------------------------- /apps/cpu-profile-summarizer/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/cpu-profile-summarizer/.npmignore -------------------------------------------------------------------------------- /apps/cpu-profile-summarizer/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/cpu-profile-summarizer/CHANGELOG.json -------------------------------------------------------------------------------- /apps/cpu-profile-summarizer/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/cpu-profile-summarizer/CHANGELOG.md -------------------------------------------------------------------------------- /apps/cpu-profile-summarizer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/cpu-profile-summarizer/LICENSE -------------------------------------------------------------------------------- /apps/cpu-profile-summarizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/cpu-profile-summarizer/README.md -------------------------------------------------------------------------------- /apps/cpu-profile-summarizer/bin/cpu-profile-aggregator: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../lib/start.js'); 3 | -------------------------------------------------------------------------------- /apps/cpu-profile-summarizer/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/cpu-profile-summarizer/config/rig.json -------------------------------------------------------------------------------- /apps/cpu-profile-summarizer/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/cpu-profile-summarizer/eslint.config.js -------------------------------------------------------------------------------- /apps/cpu-profile-summarizer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/cpu-profile-summarizer/package.json -------------------------------------------------------------------------------- /apps/cpu-profile-summarizer/src/protocol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/cpu-profile-summarizer/src/protocol.ts -------------------------------------------------------------------------------- /apps/cpu-profile-summarizer/src/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/cpu-profile-summarizer/src/start.ts -------------------------------------------------------------------------------- /apps/cpu-profile-summarizer/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/cpu-profile-summarizer/src/types.ts -------------------------------------------------------------------------------- /apps/cpu-profile-summarizer/src/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/cpu-profile-summarizer/src/worker.ts -------------------------------------------------------------------------------- /apps/cpu-profile-summarizer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/cpu-profile-summarizer/tsconfig.json -------------------------------------------------------------------------------- /apps/heft/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/.npmignore -------------------------------------------------------------------------------- /apps/heft/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/.vscode/launch.json -------------------------------------------------------------------------------- /apps/heft/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/CHANGELOG.json -------------------------------------------------------------------------------- /apps/heft/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/CHANGELOG.md -------------------------------------------------------------------------------- /apps/heft/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/LICENSE -------------------------------------------------------------------------------- /apps/heft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/README.md -------------------------------------------------------------------------------- /apps/heft/UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/UPGRADING.md -------------------------------------------------------------------------------- /apps/heft/bin/heft: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../lib/startWithVersionSelector.js'); 3 | -------------------------------------------------------------------------------- /apps/heft/config/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/config/api-extractor.json -------------------------------------------------------------------------------- /apps/heft/config/heft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/config/heft.json -------------------------------------------------------------------------------- /apps/heft/config/jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/config/jest.config.json -------------------------------------------------------------------------------- /apps/heft/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/config/rig.json -------------------------------------------------------------------------------- /apps/heft/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/eslint.config.js -------------------------------------------------------------------------------- /apps/heft/heft-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/heft-plugin.json -------------------------------------------------------------------------------- /apps/heft/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/package.json -------------------------------------------------------------------------------- /apps/heft/src/cli/HeftActionRunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/src/cli/HeftActionRunner.ts -------------------------------------------------------------------------------- /apps/heft/src/cli/HeftCommandLineParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/src/cli/HeftCommandLineParser.ts -------------------------------------------------------------------------------- /apps/heft/src/cli/actions/AliasAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/src/cli/actions/AliasAction.ts -------------------------------------------------------------------------------- /apps/heft/src/cli/actions/CleanAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/src/cli/actions/CleanAction.ts -------------------------------------------------------------------------------- /apps/heft/src/cli/actions/IHeftAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/src/cli/actions/IHeftAction.ts -------------------------------------------------------------------------------- /apps/heft/src/cli/actions/PhaseAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/src/cli/actions/PhaseAction.ts -------------------------------------------------------------------------------- /apps/heft/src/cli/actions/RunAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/src/cli/actions/RunAction.ts -------------------------------------------------------------------------------- /apps/heft/src/configuration/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/src/configuration/types.ts -------------------------------------------------------------------------------- /apps/heft/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/src/index.ts -------------------------------------------------------------------------------- /apps/heft/src/metrics/MetricsCollector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/src/metrics/MetricsCollector.ts -------------------------------------------------------------------------------- /apps/heft/src/pluginFramework/HeftPhase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/src/pluginFramework/HeftPhase.ts -------------------------------------------------------------------------------- /apps/heft/src/pluginFramework/HeftTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/src/pluginFramework/HeftTask.ts -------------------------------------------------------------------------------- /apps/heft/src/pluginFramework/IHeftPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/src/pluginFramework/IHeftPlugin.ts -------------------------------------------------------------------------------- /apps/heft/src/plugins/CopyFilesPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/src/plugins/CopyFilesPlugin.ts -------------------------------------------------------------------------------- /apps/heft/src/plugins/DeleteFilesPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/src/plugins/DeleteFilesPlugin.ts -------------------------------------------------------------------------------- /apps/heft/src/plugins/FileGlobSpecifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/src/plugins/FileGlobSpecifier.ts -------------------------------------------------------------------------------- /apps/heft/src/plugins/NodeServicePlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/src/plugins/NodeServicePlugin.ts -------------------------------------------------------------------------------- /apps/heft/src/plugins/RunScriptPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/src/plugins/RunScriptPlugin.ts -------------------------------------------------------------------------------- /apps/heft/src/schemas/anything.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/src/schemas/anything.schema.json -------------------------------------------------------------------------------- /apps/heft/src/schemas/heft.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/src/schemas/heft.schema.json -------------------------------------------------------------------------------- /apps/heft/src/schemas/templates/heft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/src/schemas/templates/heft.json -------------------------------------------------------------------------------- /apps/heft/src/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/src/start.ts -------------------------------------------------------------------------------- /apps/heft/src/startWithVersionSelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/src/startWithVersionSelector.ts -------------------------------------------------------------------------------- /apps/heft/src/utilities/CliUtilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/src/utilities/CliUtilities.ts -------------------------------------------------------------------------------- /apps/heft/src/utilities/Constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/src/utilities/Constants.ts -------------------------------------------------------------------------------- /apps/heft/src/utilities/CoreConfigFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/src/utilities/CoreConfigFiles.ts -------------------------------------------------------------------------------- /apps/heft/src/utilities/GitUtilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/src/utilities/GitUtilities.ts -------------------------------------------------------------------------------- /apps/heft/src/utilities/Selection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/src/utilities/Selection.ts -------------------------------------------------------------------------------- /apps/heft/src/utilities/test/checkIgnoreTests/allIgnored/.gitignore: -------------------------------------------------------------------------------- 1 | **/*.txt -------------------------------------------------------------------------------- /apps/heft/src/utilities/test/checkIgnoreTests/negateIgnore/.gitignore: -------------------------------------------------------------------------------- 1 | **/*.txt -------------------------------------------------------------------------------- /apps/heft/src/utilities/test/checkIgnoreTests/negateIgnore/a/.gitignore: -------------------------------------------------------------------------------- 1 | !b.txt -------------------------------------------------------------------------------- /apps/heft/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/heft/tsconfig.json -------------------------------------------------------------------------------- /apps/lockfile-explorer-web/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/lockfile-explorer-web/LICENSE -------------------------------------------------------------------------------- /apps/lockfile-explorer-web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/lockfile-explorer-web/README.md -------------------------------------------------------------------------------- /apps/lockfile-explorer-web/assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/lockfile-explorer-web/assets/index.html -------------------------------------------------------------------------------- /apps/lockfile-explorer-web/config/heft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/lockfile-explorer-web/config/heft.json -------------------------------------------------------------------------------- /apps/lockfile-explorer-web/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/lockfile-explorer-web/config/rig.json -------------------------------------------------------------------------------- /apps/lockfile-explorer-web/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/lockfile-explorer-web/eslint.config.js -------------------------------------------------------------------------------- /apps/lockfile-explorer-web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/lockfile-explorer-web/package.json -------------------------------------------------------------------------------- /apps/lockfile-explorer-web/src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/lockfile-explorer-web/src/App.scss -------------------------------------------------------------------------------- /apps/lockfile-explorer-web/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/lockfile-explorer-web/src/App.tsx -------------------------------------------------------------------------------- /apps/lockfile-explorer-web/src/start.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/lockfile-explorer-web/src/start.css -------------------------------------------------------------------------------- /apps/lockfile-explorer-web/src/start.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/lockfile-explorer-web/src/start.tsx -------------------------------------------------------------------------------- /apps/lockfile-explorer-web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/lockfile-explorer-web/tsconfig.json -------------------------------------------------------------------------------- /apps/lockfile-explorer-web/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/lockfile-explorer-web/webpack.config.js -------------------------------------------------------------------------------- /apps/lockfile-explorer/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/lockfile-explorer/.npmignore -------------------------------------------------------------------------------- /apps/lockfile-explorer/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/lockfile-explorer/.vscode/launch.json -------------------------------------------------------------------------------- /apps/lockfile-explorer/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/lockfile-explorer/CHANGELOG.json -------------------------------------------------------------------------------- /apps/lockfile-explorer/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/lockfile-explorer/CHANGELOG.md -------------------------------------------------------------------------------- /apps/lockfile-explorer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/lockfile-explorer/LICENSE -------------------------------------------------------------------------------- /apps/lockfile-explorer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/lockfile-explorer/README.md -------------------------------------------------------------------------------- /apps/lockfile-explorer/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/lockfile-explorer/assets/favicon.ico -------------------------------------------------------------------------------- /apps/lockfile-explorer/bin/lockfile-explorer: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../lib/start-explorer.js'); 3 | -------------------------------------------------------------------------------- /apps/lockfile-explorer/bin/lockfile-lint: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../lib/start-lint.js'); 3 | -------------------------------------------------------------------------------- /apps/lockfile-explorer/config/heft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/lockfile-explorer/config/heft.json -------------------------------------------------------------------------------- /apps/lockfile-explorer/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/lockfile-explorer/config/rig.json -------------------------------------------------------------------------------- /apps/lockfile-explorer/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/lockfile-explorer/eslint.config.js -------------------------------------------------------------------------------- /apps/lockfile-explorer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/lockfile-explorer/package.json -------------------------------------------------------------------------------- /apps/lockfile-explorer/src/start-explorer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/lockfile-explorer/src/start-explorer.ts -------------------------------------------------------------------------------- /apps/lockfile-explorer/src/start-lint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/lockfile-explorer/src/start-lint.ts -------------------------------------------------------------------------------- /apps/lockfile-explorer/src/state/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/lockfile-explorer/src/state/index.ts -------------------------------------------------------------------------------- /apps/lockfile-explorer/src/test/help.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/lockfile-explorer/src/test/help.test.ts -------------------------------------------------------------------------------- /apps/lockfile-explorer/src/typings.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.json'; 2 | -------------------------------------------------------------------------------- /apps/lockfile-explorer/src/utils/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/lockfile-explorer/src/utils/init.ts -------------------------------------------------------------------------------- /apps/lockfile-explorer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/lockfile-explorer/tsconfig.json -------------------------------------------------------------------------------- /apps/rundown/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rundown/.npmignore -------------------------------------------------------------------------------- /apps/rundown/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rundown/.vscode/launch.json -------------------------------------------------------------------------------- /apps/rundown/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rundown/CHANGELOG.json -------------------------------------------------------------------------------- /apps/rundown/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rundown/CHANGELOG.md -------------------------------------------------------------------------------- /apps/rundown/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rundown/LICENSE -------------------------------------------------------------------------------- /apps/rundown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rundown/README.md -------------------------------------------------------------------------------- /apps/rundown/bin/rundown: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../lib/start.js'); 3 | -------------------------------------------------------------------------------- /apps/rundown/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rundown/config/rig.json -------------------------------------------------------------------------------- /apps/rundown/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rundown/eslint.config.js -------------------------------------------------------------------------------- /apps/rundown/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rundown/package.json -------------------------------------------------------------------------------- /apps/rundown/src/LauncherTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rundown/src/LauncherTypes.ts -------------------------------------------------------------------------------- /apps/rundown/src/Rundown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rundown/src/Rundown.ts -------------------------------------------------------------------------------- /apps/rundown/src/cli/BaseReportAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rundown/src/cli/BaseReportAction.ts -------------------------------------------------------------------------------- /apps/rundown/src/cli/InspectAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rundown/src/cli/InspectAction.ts -------------------------------------------------------------------------------- /apps/rundown/src/cli/RundownCommandLine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rundown/src/cli/RundownCommandLine.ts -------------------------------------------------------------------------------- /apps/rundown/src/cli/SnapshotAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rundown/src/cli/SnapshotAction.ts -------------------------------------------------------------------------------- /apps/rundown/src/launcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rundown/src/launcher.ts -------------------------------------------------------------------------------- /apps/rundown/src/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rundown/src/start.ts -------------------------------------------------------------------------------- /apps/rundown/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rundown/tsconfig.json -------------------------------------------------------------------------------- /apps/rush-mcp-server/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush-mcp-server/.npmignore -------------------------------------------------------------------------------- /apps/rush-mcp-server/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush-mcp-server/CHANGELOG.json -------------------------------------------------------------------------------- /apps/rush-mcp-server/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush-mcp-server/CHANGELOG.md -------------------------------------------------------------------------------- /apps/rush-mcp-server/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush-mcp-server/LICENSE -------------------------------------------------------------------------------- /apps/rush-mcp-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush-mcp-server/README.md -------------------------------------------------------------------------------- /apps/rush-mcp-server/bin/mcp-server: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../lib/start.js'); 3 | -------------------------------------------------------------------------------- /apps/rush-mcp-server/config/jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush-mcp-server/config/jest.config.json -------------------------------------------------------------------------------- /apps/rush-mcp-server/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush-mcp-server/config/rig.json -------------------------------------------------------------------------------- /apps/rush-mcp-server/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush-mcp-server/eslint.config.js -------------------------------------------------------------------------------- /apps/rush-mcp-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush-mcp-server/package.json -------------------------------------------------------------------------------- /apps/rush-mcp-server/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush-mcp-server/src/index.ts -------------------------------------------------------------------------------- /apps/rush-mcp-server/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush-mcp-server/src/server.ts -------------------------------------------------------------------------------- /apps/rush-mcp-server/src/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush-mcp-server/src/start.ts -------------------------------------------------------------------------------- /apps/rush-mcp-server/src/tools/base.tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush-mcp-server/src/tools/base.tool.ts -------------------------------------------------------------------------------- /apps/rush-mcp-server/src/tools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush-mcp-server/src/tools/index.ts -------------------------------------------------------------------------------- /apps/rush-mcp-server/src/utilities/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush-mcp-server/src/utilities/common.ts -------------------------------------------------------------------------------- /apps/rush-mcp-server/src/utilities/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush-mcp-server/src/utilities/log.ts -------------------------------------------------------------------------------- /apps/rush-mcp-server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush-mcp-server/tsconfig.json -------------------------------------------------------------------------------- /apps/rush/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush/.npmignore -------------------------------------------------------------------------------- /apps/rush/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush/CHANGELOG.json -------------------------------------------------------------------------------- /apps/rush/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush/CHANGELOG.md -------------------------------------------------------------------------------- /apps/rush/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush/LICENSE -------------------------------------------------------------------------------- /apps/rush/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush/README.md -------------------------------------------------------------------------------- /apps/rush/UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush/UPGRADING.md -------------------------------------------------------------------------------- /apps/rush/bin/rush: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../lib/start.js'); 3 | -------------------------------------------------------------------------------- /apps/rush/bin/rush-pnpm: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../lib/start.js'); 3 | -------------------------------------------------------------------------------- /apps/rush/bin/rushx: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../lib/start.js'); 3 | -------------------------------------------------------------------------------- /apps/rush/config/jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush/config/jest.config.json -------------------------------------------------------------------------------- /apps/rush/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush/config/rig.json -------------------------------------------------------------------------------- /apps/rush/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush/eslint.config.js -------------------------------------------------------------------------------- /apps/rush/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush/package.json -------------------------------------------------------------------------------- /apps/rush/rush-debug.cmd: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | @SETLOCAL 3 | cmd /c "(cd ..\.. && node-debug "%~dp0lib\start.js" %*)" 4 | -------------------------------------------------------------------------------- /apps/rush/rush.cmd: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | @SETLOCAL 3 | node "%~dp0\lib\start" %* 4 | -------------------------------------------------------------------------------- /apps/rush/src/MinimalRushConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush/src/MinimalRushConfiguration.ts -------------------------------------------------------------------------------- /apps/rush/src/RushCommandSelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush/src/RushCommandSelector.ts -------------------------------------------------------------------------------- /apps/rush/src/RushVersionSelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush/src/RushVersionSelector.ts -------------------------------------------------------------------------------- /apps/rush/src/start-dev-docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush/src/start-dev-docs.ts -------------------------------------------------------------------------------- /apps/rush/src/start-dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush/src/start-dev.ts -------------------------------------------------------------------------------- /apps/rush/src/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush/src/start.ts -------------------------------------------------------------------------------- /apps/rush/src/test/sandbox/repo/rush.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush/src/test/sandbox/repo/rush.json -------------------------------------------------------------------------------- /apps/rush/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/rush/tsconfig.json -------------------------------------------------------------------------------- /apps/trace-import/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/trace-import/.npmignore -------------------------------------------------------------------------------- /apps/trace-import/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/trace-import/.vscode/launch.json -------------------------------------------------------------------------------- /apps/trace-import/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/trace-import/CHANGELOG.json -------------------------------------------------------------------------------- /apps/trace-import/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/trace-import/CHANGELOG.md -------------------------------------------------------------------------------- /apps/trace-import/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/trace-import/LICENSE -------------------------------------------------------------------------------- /apps/trace-import/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/trace-import/README.md -------------------------------------------------------------------------------- /apps/trace-import/bin/trace-import: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../lib/start.js'); 3 | -------------------------------------------------------------------------------- /apps/trace-import/config/jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/trace-import/config/jest.config.json -------------------------------------------------------------------------------- /apps/trace-import/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/trace-import/config/rig.json -------------------------------------------------------------------------------- /apps/trace-import/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/trace-import/eslint.config.js -------------------------------------------------------------------------------- /apps/trace-import/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/trace-import/package.json -------------------------------------------------------------------------------- /apps/trace-import/src/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/trace-import/src/start.ts -------------------------------------------------------------------------------- /apps/trace-import/src/traceImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/trace-import/src/traceImport.ts -------------------------------------------------------------------------------- /apps/trace-import/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/trace-import/tsconfig.json -------------------------------------------------------------------------------- /apps/zipsync/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/zipsync/.npmignore -------------------------------------------------------------------------------- /apps/zipsync/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/zipsync/CHANGELOG.json -------------------------------------------------------------------------------- /apps/zipsync/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/zipsync/CHANGELOG.md -------------------------------------------------------------------------------- /apps/zipsync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/zipsync/LICENSE -------------------------------------------------------------------------------- /apps/zipsync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/zipsync/README.md -------------------------------------------------------------------------------- /apps/zipsync/bin/zipsync: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../lib/start.js'); 3 | -------------------------------------------------------------------------------- /apps/zipsync/config/jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/zipsync/config/jest.config.json -------------------------------------------------------------------------------- /apps/zipsync/config/jestSymbolDispose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/zipsync/config/jestSymbolDispose.js -------------------------------------------------------------------------------- /apps/zipsync/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/zipsync/config/rig.json -------------------------------------------------------------------------------- /apps/zipsync/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/zipsync/eslint.config.js -------------------------------------------------------------------------------- /apps/zipsync/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/zipsync/package.json -------------------------------------------------------------------------------- /apps/zipsync/src/cli/test/start.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/zipsync/src/cli/test/start.test.ts -------------------------------------------------------------------------------- /apps/zipsync/src/compress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/zipsync/src/compress.ts -------------------------------------------------------------------------------- /apps/zipsync/src/crc32.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/zipsync/src/crc32.ts -------------------------------------------------------------------------------- /apps/zipsync/src/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/zipsync/src/fs.ts -------------------------------------------------------------------------------- /apps/zipsync/src/hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/zipsync/src/hash.ts -------------------------------------------------------------------------------- /apps/zipsync/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/zipsync/src/index.ts -------------------------------------------------------------------------------- /apps/zipsync/src/pack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/zipsync/src/pack.ts -------------------------------------------------------------------------------- /apps/zipsync/src/packWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/zipsync/src/packWorker.ts -------------------------------------------------------------------------------- /apps/zipsync/src/packWorkerAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/zipsync/src/packWorkerAsync.ts -------------------------------------------------------------------------------- /apps/zipsync/src/perf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/zipsync/src/perf.ts -------------------------------------------------------------------------------- /apps/zipsync/src/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/zipsync/src/start.ts -------------------------------------------------------------------------------- /apps/zipsync/src/test/benchmark.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/zipsync/src/test/benchmark.test.ts -------------------------------------------------------------------------------- /apps/zipsync/src/test/crc32.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/zipsync/src/test/crc32.test.ts -------------------------------------------------------------------------------- /apps/zipsync/src/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/zipsync/src/test/index.test.ts -------------------------------------------------------------------------------- /apps/zipsync/src/test/testUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/zipsync/src/test/testUtils.ts -------------------------------------------------------------------------------- /apps/zipsync/src/test/workerAsync.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/zipsync/src/test/workerAsync.test.ts -------------------------------------------------------------------------------- /apps/zipsync/src/unpack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/zipsync/src/unpack.ts -------------------------------------------------------------------------------- /apps/zipsync/src/unpackWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/zipsync/src/unpackWorker.ts -------------------------------------------------------------------------------- /apps/zipsync/src/unpackWorkerAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/zipsync/src/unpackWorkerAsync.ts -------------------------------------------------------------------------------- /apps/zipsync/src/zipSyncUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/zipsync/src/zipSyncUtils.ts -------------------------------------------------------------------------------- /apps/zipsync/src/zipUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/zipsync/src/zipUtils.ts -------------------------------------------------------------------------------- /apps/zipsync/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/apps/zipsync/tsconfig.json -------------------------------------------------------------------------------- /common/config/rush/.npmrc-publish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/config/rush/.npmrc-publish -------------------------------------------------------------------------------- /common/config/rush/artifactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/config/rush/artifactory.json -------------------------------------------------------------------------------- /common/config/rush/build-cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/config/rush/build-cache.json -------------------------------------------------------------------------------- /common/config/rush/cobuild.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/config/rush/cobuild.json -------------------------------------------------------------------------------- /common/config/rush/command-line.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/config/rush/command-line.json -------------------------------------------------------------------------------- /common/config/rush/custom-tips.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/config/rush/custom-tips.json -------------------------------------------------------------------------------- /common/config/rush/experiments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/config/rush/experiments.json -------------------------------------------------------------------------------- /common/config/rush/pnpm-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/config/rush/pnpm-config.json -------------------------------------------------------------------------------- /common/config/rush/rush-plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/config/rush/rush-plugins.json -------------------------------------------------------------------------------- /common/config/rush/subspaces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/config/rush/subspaces.json -------------------------------------------------------------------------------- /common/config/rush/version-policies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/config/rush/version-policies.json -------------------------------------------------------------------------------- /common/config/subspaces/default/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/config/subspaces/default/.npmrc -------------------------------------------------------------------------------- /common/docs/rfcs/rfc-4230-rush-subspaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/docs/rfcs/rfc-4230-rush-subspaces.md -------------------------------------------------------------------------------- /common/git-hooks/commit-msg.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/git-hooks/commit-msg.sample -------------------------------------------------------------------------------- /common/git-hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/git-hooks/pre-commit -------------------------------------------------------------------------------- /common/reviews/api/api-documenter.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/reviews/api/api-documenter.api.md -------------------------------------------------------------------------------- /common/reviews/api/api-extractor.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/reviews/api/api-extractor.api.md -------------------------------------------------------------------------------- /common/reviews/api/credential-cache.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/reviews/api/credential-cache.api.md -------------------------------------------------------------------------------- /common/reviews/api/heft-config-file.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/reviews/api/heft-config-file.api.md -------------------------------------------------------------------------------- /common/reviews/api/heft-jest-plugin.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/reviews/api/heft-jest-plugin.api.md -------------------------------------------------------------------------------- /common/reviews/api/heft-rspack-plugin.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/reviews/api/heft-rspack-plugin.api.md -------------------------------------------------------------------------------- /common/reviews/api/heft-sass-plugin.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/reviews/api/heft-sass-plugin.api.md -------------------------------------------------------------------------------- /common/reviews/api/heft.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/reviews/api/heft.api.md -------------------------------------------------------------------------------- /common/reviews/api/lookup-by-path.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/reviews/api/lookup-by-path.api.md -------------------------------------------------------------------------------- /common/reviews/api/mcp-server.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/reviews/api/mcp-server.api.md -------------------------------------------------------------------------------- /common/reviews/api/module-minifier.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/reviews/api/module-minifier.api.md -------------------------------------------------------------------------------- /common/reviews/api/node-core-library.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/reviews/api/node-core-library.api.md -------------------------------------------------------------------------------- /common/reviews/api/operation-graph.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/reviews/api/operation-graph.api.md -------------------------------------------------------------------------------- /common/reviews/api/package-deps-hash.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/reviews/api/package-deps-hash.api.md -------------------------------------------------------------------------------- /common/reviews/api/package-extractor.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/reviews/api/package-extractor.api.md -------------------------------------------------------------------------------- /common/reviews/api/problem-matcher.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/reviews/api/problem-matcher.api.md -------------------------------------------------------------------------------- /common/reviews/api/rig-package.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/reviews/api/rig-package.api.md -------------------------------------------------------------------------------- /common/reviews/api/rush-lib.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/reviews/api/rush-lib.api.md -------------------------------------------------------------------------------- /common/reviews/api/rush-sdk.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/reviews/api/rush-sdk.api.md -------------------------------------------------------------------------------- /common/reviews/api/rush-serve-plugin.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/reviews/api/rush-serve-plugin.api.md -------------------------------------------------------------------------------- /common/reviews/api/rush-themed-ui.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/reviews/api/rush-themed-ui.api.md -------------------------------------------------------------------------------- /common/reviews/api/rushell.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/reviews/api/rushell.api.md -------------------------------------------------------------------------------- /common/reviews/api/stream-collator.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/reviews/api/stream-collator.api.md -------------------------------------------------------------------------------- /common/reviews/api/terminal.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/reviews/api/terminal.api.md -------------------------------------------------------------------------------- /common/reviews/api/tree-pattern.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/reviews/api/tree-pattern.api.md -------------------------------------------------------------------------------- /common/reviews/api/ts-command-line.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/reviews/api/ts-command-line.api.md -------------------------------------------------------------------------------- /common/reviews/api/typings-generator.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/reviews/api/typings-generator.api.md -------------------------------------------------------------------------------- /common/reviews/api/worker-pool.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/reviews/api/worker-pool.api.md -------------------------------------------------------------------------------- /common/scripts/install-run-rush-pnpm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/scripts/install-run-rush-pnpm.js -------------------------------------------------------------------------------- /common/scripts/install-run-rush.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/scripts/install-run-rush.js -------------------------------------------------------------------------------- /common/scripts/install-run-rushx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/scripts/install-run-rushx.js -------------------------------------------------------------------------------- /common/scripts/install-run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/scripts/install-run.js -------------------------------------------------------------------------------- /common/wiki-images/api-extractor-title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/wiki-images/api-extractor-title.png -------------------------------------------------------------------------------- /common/wiki-images/heft-300x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/wiki-images/heft-300x120.png -------------------------------------------------------------------------------- /common/wiki-images/performance_pnpm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/wiki-images/performance_pnpm.png -------------------------------------------------------------------------------- /common/wiki-images/rush-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/common/wiki-images/rush-logo.png -------------------------------------------------------------------------------- /eslint/eslint-bulk/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-bulk/.npmignore -------------------------------------------------------------------------------- /eslint/eslint-bulk/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-bulk/CHANGELOG.json -------------------------------------------------------------------------------- /eslint/eslint-bulk/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-bulk/CHANGELOG.md -------------------------------------------------------------------------------- /eslint/eslint-bulk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-bulk/LICENSE -------------------------------------------------------------------------------- /eslint/eslint-bulk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-bulk/README.md -------------------------------------------------------------------------------- /eslint/eslint-bulk/bin/eslint-bulk: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../lib/start.js'); 3 | -------------------------------------------------------------------------------- /eslint/eslint-bulk/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-bulk/config/rig.json -------------------------------------------------------------------------------- /eslint/eslint-bulk/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-bulk/eslint.config.js -------------------------------------------------------------------------------- /eslint/eslint-bulk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-bulk/package.json -------------------------------------------------------------------------------- /eslint/eslint-bulk/src/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-bulk/src/start.ts -------------------------------------------------------------------------------- /eslint/eslint-bulk/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-bulk/tsconfig.json -------------------------------------------------------------------------------- /eslint/eslint-config/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-config/.npmignore -------------------------------------------------------------------------------- /eslint/eslint-config/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-config/CHANGELOG.json -------------------------------------------------------------------------------- /eslint/eslint-config/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-config/CHANGELOG.md -------------------------------------------------------------------------------- /eslint/eslint-config/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-config/LICENSE -------------------------------------------------------------------------------- /eslint/eslint-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-config/README.md -------------------------------------------------------------------------------- /eslint/eslint-config/flat/mixins/packlets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-config/flat/mixins/packlets.js -------------------------------------------------------------------------------- /eslint/eslint-config/flat/mixins/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-config/flat/mixins/react.js -------------------------------------------------------------------------------- /eslint/eslint-config/flat/mixins/tsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-config/flat/mixins/tsdoc.js -------------------------------------------------------------------------------- /eslint/eslint-config/flat/profile/_common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-config/flat/profile/_common.js -------------------------------------------------------------------------------- /eslint/eslint-config/flat/profile/_macros.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-config/flat/profile/_macros.js -------------------------------------------------------------------------------- /eslint/eslint-config/flat/profile/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-config/flat/profile/node.js -------------------------------------------------------------------------------- /eslint/eslint-config/flat/profile/web-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-config/flat/profile/web-app.js -------------------------------------------------------------------------------- /eslint/eslint-config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-config/index.js -------------------------------------------------------------------------------- /eslint/eslint-config/mixins/packlets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-config/mixins/packlets.js -------------------------------------------------------------------------------- /eslint/eslint-config/mixins/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-config/mixins/react.js -------------------------------------------------------------------------------- /eslint/eslint-config/mixins/tsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-config/mixins/tsdoc.js -------------------------------------------------------------------------------- /eslint/eslint-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-config/package.json -------------------------------------------------------------------------------- /eslint/eslint-config/patch-eslint6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-config/patch-eslint6.js -------------------------------------------------------------------------------- /eslint/eslint-config/profile/_common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-config/profile/_common.js -------------------------------------------------------------------------------- /eslint/eslint-config/profile/_macros.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-config/profile/_macros.js -------------------------------------------------------------------------------- /eslint/eslint-config/profile/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-config/profile/node.js -------------------------------------------------------------------------------- /eslint/eslint-config/profile/web-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-config/profile/web-app.js -------------------------------------------------------------------------------- /eslint/eslint-config/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-config/react.js -------------------------------------------------------------------------------- /eslint/eslint-patch/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-patch/.npmignore -------------------------------------------------------------------------------- /eslint/eslint-patch/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-patch/CHANGELOG.json -------------------------------------------------------------------------------- /eslint/eslint-patch/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-patch/CHANGELOG.md -------------------------------------------------------------------------------- /eslint/eslint-patch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-patch/LICENSE -------------------------------------------------------------------------------- /eslint/eslint-patch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-patch/README.md -------------------------------------------------------------------------------- /eslint/eslint-patch/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-patch/config/rig.json -------------------------------------------------------------------------------- /eslint/eslint-patch/custom-config-package-names.js: -------------------------------------------------------------------------------- 1 | require('./lib/custom-config-package-names'); 2 | -------------------------------------------------------------------------------- /eslint/eslint-patch/eslint-bulk-suppressions.js: -------------------------------------------------------------------------------- 1 | require('./lib/eslint-bulk-suppressions'); 2 | -------------------------------------------------------------------------------- /eslint/eslint-patch/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-patch/eslint.config.js -------------------------------------------------------------------------------- /eslint/eslint-patch/modern-module-resolution.js: -------------------------------------------------------------------------------- 1 | require('./lib/modern-module-resolution'); 2 | -------------------------------------------------------------------------------- /eslint/eslint-patch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-patch/package.json -------------------------------------------------------------------------------- /eslint/eslint-patch/src/_patch-base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-patch/src/_patch-base.ts -------------------------------------------------------------------------------- /eslint/eslint-patch/src/usage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-patch/src/usage.ts -------------------------------------------------------------------------------- /eslint/eslint-patch/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-patch/tsconfig.json -------------------------------------------------------------------------------- /eslint/eslint-plugin-packlets/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin-packlets/.npmignore -------------------------------------------------------------------------------- /eslint/eslint-plugin-packlets/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin-packlets/CHANGELOG.json -------------------------------------------------------------------------------- /eslint/eslint-plugin-packlets/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin-packlets/CHANGELOG.md -------------------------------------------------------------------------------- /eslint/eslint-plugin-packlets/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin-packlets/LICENSE -------------------------------------------------------------------------------- /eslint/eslint-plugin-packlets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin-packlets/README.md -------------------------------------------------------------------------------- /eslint/eslint-plugin-packlets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin-packlets/package.json -------------------------------------------------------------------------------- /eslint/eslint-plugin-packlets/src/Path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin-packlets/src/Path.ts -------------------------------------------------------------------------------- /eslint/eslint-plugin-packlets/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin-packlets/src/index.ts -------------------------------------------------------------------------------- /eslint/eslint-plugin-packlets/src/readme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin-packlets/src/readme.ts -------------------------------------------------------------------------------- /eslint/eslint-plugin-packlets/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin-packlets/tsconfig.json -------------------------------------------------------------------------------- /eslint/eslint-plugin-security/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin-security/.npmignore -------------------------------------------------------------------------------- /eslint/eslint-plugin-security/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin-security/CHANGELOG.json -------------------------------------------------------------------------------- /eslint/eslint-plugin-security/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin-security/CHANGELOG.md -------------------------------------------------------------------------------- /eslint/eslint-plugin-security/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin-security/LICENSE -------------------------------------------------------------------------------- /eslint/eslint-plugin-security/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin-security/README.md -------------------------------------------------------------------------------- /eslint/eslint-plugin-security/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin-security/package.json -------------------------------------------------------------------------------- /eslint/eslint-plugin-security/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin-security/src/index.ts -------------------------------------------------------------------------------- /eslint/eslint-plugin-security/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin-security/tsconfig.json -------------------------------------------------------------------------------- /eslint/eslint-plugin/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin/.npmignore -------------------------------------------------------------------------------- /eslint/eslint-plugin/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin/CHANGELOG.json -------------------------------------------------------------------------------- /eslint/eslint-plugin/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin/CHANGELOG.md -------------------------------------------------------------------------------- /eslint/eslint-plugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin/LICENSE -------------------------------------------------------------------------------- /eslint/eslint-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin/README.md -------------------------------------------------------------------------------- /eslint/eslint-plugin/config/jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin/config/jest.config.json -------------------------------------------------------------------------------- /eslint/eslint-plugin/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin/config/rig.json -------------------------------------------------------------------------------- /eslint/eslint-plugin/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin/eslint.config.js -------------------------------------------------------------------------------- /eslint/eslint-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin/package.json -------------------------------------------------------------------------------- /eslint/eslint-plugin/src/LintUtilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin/src/LintUtilities.ts -------------------------------------------------------------------------------- /eslint/eslint-plugin/src/hoist-jest-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin/src/hoist-jest-mock.ts -------------------------------------------------------------------------------- /eslint/eslint-plugin/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin/src/index.ts -------------------------------------------------------------------------------- /eslint/eslint-plugin/src/no-new-null.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin/src/no-new-null.ts -------------------------------------------------------------------------------- /eslint/eslint-plugin/src/no-null.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin/src/no-null.ts -------------------------------------------------------------------------------- /eslint/eslint-plugin/src/test/ruleTester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin/src/test/ruleTester.ts -------------------------------------------------------------------------------- /eslint/eslint-plugin/src/typedef-var.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin/src/typedef-var.ts -------------------------------------------------------------------------------- /eslint/eslint-plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/eslint-plugin/tsconfig.json -------------------------------------------------------------------------------- /eslint/local-eslint-config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/local-eslint-config/.gitignore -------------------------------------------------------------------------------- /eslint/local-eslint-config/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/local-eslint-config/.npmignore -------------------------------------------------------------------------------- /eslint/local-eslint-config/config/heft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/local-eslint-config/config/heft.json -------------------------------------------------------------------------------- /eslint/local-eslint-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/eslint/local-eslint-config/package.json -------------------------------------------------------------------------------- /heft-plugins/heft-dev-cert-plugin/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-dev-cert-plugin/.npmignore -------------------------------------------------------------------------------- /heft-plugins/heft-dev-cert-plugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-dev-cert-plugin/LICENSE -------------------------------------------------------------------------------- /heft-plugins/heft-dev-cert-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-dev-cert-plugin/README.md -------------------------------------------------------------------------------- /heft-plugins/heft-jest-plugin/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-jest-plugin/.npmignore -------------------------------------------------------------------------------- /heft-plugins/heft-jest-plugin/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-jest-plugin/CHANGELOG.json -------------------------------------------------------------------------------- /heft-plugins/heft-jest-plugin/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-jest-plugin/CHANGELOG.md -------------------------------------------------------------------------------- /heft-plugins/heft-jest-plugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-jest-plugin/LICENSE -------------------------------------------------------------------------------- /heft-plugins/heft-jest-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-jest-plugin/README.md -------------------------------------------------------------------------------- /heft-plugins/heft-jest-plugin/UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-jest-plugin/UPGRADING.md -------------------------------------------------------------------------------- /heft-plugins/heft-jest-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-jest-plugin/package.json -------------------------------------------------------------------------------- /heft-plugins/heft-jest-plugin/src/test/project2/config/jest.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../a/jest.config.json" 3 | } 4 | -------------------------------------------------------------------------------- /heft-plugins/heft-jest-plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-jest-plugin/tsconfig.json -------------------------------------------------------------------------------- /heft-plugins/heft-lint-plugin/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-lint-plugin/.npmignore -------------------------------------------------------------------------------- /heft-plugins/heft-lint-plugin/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-lint-plugin/CHANGELOG.json -------------------------------------------------------------------------------- /heft-plugins/heft-lint-plugin/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-lint-plugin/CHANGELOG.md -------------------------------------------------------------------------------- /heft-plugins/heft-lint-plugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-lint-plugin/LICENSE -------------------------------------------------------------------------------- /heft-plugins/heft-lint-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-lint-plugin/README.md -------------------------------------------------------------------------------- /heft-plugins/heft-lint-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-lint-plugin/package.json -------------------------------------------------------------------------------- /heft-plugins/heft-lint-plugin/src/Eslint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-lint-plugin/src/Eslint.ts -------------------------------------------------------------------------------- /heft-plugins/heft-lint-plugin/src/Tslint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-lint-plugin/src/Tslint.ts -------------------------------------------------------------------------------- /heft-plugins/heft-lint-plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-lint-plugin/tsconfig.json -------------------------------------------------------------------------------- /heft-plugins/heft-rspack-plugin/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-rspack-plugin/.npmignore -------------------------------------------------------------------------------- /heft-plugins/heft-rspack-plugin/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-rspack-plugin/CHANGELOG.md -------------------------------------------------------------------------------- /heft-plugins/heft-rspack-plugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-rspack-plugin/LICENSE -------------------------------------------------------------------------------- /heft-plugins/heft-rspack-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-rspack-plugin/README.md -------------------------------------------------------------------------------- /heft-plugins/heft-rspack-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-rspack-plugin/package.json -------------------------------------------------------------------------------- /heft-plugins/heft-rspack-plugin/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-rspack-plugin/src/index.ts -------------------------------------------------------------------------------- /heft-plugins/heft-sass-plugin/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-sass-plugin/.npmignore -------------------------------------------------------------------------------- /heft-plugins/heft-sass-plugin/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-sass-plugin/CHANGELOG.json -------------------------------------------------------------------------------- /heft-plugins/heft-sass-plugin/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-sass-plugin/CHANGELOG.md -------------------------------------------------------------------------------- /heft-plugins/heft-sass-plugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-sass-plugin/LICENSE -------------------------------------------------------------------------------- /heft-plugins/heft-sass-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-sass-plugin/README.md -------------------------------------------------------------------------------- /heft-plugins/heft-sass-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-sass-plugin/package.json -------------------------------------------------------------------------------- /heft-plugins/heft-sass-plugin/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-sass-plugin/src/index.ts -------------------------------------------------------------------------------- /heft-plugins/heft-sass-plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-sass-plugin/tsconfig.json -------------------------------------------------------------------------------- /heft-plugins/heft-storybook-plugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-storybook-plugin/LICENSE -------------------------------------------------------------------------------- /heft-plugins/heft-storybook-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-storybook-plugin/README.md -------------------------------------------------------------------------------- /heft-plugins/heft-typescript-plugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-typescript-plugin/LICENSE -------------------------------------------------------------------------------- /heft-plugins/heft-webpack4-plugin/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-webpack4-plugin/.npmignore -------------------------------------------------------------------------------- /heft-plugins/heft-webpack4-plugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-webpack4-plugin/LICENSE -------------------------------------------------------------------------------- /heft-plugins/heft-webpack4-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-webpack4-plugin/README.md -------------------------------------------------------------------------------- /heft-plugins/heft-webpack5-plugin/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-webpack5-plugin/.npmignore -------------------------------------------------------------------------------- /heft-plugins/heft-webpack5-plugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-webpack5-plugin/LICENSE -------------------------------------------------------------------------------- /heft-plugins/heft-webpack5-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/heft-plugins/heft-webpack5-plugin/README.md -------------------------------------------------------------------------------- /libraries/api-extractor-model/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/api-extractor-model/.npmignore -------------------------------------------------------------------------------- /libraries/api-extractor-model/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/api-extractor-model/CHANGELOG.json -------------------------------------------------------------------------------- /libraries/api-extractor-model/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/api-extractor-model/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/api-extractor-model/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/api-extractor-model/LICENSE -------------------------------------------------------------------------------- /libraries/api-extractor-model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/api-extractor-model/README.md -------------------------------------------------------------------------------- /libraries/api-extractor-model/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/api-extractor-model/package.json -------------------------------------------------------------------------------- /libraries/api-extractor-model/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/api-extractor-model/src/index.ts -------------------------------------------------------------------------------- /libraries/api-extractor-model/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/api-extractor-model/tsconfig.json -------------------------------------------------------------------------------- /libraries/credential-cache/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/credential-cache/.npmignore -------------------------------------------------------------------------------- /libraries/credential-cache/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/credential-cache/CHANGELOG.json -------------------------------------------------------------------------------- /libraries/credential-cache/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/credential-cache/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/credential-cache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/credential-cache/LICENSE -------------------------------------------------------------------------------- /libraries/credential-cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/credential-cache/README.md -------------------------------------------------------------------------------- /libraries/credential-cache/config/heft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/credential-cache/config/heft.json -------------------------------------------------------------------------------- /libraries/credential-cache/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/credential-cache/config/rig.json -------------------------------------------------------------------------------- /libraries/credential-cache/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/credential-cache/eslint.config.js -------------------------------------------------------------------------------- /libraries/credential-cache/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/credential-cache/package.json -------------------------------------------------------------------------------- /libraries/credential-cache/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/credential-cache/src/index.ts -------------------------------------------------------------------------------- /libraries/credential-cache/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/credential-cache/tsconfig.json -------------------------------------------------------------------------------- /libraries/debug-certificate-manager/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/debug-certificate-manager/LICENSE -------------------------------------------------------------------------------- /libraries/heft-config-file/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/heft-config-file/.npmignore -------------------------------------------------------------------------------- /libraries/heft-config-file/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/heft-config-file/CHANGELOG.json -------------------------------------------------------------------------------- /libraries/heft-config-file/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/heft-config-file/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/heft-config-file/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/heft-config-file/LICENSE -------------------------------------------------------------------------------- /libraries/heft-config-file/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/heft-config-file/README.md -------------------------------------------------------------------------------- /libraries/heft-config-file/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/heft-config-file/config/rig.json -------------------------------------------------------------------------------- /libraries/heft-config-file/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/heft-config-file/eslint.config.js -------------------------------------------------------------------------------- /libraries/heft-config-file/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/heft-config-file/package.json -------------------------------------------------------------------------------- /libraries/heft-config-file/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/heft-config-file/src/index.ts -------------------------------------------------------------------------------- /libraries/heft-config-file/src/test/errorCases/circularReference/config1.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./config2.json" 3 | } 4 | -------------------------------------------------------------------------------- /libraries/heft-config-file/src/test/errorCases/circularReference/config2.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./config3.json" 3 | } 4 | -------------------------------------------------------------------------------- /libraries/heft-config-file/src/test/errorCases/circularReference/config3.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./config1.json" 3 | } 4 | -------------------------------------------------------------------------------- /libraries/heft-config-file/src/test/errorCases/extendsNotExist/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./config2.json" 3 | } 4 | -------------------------------------------------------------------------------- /libraries/heft-config-file/src/test/errorCases/invalidCombinedFile/config2.json: -------------------------------------------------------------------------------- 1 | { 2 | "filePaths": ["value"] 3 | } 4 | -------------------------------------------------------------------------------- /libraries/heft-config-file/src/test/errorCases/invalidJson/.gitattributes: -------------------------------------------------------------------------------- 1 | *.json text eol=lf -------------------------------------------------------------------------------- /libraries/heft-config-file/src/test/errorCases/invalidJson/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "filePaths": "A 3 | } 4 | -------------------------------------------------------------------------------- /libraries/heft-config-file/src/test/errorCases/invalidType/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "filePaths": "A" 3 | } 4 | -------------------------------------------------------------------------------- /libraries/heft-config-file/src/test/project-referencing-rig/.gitignore: -------------------------------------------------------------------------------- 1 | !node_modules 2 | -------------------------------------------------------------------------------- /libraries/heft-config-file/src/test/project-referencing-rig/config/rig.json: -------------------------------------------------------------------------------- 1 | { 2 | "rigPackageName": "test-rig" 3 | } 4 | -------------------------------------------------------------------------------- /libraries/heft-config-file/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/heft-config-file/tsconfig.json -------------------------------------------------------------------------------- /libraries/load-themed-styles/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/load-themed-styles/.npmignore -------------------------------------------------------------------------------- /libraries/load-themed-styles/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/load-themed-styles/CHANGELOG.json -------------------------------------------------------------------------------- /libraries/load-themed-styles/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/load-themed-styles/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/load-themed-styles/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/load-themed-styles/LICENSE -------------------------------------------------------------------------------- /libraries/load-themed-styles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/load-themed-styles/README.md -------------------------------------------------------------------------------- /libraries/load-themed-styles/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/load-themed-styles/config/rig.json -------------------------------------------------------------------------------- /libraries/load-themed-styles/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/load-themed-styles/package.json -------------------------------------------------------------------------------- /libraries/load-themed-styles/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/load-themed-styles/src/index.ts -------------------------------------------------------------------------------- /libraries/load-themed-styles/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/load-themed-styles/tsconfig.json -------------------------------------------------------------------------------- /libraries/localization-utilities/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/localization-utilities/.npmignore -------------------------------------------------------------------------------- /libraries/localization-utilities/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/localization-utilities/LICENSE -------------------------------------------------------------------------------- /libraries/localization-utilities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/localization-utilities/README.md -------------------------------------------------------------------------------- /libraries/lookup-by-path/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/lookup-by-path/.npmignore -------------------------------------------------------------------------------- /libraries/lookup-by-path/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/lookup-by-path/CHANGELOG.json -------------------------------------------------------------------------------- /libraries/lookup-by-path/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/lookup-by-path/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/lookup-by-path/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/lookup-by-path/LICENSE -------------------------------------------------------------------------------- /libraries/lookup-by-path/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/lookup-by-path/README.md -------------------------------------------------------------------------------- /libraries/lookup-by-path/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/lookup-by-path/config/rig.json -------------------------------------------------------------------------------- /libraries/lookup-by-path/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/lookup-by-path/eslint.config.js -------------------------------------------------------------------------------- /libraries/lookup-by-path/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/lookup-by-path/package.json -------------------------------------------------------------------------------- /libraries/lookup-by-path/src/LookupByPath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/lookup-by-path/src/LookupByPath.ts -------------------------------------------------------------------------------- /libraries/lookup-by-path/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/lookup-by-path/src/index.ts -------------------------------------------------------------------------------- /libraries/lookup-by-path/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/lookup-by-path/tsconfig.json -------------------------------------------------------------------------------- /libraries/module-minifier/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/module-minifier/.npmignore -------------------------------------------------------------------------------- /libraries/module-minifier/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/module-minifier/CHANGELOG.json -------------------------------------------------------------------------------- /libraries/module-minifier/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/module-minifier/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/module-minifier/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/module-minifier/LICENSE -------------------------------------------------------------------------------- /libraries/module-minifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/module-minifier/README.md -------------------------------------------------------------------------------- /libraries/module-minifier/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/module-minifier/config/rig.json -------------------------------------------------------------------------------- /libraries/module-minifier/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/module-minifier/eslint.config.js -------------------------------------------------------------------------------- /libraries/module-minifier/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/module-minifier/package.json -------------------------------------------------------------------------------- /libraries/module-minifier/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/module-minifier/src/constants.ts -------------------------------------------------------------------------------- /libraries/module-minifier/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/module-minifier/src/index.ts -------------------------------------------------------------------------------- /libraries/module-minifier/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/module-minifier/src/types.ts -------------------------------------------------------------------------------- /libraries/module-minifier/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/module-minifier/tsconfig.json -------------------------------------------------------------------------------- /libraries/node-core-library/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/node-core-library/.npmignore -------------------------------------------------------------------------------- /libraries/node-core-library/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/node-core-library/CHANGELOG.json -------------------------------------------------------------------------------- /libraries/node-core-library/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/node-core-library/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/node-core-library/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/node-core-library/LICENSE -------------------------------------------------------------------------------- /libraries/node-core-library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/node-core-library/README.md -------------------------------------------------------------------------------- /libraries/node-core-library/config/heft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/node-core-library/config/heft.json -------------------------------------------------------------------------------- /libraries/node-core-library/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/node-core-library/config/rig.json -------------------------------------------------------------------------------- /libraries/node-core-library/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/node-core-library/eslint.config.js -------------------------------------------------------------------------------- /libraries/node-core-library/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/node-core-library/package.json -------------------------------------------------------------------------------- /libraries/node-core-library/src/Async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/node-core-library/src/Async.ts -------------------------------------------------------------------------------- /libraries/node-core-library/src/Constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/node-core-library/src/Constants.ts -------------------------------------------------------------------------------- /libraries/node-core-library/src/Enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/node-core-library/src/Enum.ts -------------------------------------------------------------------------------- /libraries/node-core-library/src/FileError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/node-core-library/src/FileError.ts -------------------------------------------------------------------------------- /libraries/node-core-library/src/Import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/node-core-library/src/Import.ts -------------------------------------------------------------------------------- /libraries/node-core-library/src/JsonFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/node-core-library/src/JsonFile.ts -------------------------------------------------------------------------------- /libraries/node-core-library/src/LockFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/node-core-library/src/LockFile.ts -------------------------------------------------------------------------------- /libraries/node-core-library/src/Path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/node-core-library/src/Path.ts -------------------------------------------------------------------------------- /libraries/node-core-library/src/Sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/node-core-library/src/Sort.ts -------------------------------------------------------------------------------- /libraries/node-core-library/src/Text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/node-core-library/src/Text.ts -------------------------------------------------------------------------------- /libraries/node-core-library/src/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/node-core-library/src/User.ts -------------------------------------------------------------------------------- /libraries/node-core-library/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/node-core-library/src/index.ts -------------------------------------------------------------------------------- /libraries/node-core-library/src/test/2/test#999999999.lock: -------------------------------------------------------------------------------- 1 | 2012-01-02 12:53:12 -------------------------------------------------------------------------------- /libraries/node-core-library/src/test/3/test#1.lock: -------------------------------------------------------------------------------- 1 | 2012-01-02 12:53:12 -------------------------------------------------------------------------------- /libraries/node-core-library/src/test/test-data/example-subdir-package-no-name/src/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "nonstandardField": 123 3 | } 4 | -------------------------------------------------------------------------------- /libraries/node-core-library/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/node-core-library/tsconfig.json -------------------------------------------------------------------------------- /libraries/npm-check-fork/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/npm-check-fork/.npmignore -------------------------------------------------------------------------------- /libraries/npm-check-fork/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/npm-check-fork/CHANGELOG.json -------------------------------------------------------------------------------- /libraries/npm-check-fork/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/npm-check-fork/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/npm-check-fork/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/npm-check-fork/LICENSE -------------------------------------------------------------------------------- /libraries/npm-check-fork/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/npm-check-fork/README.md -------------------------------------------------------------------------------- /libraries/npm-check-fork/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/npm-check-fork/config/rig.json -------------------------------------------------------------------------------- /libraries/npm-check-fork/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/npm-check-fork/eslint.config.js -------------------------------------------------------------------------------- /libraries/npm-check-fork/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/npm-check-fork/package.json -------------------------------------------------------------------------------- /libraries/npm-check-fork/src/NpmCheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/npm-check-fork/src/NpmCheck.ts -------------------------------------------------------------------------------- /libraries/npm-check-fork/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/npm-check-fork/src/index.ts -------------------------------------------------------------------------------- /libraries/npm-check-fork/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/npm-check-fork/tsconfig.json -------------------------------------------------------------------------------- /libraries/operation-graph/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/operation-graph/.npmignore -------------------------------------------------------------------------------- /libraries/operation-graph/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/operation-graph/CHANGELOG.json -------------------------------------------------------------------------------- /libraries/operation-graph/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/operation-graph/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/operation-graph/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/operation-graph/LICENSE -------------------------------------------------------------------------------- /libraries/operation-graph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/operation-graph/README.md -------------------------------------------------------------------------------- /libraries/operation-graph/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/operation-graph/config/rig.json -------------------------------------------------------------------------------- /libraries/operation-graph/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/operation-graph/package.json -------------------------------------------------------------------------------- /libraries/operation-graph/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/operation-graph/src/index.ts -------------------------------------------------------------------------------- /libraries/operation-graph/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/operation-graph/tsconfig.json -------------------------------------------------------------------------------- /libraries/package-deps-hash/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/package-deps-hash/.npmignore -------------------------------------------------------------------------------- /libraries/package-deps-hash/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/package-deps-hash/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/package-deps-hash/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/package-deps-hash/LICENSE -------------------------------------------------------------------------------- /libraries/package-deps-hash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/package-deps-hash/README.md -------------------------------------------------------------------------------- /libraries/package-deps-hash/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/package-deps-hash/package.json -------------------------------------------------------------------------------- /libraries/package-deps-hash/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/package-deps-hash/src/index.ts -------------------------------------------------------------------------------- /libraries/package-deps-hash/src/test/nestedTestProject/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": {} 3 | } 4 | -------------------------------------------------------------------------------- /libraries/package-deps-hash/src/test/nestedTestProject/src/file 1.txt: -------------------------------------------------------------------------------- 1 | file1. -------------------------------------------------------------------------------- /libraries/package-deps-hash/src/test/testProject/file 2.txt: -------------------------------------------------------------------------------- 1 | file 2. -------------------------------------------------------------------------------- /libraries/package-deps-hash/src/test/testProject/file1.txt: -------------------------------------------------------------------------------- 1 | file1. -------------------------------------------------------------------------------- /libraries/package-deps-hash/src/test/testProject/file蝴蝶.txt: -------------------------------------------------------------------------------- 1 | file蝴蝶. -------------------------------------------------------------------------------- /libraries/package-deps-hash/src/test/testProject/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": {} 3 | } 4 | -------------------------------------------------------------------------------- /libraries/package-deps-hash/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/package-deps-hash/tsconfig.json -------------------------------------------------------------------------------- /libraries/package-extractor/.gitignore: -------------------------------------------------------------------------------- 1 | test-output 2 | -------------------------------------------------------------------------------- /libraries/package-extractor/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/package-extractor/.npmignore -------------------------------------------------------------------------------- /libraries/package-extractor/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/package-extractor/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/package-extractor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/package-extractor/LICENSE -------------------------------------------------------------------------------- /libraries/package-extractor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/package-extractor/README.md -------------------------------------------------------------------------------- /libraries/package-extractor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/package-extractor/package.json -------------------------------------------------------------------------------- /libraries/package-extractor/src/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/package-extractor/src/Utils.ts -------------------------------------------------------------------------------- /libraries/package-extractor/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/package-extractor/src/index.ts -------------------------------------------------------------------------------- /libraries/package-extractor/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/package-extractor/tsconfig.json -------------------------------------------------------------------------------- /libraries/problem-matcher/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/problem-matcher/.npmignore -------------------------------------------------------------------------------- /libraries/problem-matcher/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/problem-matcher/CHANGELOG.json -------------------------------------------------------------------------------- /libraries/problem-matcher/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/problem-matcher/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/problem-matcher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/problem-matcher/LICENSE -------------------------------------------------------------------------------- /libraries/problem-matcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/problem-matcher/README.md -------------------------------------------------------------------------------- /libraries/problem-matcher/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/problem-matcher/config/rig.json -------------------------------------------------------------------------------- /libraries/problem-matcher/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/problem-matcher/package.json -------------------------------------------------------------------------------- /libraries/problem-matcher/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/problem-matcher/src/index.ts -------------------------------------------------------------------------------- /libraries/problem-matcher/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/problem-matcher/tsconfig.json -------------------------------------------------------------------------------- /libraries/rig-package/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rig-package/.npmignore -------------------------------------------------------------------------------- /libraries/rig-package/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rig-package/.vscode/launch.json -------------------------------------------------------------------------------- /libraries/rig-package/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rig-package/CHANGELOG.json -------------------------------------------------------------------------------- /libraries/rig-package/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rig-package/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/rig-package/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rig-package/LICENSE -------------------------------------------------------------------------------- /libraries/rig-package/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rig-package/README.md -------------------------------------------------------------------------------- /libraries/rig-package/config/heft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rig-package/config/heft.json -------------------------------------------------------------------------------- /libraries/rig-package/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rig-package/config/rig.json -------------------------------------------------------------------------------- /libraries/rig-package/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rig-package/eslint.config.js -------------------------------------------------------------------------------- /libraries/rig-package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rig-package/package.json -------------------------------------------------------------------------------- /libraries/rig-package/src/Helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rig-package/src/Helpers.ts -------------------------------------------------------------------------------- /libraries/rig-package/src/RigConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rig-package/src/RigConfig.ts -------------------------------------------------------------------------------- /libraries/rig-package/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rig-package/src/index.ts -------------------------------------------------------------------------------- /libraries/rig-package/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rig-package/tsconfig.json -------------------------------------------------------------------------------- /libraries/rush-lib/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-lib/.npmignore -------------------------------------------------------------------------------- /libraries/rush-lib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-lib/LICENSE -------------------------------------------------------------------------------- /libraries/rush-lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-lib/README.md -------------------------------------------------------------------------------- /libraries/rush-lib/config/heft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-lib/config/heft.json -------------------------------------------------------------------------------- /libraries/rush-lib/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-lib/config/rig.json -------------------------------------------------------------------------------- /libraries/rush-lib/config/typescript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-lib/config/typescript.json -------------------------------------------------------------------------------- /libraries/rush-lib/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-lib/eslint.config.js -------------------------------------------------------------------------------- /libraries/rush-lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-lib/package.json -------------------------------------------------------------------------------- /libraries/rush-lib/src/api/ChangeFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-lib/src/api/ChangeFile.ts -------------------------------------------------------------------------------- /libraries/rush-lib/src/api/Changelog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-lib/src/api/Changelog.ts -------------------------------------------------------------------------------- /libraries/rush-lib/src/api/EventHooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-lib/src/api/EventHooks.ts -------------------------------------------------------------------------------- /libraries/rush-lib/src/api/FlagFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-lib/src/api/FlagFile.ts -------------------------------------------------------------------------------- /libraries/rush-lib/src/api/Rush.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-lib/src/api/Rush.ts -------------------------------------------------------------------------------- /libraries/rush-lib/src/api/Subspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-lib/src/api/Subspace.ts -------------------------------------------------------------------------------- /libraries/rush-lib/src/api/Variants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-lib/src/api/Variants.ts -------------------------------------------------------------------------------- /libraries/rush-lib/src/api/test/pnpmConfigThrow/common/config/rush/pnpm-config.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /libraries/rush-lib/src/cli/actions/test/addRepo/.gitignore: -------------------------------------------------------------------------------- 1 | common/temp -------------------------------------------------------------------------------- /libraries/rush-lib/src/cli/actions/test/removeRepo/.gitignore: -------------------------------------------------------------------------------- 1 | common/temp 2 | -------------------------------------------------------------------------------- /libraries/rush-lib/src/cli/test/repo/common/config/rush/experiments.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /libraries/rush-lib/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-lib/src/index.ts -------------------------------------------------------------------------------- /libraries/rush-lib/src/logic/Git.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-lib/src/logic/Git.ts -------------------------------------------------------------------------------- /libraries/rush-lib/src/logic/Selection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-lib/src/logic/Selection.ts -------------------------------------------------------------------------------- /libraries/rush-lib/src/logic/Telemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-lib/src/logic/Telemetry.ts -------------------------------------------------------------------------------- /libraries/rush-lib/src/logic/dotenv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-lib/src/logic/dotenv.ts -------------------------------------------------------------------------------- /libraries/rush-lib/src/logic/pnpm/test/jsonFiles/pnpm-config-unknown.json: -------------------------------------------------------------------------------- 1 | { 2 | "unknownProperty": {} 3 | } 4 | -------------------------------------------------------------------------------- /libraries/rush-lib/src/logic/test/exampleInvalidChangelog/emptyFile/CHANGELOG.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/rush-lib/src/logic/test/exampleInvalidChangelog/emptyObject/CHANGELOG.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /libraries/rush-lib/src/logic/test/noChange/README.md: -------------------------------------------------------------------------------- 1 | This folder has no change requests. 2 | -------------------------------------------------------------------------------- /libraries/rush-lib/src/logic/test/workspacePackages/.mergequeueignore: -------------------------------------------------------------------------------- 1 | common/config/version-policies.json -------------------------------------------------------------------------------- /libraries/rush-lib/src/logic/test/workspacePackages/e/.mergequeueignore: -------------------------------------------------------------------------------- 1 | src/** -------------------------------------------------------------------------------- /libraries/rush-lib/src/start-pnpm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-lib/src/start-pnpm.ts -------------------------------------------------------------------------------- /libraries/rush-lib/src/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-lib/src/start.ts -------------------------------------------------------------------------------- /libraries/rush-lib/src/startx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-lib/src/startx.ts -------------------------------------------------------------------------------- /libraries/rush-lib/src/utilities/Npm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-lib/src/utilities/Npm.ts -------------------------------------------------------------------------------- /libraries/rush-lib/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-lib/tsconfig.json -------------------------------------------------------------------------------- /libraries/rush-lib/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-lib/webpack.config.js -------------------------------------------------------------------------------- /libraries/rush-sdk/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-sdk/.npmignore -------------------------------------------------------------------------------- /libraries/rush-sdk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-sdk/LICENSE -------------------------------------------------------------------------------- /libraries/rush-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-sdk/README.md -------------------------------------------------------------------------------- /libraries/rush-sdk/config/heft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-sdk/config/heft.json -------------------------------------------------------------------------------- /libraries/rush-sdk/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-sdk/config/rig.json -------------------------------------------------------------------------------- /libraries/rush-sdk/config/typescript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-sdk/config/typescript.json -------------------------------------------------------------------------------- /libraries/rush-sdk/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-sdk/eslint.config.js -------------------------------------------------------------------------------- /libraries/rush-sdk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-sdk/package.json -------------------------------------------------------------------------------- /libraries/rush-sdk/src/generate-stubs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-sdk/src/generate-stubs.ts -------------------------------------------------------------------------------- /libraries/rush-sdk/src/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-sdk/src/helpers.ts -------------------------------------------------------------------------------- /libraries/rush-sdk/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-sdk/src/index.ts -------------------------------------------------------------------------------- /libraries/rush-sdk/src/loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-sdk/src/loader.ts -------------------------------------------------------------------------------- /libraries/rush-sdk/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-sdk/tsconfig.json -------------------------------------------------------------------------------- /libraries/rush-sdk/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-sdk/webpack.config.js -------------------------------------------------------------------------------- /libraries/rush-themed-ui/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-themed-ui/.npmignore -------------------------------------------------------------------------------- /libraries/rush-themed-ui/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-themed-ui/LICENSE -------------------------------------------------------------------------------- /libraries/rush-themed-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-themed-ui/README.md -------------------------------------------------------------------------------- /libraries/rush-themed-ui/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-themed-ui/config/rig.json -------------------------------------------------------------------------------- /libraries/rush-themed-ui/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-themed-ui/eslint.config.js -------------------------------------------------------------------------------- /libraries/rush-themed-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-themed-ui/package.json -------------------------------------------------------------------------------- /libraries/rush-themed-ui/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-themed-ui/src/index.ts -------------------------------------------------------------------------------- /libraries/rush-themed-ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rush-themed-ui/tsconfig.json -------------------------------------------------------------------------------- /libraries/rushell/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rushell/.npmignore -------------------------------------------------------------------------------- /libraries/rushell/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rushell/LICENSE -------------------------------------------------------------------------------- /libraries/rushell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rushell/README.md -------------------------------------------------------------------------------- /libraries/rushell/config/jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rushell/config/jest.config.json -------------------------------------------------------------------------------- /libraries/rushell/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rushell/config/rig.json -------------------------------------------------------------------------------- /libraries/rushell/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rushell/eslint.config.js -------------------------------------------------------------------------------- /libraries/rushell/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rushell/package.json -------------------------------------------------------------------------------- /libraries/rushell/src/AstNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rushell/src/AstNode.ts -------------------------------------------------------------------------------- /libraries/rushell/src/ParseError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rushell/src/ParseError.ts -------------------------------------------------------------------------------- /libraries/rushell/src/Parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rushell/src/Parser.ts -------------------------------------------------------------------------------- /libraries/rushell/src/Rushell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rushell/src/Rushell.ts -------------------------------------------------------------------------------- /libraries/rushell/src/TextRange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rushell/src/TextRange.ts -------------------------------------------------------------------------------- /libraries/rushell/src/Tokenizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rushell/src/Tokenizer.ts -------------------------------------------------------------------------------- /libraries/rushell/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rushell/src/index.ts -------------------------------------------------------------------------------- /libraries/rushell/src/test/Parser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rushell/src/test/Parser.test.ts -------------------------------------------------------------------------------- /libraries/rushell/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/rushell/tsconfig.json -------------------------------------------------------------------------------- /libraries/stream-collator/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/stream-collator/.npmignore -------------------------------------------------------------------------------- /libraries/stream-collator/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/stream-collator/CHANGELOG.json -------------------------------------------------------------------------------- /libraries/stream-collator/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/stream-collator/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/stream-collator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/stream-collator/LICENSE -------------------------------------------------------------------------------- /libraries/stream-collator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/stream-collator/README.md -------------------------------------------------------------------------------- /libraries/stream-collator/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/stream-collator/config/rig.json -------------------------------------------------------------------------------- /libraries/stream-collator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/stream-collator/package.json -------------------------------------------------------------------------------- /libraries/stream-collator/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/stream-collator/src/index.ts -------------------------------------------------------------------------------- /libraries/stream-collator/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/stream-collator/tsconfig.json -------------------------------------------------------------------------------- /libraries/terminal/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/terminal/.npmignore -------------------------------------------------------------------------------- /libraries/terminal/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/terminal/CHANGELOG.json -------------------------------------------------------------------------------- /libraries/terminal/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/terminal/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/terminal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/terminal/LICENSE -------------------------------------------------------------------------------- /libraries/terminal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/terminal/README.md -------------------------------------------------------------------------------- /libraries/terminal/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/terminal/config/rig.json -------------------------------------------------------------------------------- /libraries/terminal/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/terminal/eslint.config.js -------------------------------------------------------------------------------- /libraries/terminal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/terminal/package.json -------------------------------------------------------------------------------- /libraries/terminal/src/AnsiEscape.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/terminal/src/AnsiEscape.ts -------------------------------------------------------------------------------- /libraries/terminal/src/Colorize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/terminal/src/Colorize.ts -------------------------------------------------------------------------------- /libraries/terminal/src/ITerminal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/terminal/src/ITerminal.ts -------------------------------------------------------------------------------- /libraries/terminal/src/ITerminalChunk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/terminal/src/ITerminalChunk.ts -------------------------------------------------------------------------------- /libraries/terminal/src/MockWritable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/terminal/src/MockWritable.ts -------------------------------------------------------------------------------- /libraries/terminal/src/PrintUtilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/terminal/src/PrintUtilities.ts -------------------------------------------------------------------------------- /libraries/terminal/src/StdioSummarizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/terminal/src/StdioSummarizer.ts -------------------------------------------------------------------------------- /libraries/terminal/src/StdioWritable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/terminal/src/StdioWritable.ts -------------------------------------------------------------------------------- /libraries/terminal/src/Terminal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/terminal/src/Terminal.ts -------------------------------------------------------------------------------- /libraries/terminal/src/TextRewriter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/terminal/src/TextRewriter.ts -------------------------------------------------------------------------------- /libraries/terminal/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/terminal/src/index.ts -------------------------------------------------------------------------------- /libraries/terminal/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/terminal/tsconfig.json -------------------------------------------------------------------------------- /libraries/tree-pattern/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/tree-pattern/.npmignore -------------------------------------------------------------------------------- /libraries/tree-pattern/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/tree-pattern/CHANGELOG.json -------------------------------------------------------------------------------- /libraries/tree-pattern/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/tree-pattern/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/tree-pattern/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/tree-pattern/LICENSE -------------------------------------------------------------------------------- /libraries/tree-pattern/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/tree-pattern/README.md -------------------------------------------------------------------------------- /libraries/tree-pattern/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/tree-pattern/config/rig.json -------------------------------------------------------------------------------- /libraries/tree-pattern/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/tree-pattern/eslint.config.js -------------------------------------------------------------------------------- /libraries/tree-pattern/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/tree-pattern/package.json -------------------------------------------------------------------------------- /libraries/tree-pattern/src/TreePattern.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/tree-pattern/src/TreePattern.ts -------------------------------------------------------------------------------- /libraries/tree-pattern/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/tree-pattern/src/index.ts -------------------------------------------------------------------------------- /libraries/tree-pattern/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/tree-pattern/tsconfig.json -------------------------------------------------------------------------------- /libraries/ts-command-line/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/ts-command-line/.npmignore -------------------------------------------------------------------------------- /libraries/ts-command-line/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/ts-command-line/CHANGELOG.json -------------------------------------------------------------------------------- /libraries/ts-command-line/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/ts-command-line/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/ts-command-line/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/ts-command-line/LICENSE -------------------------------------------------------------------------------- /libraries/ts-command-line/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/ts-command-line/README.md -------------------------------------------------------------------------------- /libraries/ts-command-line/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/ts-command-line/config/rig.json -------------------------------------------------------------------------------- /libraries/ts-command-line/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/ts-command-line/package.json -------------------------------------------------------------------------------- /libraries/ts-command-line/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/ts-command-line/src/index.ts -------------------------------------------------------------------------------- /libraries/ts-command-line/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/ts-command-line/tsconfig.json -------------------------------------------------------------------------------- /libraries/typings-generator/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/typings-generator/.npmignore -------------------------------------------------------------------------------- /libraries/typings-generator/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/typings-generator/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/typings-generator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/typings-generator/LICENSE -------------------------------------------------------------------------------- /libraries/typings-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/typings-generator/README.md -------------------------------------------------------------------------------- /libraries/typings-generator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/typings-generator/package.json -------------------------------------------------------------------------------- /libraries/typings-generator/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/typings-generator/src/index.ts -------------------------------------------------------------------------------- /libraries/typings-generator/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/typings-generator/tsconfig.json -------------------------------------------------------------------------------- /libraries/worker-pool/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/worker-pool/.npmignore -------------------------------------------------------------------------------- /libraries/worker-pool/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/worker-pool/CHANGELOG.json -------------------------------------------------------------------------------- /libraries/worker-pool/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/worker-pool/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/worker-pool/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/worker-pool/LICENSE -------------------------------------------------------------------------------- /libraries/worker-pool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/worker-pool/README.md -------------------------------------------------------------------------------- /libraries/worker-pool/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/worker-pool/config/rig.json -------------------------------------------------------------------------------- /libraries/worker-pool/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/worker-pool/eslint.config.js -------------------------------------------------------------------------------- /libraries/worker-pool/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/worker-pool/package.json -------------------------------------------------------------------------------- /libraries/worker-pool/src/WorkerPool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/worker-pool/src/WorkerPool.ts -------------------------------------------------------------------------------- /libraries/worker-pool/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/worker-pool/src/index.ts -------------------------------------------------------------------------------- /libraries/worker-pool/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/libraries/worker-pool/tsconfig.json -------------------------------------------------------------------------------- /repo-scripts/repo-toolbox/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/repo-scripts/repo-toolbox/config/rig.json -------------------------------------------------------------------------------- /repo-scripts/repo-toolbox/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/repo-scripts/repo-toolbox/package.json -------------------------------------------------------------------------------- /repo-scripts/repo-toolbox/repo-toolbox.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | node ./lib/start.js %* 3 | -------------------------------------------------------------------------------- /repo-scripts/repo-toolbox/src/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/repo-scripts/repo-toolbox/src/start.ts -------------------------------------------------------------------------------- /repo-scripts/repo-toolbox/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/repo-scripts/repo-toolbox/tsconfig.json -------------------------------------------------------------------------------- /repo-scripts/tombstone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/repo-scripts/tombstone/README.md -------------------------------------------------------------------------------- /repo-scripts/tombstone/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/repo-scripts/tombstone/package.json -------------------------------------------------------------------------------- /repo-scripts/tombstone/postinstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/repo-scripts/tombstone/postinstall.js -------------------------------------------------------------------------------- /rigs/decoupled-local-node-rig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/rigs/decoupled-local-node-rig/README.md -------------------------------------------------------------------------------- /rigs/heft-node-rig/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/rigs/heft-node-rig/.npmignore -------------------------------------------------------------------------------- /rigs/heft-node-rig/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/rigs/heft-node-rig/CHANGELOG.json -------------------------------------------------------------------------------- /rigs/heft-node-rig/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/rigs/heft-node-rig/CHANGELOG.md -------------------------------------------------------------------------------- /rigs/heft-node-rig/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/rigs/heft-node-rig/LICENSE -------------------------------------------------------------------------------- /rigs/heft-node-rig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/rigs/heft-node-rig/README.md -------------------------------------------------------------------------------- /rigs/heft-node-rig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/rigs/heft-node-rig/package.json -------------------------------------------------------------------------------- /rigs/heft-vscode-extension-rig/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/rigs/heft-vscode-extension-rig/.npmignore -------------------------------------------------------------------------------- /rigs/heft-vscode-extension-rig/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/rigs/heft-vscode-extension-rig/LICENSE -------------------------------------------------------------------------------- /rigs/heft-vscode-extension-rig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/rigs/heft-vscode-extension-rig/README.md -------------------------------------------------------------------------------- /rigs/heft-web-rig/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/rigs/heft-web-rig/.npmignore -------------------------------------------------------------------------------- /rigs/heft-web-rig/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/rigs/heft-web-rig/CHANGELOG.json -------------------------------------------------------------------------------- /rigs/heft-web-rig/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/rigs/heft-web-rig/CHANGELOG.md -------------------------------------------------------------------------------- /rigs/heft-web-rig/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/rigs/heft-web-rig/LICENSE -------------------------------------------------------------------------------- /rigs/heft-web-rig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/rigs/heft-web-rig/README.md -------------------------------------------------------------------------------- /rigs/heft-web-rig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/rigs/heft-web-rig/package.json -------------------------------------------------------------------------------- /rigs/local-node-rig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/rigs/local-node-rig/README.md -------------------------------------------------------------------------------- /rigs/local-node-rig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/rigs/local-node-rig/package.json -------------------------------------------------------------------------------- /rigs/local-web-rig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/rigs/local-web-rig/README.md -------------------------------------------------------------------------------- /rigs/local-web-rig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/rigs/local-web-rig/package.json -------------------------------------------------------------------------------- /rush-plugins/rush-mcp-docs-plugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/rush-plugins/rush-mcp-docs-plugin/LICENSE -------------------------------------------------------------------------------- /rush-plugins/rush-serve-plugin/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/rush-plugins/rush-serve-plugin/.npmignore -------------------------------------------------------------------------------- /rush-plugins/rush-serve-plugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/rush-plugins/rush-serve-plugin/LICENSE -------------------------------------------------------------------------------- /rush-plugins/rush-serve-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/rush-plugins/rush-serve-plugin/README.md -------------------------------------------------------------------------------- /rush.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/rush.json -------------------------------------------------------------------------------- /vscode-extensions/rush-vscode-extension/.gitignore: -------------------------------------------------------------------------------- 1 | webview/ 2 | -------------------------------------------------------------------------------- /vscode-extensions/vscode-shared/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/vscode-extensions/vscode-shared/LICENSE -------------------------------------------------------------------------------- /vscode-extensions/vscode-shared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/vscode-extensions/vscode-shared/README.md -------------------------------------------------------------------------------- /webpack/hashed-folder-copy-plugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/webpack/hashed-folder-copy-plugin/LICENSE -------------------------------------------------------------------------------- /webpack/hashed-folder-copy-plugin/src/test/scenarios/localFolder/assets/a.txt: -------------------------------------------------------------------------------- 1 | local-folder-AAA -------------------------------------------------------------------------------- /webpack/hashed-folder-copy-plugin/src/test/scenarios/localFolder/assets/b.txt: -------------------------------------------------------------------------------- 1 | local-folder-BBB -------------------------------------------------------------------------------- /webpack/hashed-folder-copy-plugin/src/test/scenarios/localFolder/assets/subfolder/c.txt: -------------------------------------------------------------------------------- 1 | local-folder-CCC -------------------------------------------------------------------------------- /webpack/hashed-folder-copy-plugin/src/test/scenarios/localFolder/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /webpack/hashed-folder-copy-plugin/src/test/scenarios/nullCase/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /webpack/hashed-folder-copy-plugin/src/test/scenarios/packageReference/.gitignore: -------------------------------------------------------------------------------- 1 | !node_modules -------------------------------------------------------------------------------- /webpack/hashed-folder-copy-plugin/src/test/scenarios/packageReference/node_modules/@scope/scoped-package/assets/a.txt: -------------------------------------------------------------------------------- 1 | scoped-package-AAA -------------------------------------------------------------------------------- /webpack/hashed-folder-copy-plugin/src/test/scenarios/packageReference/node_modules/@scope/scoped-package/assets/b.txt: -------------------------------------------------------------------------------- 1 | scoped-package-BBB -------------------------------------------------------------------------------- /webpack/hashed-folder-copy-plugin/src/test/scenarios/packageReference/node_modules/unscoped-package/assets/a.txt: -------------------------------------------------------------------------------- 1 | unscoped-package-AAA -------------------------------------------------------------------------------- /webpack/hashed-folder-copy-plugin/src/test/scenarios/packageReference/node_modules/unscoped-package/assets/b.txt: -------------------------------------------------------------------------------- 1 | unscoped-package-BBB -------------------------------------------------------------------------------- /webpack/hashed-folder-copy-plugin/src/test/scenarios/packageReference/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /webpack/loader-load-themed-styles/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/webpack/loader-load-themed-styles/LICENSE -------------------------------------------------------------------------------- /webpack/loader-raw-script/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/webpack/loader-raw-script/.npmignore -------------------------------------------------------------------------------- /webpack/loader-raw-script/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/webpack/loader-raw-script/CHANGELOG.json -------------------------------------------------------------------------------- /webpack/loader-raw-script/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/webpack/loader-raw-script/CHANGELOG.md -------------------------------------------------------------------------------- /webpack/loader-raw-script/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/webpack/loader-raw-script/LICENSE -------------------------------------------------------------------------------- /webpack/loader-raw-script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/webpack/loader-raw-script/README.md -------------------------------------------------------------------------------- /webpack/loader-raw-script/config/rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/webpack/loader-raw-script/config/rig.json -------------------------------------------------------------------------------- /webpack/loader-raw-script/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/webpack/loader-raw-script/package.json -------------------------------------------------------------------------------- /webpack/loader-raw-script/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/webpack/loader-raw-script/src/index.ts -------------------------------------------------------------------------------- /webpack/loader-raw-script/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rushstack/HEAD/webpack/loader-raw-script/tsconfig.json -------------------------------------------------------------------------------- /webpack/webpack-embedded-dependencies-plugin/src/test/.gitignore: -------------------------------------------------------------------------------- 1 | !node_modules 2 | !dist 3 | !lib -------------------------------------------------------------------------------- /webpack/webpack-embedded-dependencies-plugin/src/test/fixtures/no-dependencies/src/file-a.js: -------------------------------------------------------------------------------- 1 | export default 'file-a'; 2 | -------------------------------------------------------------------------------- /webpack/webpack-embedded-dependencies-plugin/src/test/fixtures/no-dependencies/src/file-b.js: -------------------------------------------------------------------------------- 1 | export default 'file-b'; 2 | --------------------------------------------------------------------------------