├── .azurepipelines └── build-code-push-1es.yml ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE.md ├── policies │ └── resourceManagement.yml ├── scripts │ └── check-for-declaration.ts └── workflows │ └── code-push-ci.yml ├── .gitignore ├── .npmignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── LICENSE.md ├── README.md ├── SDK.njsproj ├── SECURITY.md ├── migration-notice.md ├── mocha.opts ├── package.json ├── src ├── @types │ └── recursive-fs.d.ts ├── script │ ├── acquisition-sdk.ts │ ├── code-push-error.ts │ ├── index.ts │ ├── management-sdk.ts │ └── types.ts ├── test │ ├── acquisition-rest-mock.ts │ ├── acquisition-sdk.ts │ ├── management-sdk.ts │ └── superagent-mock-config.js └── utils │ ├── adapter │ ├── adapter-types.ts │ └── adapter.ts │ └── request-manager.ts ├── tsconfig-release.json └── tsconfig.json /.azurepipelines/build-code-push-1es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-push/HEAD/.azurepipelines/build-code-push-1es.yml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-push/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-push/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/policies/resourceManagement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-push/HEAD/.github/policies/resourceManagement.yml -------------------------------------------------------------------------------- /.github/scripts/check-for-declaration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-push/HEAD/.github/scripts/check-for-declaration.ts -------------------------------------------------------------------------------- /.github/workflows/code-push-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-push/HEAD/.github/workflows/code-push-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-push/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-push/HEAD/.npmignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-push/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-push/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-push/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-push/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-push/HEAD/README.md -------------------------------------------------------------------------------- /SDK.njsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-push/HEAD/SDK.njsproj -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-push/HEAD/SECURITY.md -------------------------------------------------------------------------------- /migration-notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-push/HEAD/migration-notice.md -------------------------------------------------------------------------------- /mocha.opts: -------------------------------------------------------------------------------- 1 | --exit 2 | --reporter spec 3 | --timeout 5000 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-push/HEAD/package.json -------------------------------------------------------------------------------- /src/@types/recursive-fs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-push/HEAD/src/@types/recursive-fs.d.ts -------------------------------------------------------------------------------- /src/script/acquisition-sdk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-push/HEAD/src/script/acquisition-sdk.ts -------------------------------------------------------------------------------- /src/script/code-push-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-push/HEAD/src/script/code-push-error.ts -------------------------------------------------------------------------------- /src/script/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-push/HEAD/src/script/index.ts -------------------------------------------------------------------------------- /src/script/management-sdk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-push/HEAD/src/script/management-sdk.ts -------------------------------------------------------------------------------- /src/script/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-push/HEAD/src/script/types.ts -------------------------------------------------------------------------------- /src/test/acquisition-rest-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-push/HEAD/src/test/acquisition-rest-mock.ts -------------------------------------------------------------------------------- /src/test/acquisition-sdk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-push/HEAD/src/test/acquisition-sdk.ts -------------------------------------------------------------------------------- /src/test/management-sdk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-push/HEAD/src/test/management-sdk.ts -------------------------------------------------------------------------------- /src/test/superagent-mock-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-push/HEAD/src/test/superagent-mock-config.js -------------------------------------------------------------------------------- /src/utils/adapter/adapter-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-push/HEAD/src/utils/adapter/adapter-types.ts -------------------------------------------------------------------------------- /src/utils/adapter/adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-push/HEAD/src/utils/adapter/adapter.ts -------------------------------------------------------------------------------- /src/utils/request-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-push/HEAD/src/utils/request-manager.ts -------------------------------------------------------------------------------- /tsconfig-release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-push/HEAD/tsconfig-release.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/code-push/HEAD/tsconfig.json --------------------------------------------------------------------------------