├── .azure-pipelines └── azure-pipelines.yml ├── .gitignore ├── .npmignore ├── .vscode ├── launch.json └── tasks.json ├── LICENSE ├── README.md ├── SECURITY.md ├── configuration.json ├── package.json └── src ├── browser ├── placeholder.ts └── tsconfig.json ├── common ├── Constants.ts ├── Engine.ts ├── Errors.ts ├── Interfaces.ts ├── Logger.ts ├── ProcessExporter.ts ├── ProcessImporter.ts └── Utilities.ts └── nodejs ├── ConfigurationProcessor.ts ├── FileLogger.ts ├── Main.ts ├── NodeJsUtilities.ts └── tsconfig.json /.azure-pipelines/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/process-migrator/HEAD/.azure-pipelines/azure-pipelines.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/process-migrator/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/process-migrator/HEAD/.npmignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/process-migrator/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/process-migrator/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/process-migrator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/process-migrator/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/process-migrator/HEAD/SECURITY.md -------------------------------------------------------------------------------- /configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/process-migrator/HEAD/configuration.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/process-migrator/HEAD/package.json -------------------------------------------------------------------------------- /src/browser/placeholder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/process-migrator/HEAD/src/browser/placeholder.ts -------------------------------------------------------------------------------- /src/browser/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/process-migrator/HEAD/src/browser/tsconfig.json -------------------------------------------------------------------------------- /src/common/Constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/process-migrator/HEAD/src/common/Constants.ts -------------------------------------------------------------------------------- /src/common/Engine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/process-migrator/HEAD/src/common/Engine.ts -------------------------------------------------------------------------------- /src/common/Errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/process-migrator/HEAD/src/common/Errors.ts -------------------------------------------------------------------------------- /src/common/Interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/process-migrator/HEAD/src/common/Interfaces.ts -------------------------------------------------------------------------------- /src/common/Logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/process-migrator/HEAD/src/common/Logger.ts -------------------------------------------------------------------------------- /src/common/ProcessExporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/process-migrator/HEAD/src/common/ProcessExporter.ts -------------------------------------------------------------------------------- /src/common/ProcessImporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/process-migrator/HEAD/src/common/ProcessImporter.ts -------------------------------------------------------------------------------- /src/common/Utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/process-migrator/HEAD/src/common/Utilities.ts -------------------------------------------------------------------------------- /src/nodejs/ConfigurationProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/process-migrator/HEAD/src/nodejs/ConfigurationProcessor.ts -------------------------------------------------------------------------------- /src/nodejs/FileLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/process-migrator/HEAD/src/nodejs/FileLogger.ts -------------------------------------------------------------------------------- /src/nodejs/Main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/process-migrator/HEAD/src/nodejs/Main.ts -------------------------------------------------------------------------------- /src/nodejs/NodeJsUtilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/process-migrator/HEAD/src/nodejs/NodeJsUtilities.ts -------------------------------------------------------------------------------- /src/nodejs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/process-migrator/HEAD/src/nodejs/tsconfig.json --------------------------------------------------------------------------------