├── .editorconfig ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── angular.json ├── jest.config.js ├── package.json ├── setupJest.ts ├── src ├── collection.json ├── ng-add │ ├── index.ts │ ├── schema.json │ └── schemas.ts ├── onprem-builder │ ├── index.ts │ └── schema.json ├── onprem-environment │ ├── constants.ts │ ├── index.spec.ts │ ├── index.ts │ ├── processor.spec.ts │ ├── processor.ts │ ├── schema.json │ ├── schema.ts │ └── template │ │ └── environment.__config__.ts ├── stubs_spec.ts └── utils │ └── ast.ts ├── tsconfig.json └── tsconfig.spec.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danduh/ng-process-env/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danduh/ng-process-env/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danduh/ng-process-env/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | # Ignores TypeScript files, but keeps definitions. 2 | !*.d.ts 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danduh/ng-process-env/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danduh/ng-process-env/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danduh/ng-process-env/HEAD/angular.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danduh/ng-process-env/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danduh/ng-process-env/HEAD/package.json -------------------------------------------------------------------------------- /setupJest.ts: -------------------------------------------------------------------------------- 1 | import 'jest-preset-angular'; 2 | -------------------------------------------------------------------------------- /src/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danduh/ng-process-env/HEAD/src/collection.json -------------------------------------------------------------------------------- /src/ng-add/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danduh/ng-process-env/HEAD/src/ng-add/index.ts -------------------------------------------------------------------------------- /src/ng-add/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danduh/ng-process-env/HEAD/src/ng-add/schema.json -------------------------------------------------------------------------------- /src/ng-add/schemas.ts: -------------------------------------------------------------------------------- 1 | export interface NgAddOptions { 2 | project?: string 3 | } 4 | -------------------------------------------------------------------------------- /src/onprem-builder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danduh/ng-process-env/HEAD/src/onprem-builder/index.ts -------------------------------------------------------------------------------- /src/onprem-builder/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danduh/ng-process-env/HEAD/src/onprem-builder/schema.json -------------------------------------------------------------------------------- /src/onprem-environment/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danduh/ng-process-env/HEAD/src/onprem-environment/constants.ts -------------------------------------------------------------------------------- /src/onprem-environment/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danduh/ng-process-env/HEAD/src/onprem-environment/index.spec.ts -------------------------------------------------------------------------------- /src/onprem-environment/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danduh/ng-process-env/HEAD/src/onprem-environment/index.ts -------------------------------------------------------------------------------- /src/onprem-environment/processor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danduh/ng-process-env/HEAD/src/onprem-environment/processor.spec.ts -------------------------------------------------------------------------------- /src/onprem-environment/processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danduh/ng-process-env/HEAD/src/onprem-environment/processor.ts -------------------------------------------------------------------------------- /src/onprem-environment/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danduh/ng-process-env/HEAD/src/onprem-environment/schema.json -------------------------------------------------------------------------------- /src/onprem-environment/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danduh/ng-process-env/HEAD/src/onprem-environment/schema.ts -------------------------------------------------------------------------------- /src/onprem-environment/template/environment.__config__.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danduh/ng-process-env/HEAD/src/onprem-environment/template/environment.__config__.ts -------------------------------------------------------------------------------- /src/stubs_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danduh/ng-process-env/HEAD/src/stubs_spec.ts -------------------------------------------------------------------------------- /src/utils/ast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danduh/ng-process-env/HEAD/src/utils/ast.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danduh/ng-process-env/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danduh/ng-process-env/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------