├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── nodejs.yml ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── cypress-schematic-logo-v2.png ├── package.json ├── sandbox-v12 ├── .browserslistrc ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ └── app.module.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── sandbox-workspace ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── jest.config.js ├── package-lock.json ├── package.json ├── projects │ ├── new-sandbox │ │ ├── .browserslistrc │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── jest.config.js │ │ ├── src │ │ │ ├── app │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.scss │ │ │ │ ├── app.component.spec.ts │ │ │ │ ├── app.component.ts │ │ │ │ └── app.module.ts │ │ │ ├── assets │ │ │ │ └── .gitkeep │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ └── styles.scss │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ └── second-sandbox │ │ ├── .browserslistrc │ │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.json │ │ ├── jest.config.js │ │ ├── src │ │ ├── app │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ └── app.module.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ └── styles.scss │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json ├── setup-jest.ts ├── test-config.helper.ts ├── tsconfig.json └── tslint.json ├── sandbox ├── .browserslistrc ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── e2e │ ├── jest.config.js │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.e2e.json ├── jest.config.js ├── package-lock.json ├── package.json ├── setup-jest.ts ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ └── app.module.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── tslint.json ├── test-config.helper.ts ├── tsconfig.json └── tslint.json ├── src ├── builders │ ├── builders.json │ └── cypress │ │ ├── cypress-builder-options.ts │ │ ├── index.ts │ │ └── schema.json └── schematics │ ├── collection.json │ ├── cypress │ ├── files │ │ ├── cypress.json │ │ └── cypress │ │ │ ├── integration │ │ │ └── spec.ts │ │ │ ├── plugins │ │ │ └── index.js │ │ │ ├── support │ │ │ ├── commands.ts │ │ │ └── index.ts │ │ │ └── tsconfig.json │ ├── index.ts │ ├── index_spec.ts │ └── schema.json │ └── utility │ ├── dependencies.ts │ ├── json-utils.ts │ └── util.ts ├── tsconfig.json └── tsconfig.spec.json /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | *.lock 2 | sandbox -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/.prettierrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/README.md -------------------------------------------------------------------------------- /cypress-schematic-logo-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/cypress-schematic-logo-v2.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/package.json -------------------------------------------------------------------------------- /sandbox-v12/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-v12/.browserslistrc -------------------------------------------------------------------------------- /sandbox-v12/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-v12/.editorconfig -------------------------------------------------------------------------------- /sandbox-v12/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-v12/.gitignore -------------------------------------------------------------------------------- /sandbox-v12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-v12/README.md -------------------------------------------------------------------------------- /sandbox-v12/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-v12/angular.json -------------------------------------------------------------------------------- /sandbox-v12/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-v12/karma.conf.js -------------------------------------------------------------------------------- /sandbox-v12/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-v12/package-lock.json -------------------------------------------------------------------------------- /sandbox-v12/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-v12/package.json -------------------------------------------------------------------------------- /sandbox-v12/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sandbox-v12/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-v12/src/app/app.component.html -------------------------------------------------------------------------------- /sandbox-v12/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-v12/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /sandbox-v12/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-v12/src/app/app.component.ts -------------------------------------------------------------------------------- /sandbox-v12/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-v12/src/app/app.module.ts -------------------------------------------------------------------------------- /sandbox-v12/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sandbox-v12/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /sandbox-v12/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-v12/src/environments/environment.ts -------------------------------------------------------------------------------- /sandbox-v12/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-v12/src/favicon.ico -------------------------------------------------------------------------------- /sandbox-v12/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-v12/src/index.html -------------------------------------------------------------------------------- /sandbox-v12/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-v12/src/main.ts -------------------------------------------------------------------------------- /sandbox-v12/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-v12/src/polyfills.ts -------------------------------------------------------------------------------- /sandbox-v12/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-v12/src/styles.css -------------------------------------------------------------------------------- /sandbox-v12/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-v12/src/test.ts -------------------------------------------------------------------------------- /sandbox-v12/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-v12/tsconfig.app.json -------------------------------------------------------------------------------- /sandbox-v12/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-v12/tsconfig.json -------------------------------------------------------------------------------- /sandbox-v12/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-v12/tsconfig.spec.json -------------------------------------------------------------------------------- /sandbox-workspace/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/.editorconfig -------------------------------------------------------------------------------- /sandbox-workspace/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/.gitignore -------------------------------------------------------------------------------- /sandbox-workspace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/README.md -------------------------------------------------------------------------------- /sandbox-workspace/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/angular.json -------------------------------------------------------------------------------- /sandbox-workspace/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/jest.config.js -------------------------------------------------------------------------------- /sandbox-workspace/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/package-lock.json -------------------------------------------------------------------------------- /sandbox-workspace/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/package.json -------------------------------------------------------------------------------- /sandbox-workspace/projects/new-sandbox/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/new-sandbox/.browserslistrc -------------------------------------------------------------------------------- /sandbox-workspace/projects/new-sandbox/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/new-sandbox/e2e/protractor.conf.js -------------------------------------------------------------------------------- /sandbox-workspace/projects/new-sandbox/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/new-sandbox/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /sandbox-workspace/projects/new-sandbox/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/new-sandbox/e2e/src/app.po.ts -------------------------------------------------------------------------------- /sandbox-workspace/projects/new-sandbox/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/new-sandbox/e2e/tsconfig.json -------------------------------------------------------------------------------- /sandbox-workspace/projects/new-sandbox/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/new-sandbox/jest.config.js -------------------------------------------------------------------------------- /sandbox-workspace/projects/new-sandbox/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/new-sandbox/src/app/app.component.html -------------------------------------------------------------------------------- /sandbox-workspace/projects/new-sandbox/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sandbox-workspace/projects/new-sandbox/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/new-sandbox/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /sandbox-workspace/projects/new-sandbox/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/new-sandbox/src/app/app.component.ts -------------------------------------------------------------------------------- /sandbox-workspace/projects/new-sandbox/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/new-sandbox/src/app/app.module.ts -------------------------------------------------------------------------------- /sandbox-workspace/projects/new-sandbox/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sandbox-workspace/projects/new-sandbox/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /sandbox-workspace/projects/new-sandbox/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/new-sandbox/src/environments/environment.ts -------------------------------------------------------------------------------- /sandbox-workspace/projects/new-sandbox/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/new-sandbox/src/favicon.ico -------------------------------------------------------------------------------- /sandbox-workspace/projects/new-sandbox/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/new-sandbox/src/index.html -------------------------------------------------------------------------------- /sandbox-workspace/projects/new-sandbox/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/new-sandbox/src/main.ts -------------------------------------------------------------------------------- /sandbox-workspace/projects/new-sandbox/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/new-sandbox/src/polyfills.ts -------------------------------------------------------------------------------- /sandbox-workspace/projects/new-sandbox/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/new-sandbox/src/styles.scss -------------------------------------------------------------------------------- /sandbox-workspace/projects/new-sandbox/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/new-sandbox/tsconfig.app.json -------------------------------------------------------------------------------- /sandbox-workspace/projects/new-sandbox/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/new-sandbox/tsconfig.spec.json -------------------------------------------------------------------------------- /sandbox-workspace/projects/new-sandbox/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/new-sandbox/tslint.json -------------------------------------------------------------------------------- /sandbox-workspace/projects/second-sandbox/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/second-sandbox/.browserslistrc -------------------------------------------------------------------------------- /sandbox-workspace/projects/second-sandbox/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/second-sandbox/e2e/protractor.conf.js -------------------------------------------------------------------------------- /sandbox-workspace/projects/second-sandbox/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/second-sandbox/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /sandbox-workspace/projects/second-sandbox/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/second-sandbox/e2e/src/app.po.ts -------------------------------------------------------------------------------- /sandbox-workspace/projects/second-sandbox/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/second-sandbox/e2e/tsconfig.json -------------------------------------------------------------------------------- /sandbox-workspace/projects/second-sandbox/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/second-sandbox/jest.config.js -------------------------------------------------------------------------------- /sandbox-workspace/projects/second-sandbox/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/second-sandbox/src/app/app.component.html -------------------------------------------------------------------------------- /sandbox-workspace/projects/second-sandbox/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sandbox-workspace/projects/second-sandbox/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/second-sandbox/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /sandbox-workspace/projects/second-sandbox/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/second-sandbox/src/app/app.component.ts -------------------------------------------------------------------------------- /sandbox-workspace/projects/second-sandbox/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/second-sandbox/src/app/app.module.ts -------------------------------------------------------------------------------- /sandbox-workspace/projects/second-sandbox/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sandbox-workspace/projects/second-sandbox/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /sandbox-workspace/projects/second-sandbox/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/second-sandbox/src/environments/environment.ts -------------------------------------------------------------------------------- /sandbox-workspace/projects/second-sandbox/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/second-sandbox/src/favicon.ico -------------------------------------------------------------------------------- /sandbox-workspace/projects/second-sandbox/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/second-sandbox/src/index.html -------------------------------------------------------------------------------- /sandbox-workspace/projects/second-sandbox/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/second-sandbox/src/main.ts -------------------------------------------------------------------------------- /sandbox-workspace/projects/second-sandbox/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/second-sandbox/src/polyfills.ts -------------------------------------------------------------------------------- /sandbox-workspace/projects/second-sandbox/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/second-sandbox/src/styles.scss -------------------------------------------------------------------------------- /sandbox-workspace/projects/second-sandbox/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/second-sandbox/tsconfig.app.json -------------------------------------------------------------------------------- /sandbox-workspace/projects/second-sandbox/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/second-sandbox/tsconfig.spec.json -------------------------------------------------------------------------------- /sandbox-workspace/projects/second-sandbox/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/projects/second-sandbox/tslint.json -------------------------------------------------------------------------------- /sandbox-workspace/setup-jest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/setup-jest.ts -------------------------------------------------------------------------------- /sandbox-workspace/test-config.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/test-config.helper.ts -------------------------------------------------------------------------------- /sandbox-workspace/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/tsconfig.json -------------------------------------------------------------------------------- /sandbox-workspace/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox-workspace/tslint.json -------------------------------------------------------------------------------- /sandbox/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox/.browserslistrc -------------------------------------------------------------------------------- /sandbox/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox/.editorconfig -------------------------------------------------------------------------------- /sandbox/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox/.gitignore -------------------------------------------------------------------------------- /sandbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox/README.md -------------------------------------------------------------------------------- /sandbox/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox/angular.json -------------------------------------------------------------------------------- /sandbox/e2e/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox/e2e/jest.config.js -------------------------------------------------------------------------------- /sandbox/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox/e2e/protractor.conf.js -------------------------------------------------------------------------------- /sandbox/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /sandbox/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox/e2e/src/app.po.ts -------------------------------------------------------------------------------- /sandbox/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /sandbox/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox/jest.config.js -------------------------------------------------------------------------------- /sandbox/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox/package-lock.json -------------------------------------------------------------------------------- /sandbox/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox/package.json -------------------------------------------------------------------------------- /sandbox/setup-jest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox/setup-jest.ts -------------------------------------------------------------------------------- /sandbox/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sandbox/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox/src/app/app.component.html -------------------------------------------------------------------------------- /sandbox/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /sandbox/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox/src/app/app.component.ts -------------------------------------------------------------------------------- /sandbox/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox/src/app/app.module.ts -------------------------------------------------------------------------------- /sandbox/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sandbox/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /sandbox/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox/src/environments/environment.ts -------------------------------------------------------------------------------- /sandbox/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox/src/favicon.ico -------------------------------------------------------------------------------- /sandbox/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox/src/index.html -------------------------------------------------------------------------------- /sandbox/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox/src/main.ts -------------------------------------------------------------------------------- /sandbox/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox/src/polyfills.ts -------------------------------------------------------------------------------- /sandbox/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox/src/styles.css -------------------------------------------------------------------------------- /sandbox/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox/src/tsconfig.app.json -------------------------------------------------------------------------------- /sandbox/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox/src/tsconfig.spec.json -------------------------------------------------------------------------------- /sandbox/src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox/src/tslint.json -------------------------------------------------------------------------------- /sandbox/test-config.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox/test-config.helper.ts -------------------------------------------------------------------------------- /sandbox/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox/tsconfig.json -------------------------------------------------------------------------------- /sandbox/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/sandbox/tslint.json -------------------------------------------------------------------------------- /src/builders/builders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/src/builders/builders.json -------------------------------------------------------------------------------- /src/builders/cypress/cypress-builder-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/src/builders/cypress/cypress-builder-options.ts -------------------------------------------------------------------------------- /src/builders/cypress/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/src/builders/cypress/index.ts -------------------------------------------------------------------------------- /src/builders/cypress/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/src/builders/cypress/schema.json -------------------------------------------------------------------------------- /src/schematics/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/src/schematics/collection.json -------------------------------------------------------------------------------- /src/schematics/cypress/files/cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/src/schematics/cypress/files/cypress.json -------------------------------------------------------------------------------- /src/schematics/cypress/files/cypress/integration/spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/src/schematics/cypress/files/cypress/integration/spec.ts -------------------------------------------------------------------------------- /src/schematics/cypress/files/cypress/plugins/index.js: -------------------------------------------------------------------------------- 1 | module.exports = (on, config) => {}; 2 | -------------------------------------------------------------------------------- /src/schematics/cypress/files/cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/src/schematics/cypress/files/cypress/support/commands.ts -------------------------------------------------------------------------------- /src/schematics/cypress/files/cypress/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/src/schematics/cypress/files/cypress/support/index.ts -------------------------------------------------------------------------------- /src/schematics/cypress/files/cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/src/schematics/cypress/files/cypress/tsconfig.json -------------------------------------------------------------------------------- /src/schematics/cypress/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/src/schematics/cypress/index.ts -------------------------------------------------------------------------------- /src/schematics/cypress/index_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/src/schematics/cypress/index_spec.ts -------------------------------------------------------------------------------- /src/schematics/cypress/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/src/schematics/cypress/schema.json -------------------------------------------------------------------------------- /src/schematics/utility/dependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/src/schematics/utility/dependencies.ts -------------------------------------------------------------------------------- /src/schematics/utility/json-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/src/schematics/utility/json-utils.ts -------------------------------------------------------------------------------- /src/schematics/utility/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/src/schematics/utility/util.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briebug/cypress-schematic/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------