├── .all-contributorsrc
├── .commitlintrc.json
├── .github
├── FUNDING.yml
├── ISSUE_TEMPLATE
│ ├── bug_report.md
│ └── feature_request.md
├── PULL_REQUEST_TEMPLATE.md
├── autoapproval.yml
└── workflows
│ ├── ci.yml
│ ├── graduate.yml
│ └── update.yml
├── .gitignore
├── .husky
├── .gitignore
├── commit-msg
└── pre-commit
├── .vscode
└── settings.json
├── .yarn
├── plugins
│ └── @yarnpkg
│ │ └── plugin-workspace-tools.cjs
└── releases
│ └── yarn-3.8.7.cjs
├── .yarnrc.yml
├── LICENSE
├── MIGRATION.MD
├── README.md
├── examples
├── bazel
│ ├── .gitignore
│ ├── BUILD.bazel
│ ├── CHANGELOG.md
│ ├── MODULE.bazel
│ ├── MODULE.bazel.lock
│ ├── WORKSPACE
│ ├── angular.json
│ └── package.json
├── custom-esbuild
│ ├── sanity-esbuild-app-esm
│ │ ├── .editorconfig
│ │ ├── .gitignore
│ │ ├── angular.json
│ │ ├── cypress.config.js
│ │ ├── e2e
│ │ │ ├── src
│ │ │ │ ├── app.e2e-spec.ts
│ │ │ │ └── app.po.ts
│ │ │ └── tsconfig.json
│ │ ├── esbuild
│ │ │ ├── define-text-by-option-plugin.cjs
│ │ │ ├── define-text-by-option-plugin.js
│ │ │ ├── define-text-by-option-plugin.ts
│ │ │ ├── define-text-plugin.cjs
│ │ │ ├── define-text-plugin.js
│ │ │ ├── define-text-plugin.ts
│ │ │ ├── send-hello-middleware.cjs
│ │ │ ├── send-hello-middleware.js
│ │ │ └── send-hello-middleware.ts
│ │ ├── eslint.config.js
│ │ ├── package.json
│ │ ├── src
│ │ │ ├── app
│ │ │ │ ├── app.component.html
│ │ │ │ ├── app.component.scss
│ │ │ │ ├── app.component.spec.ts
│ │ │ │ ├── app.component.ts
│ │ │ │ └── app.config.ts
│ │ │ ├── assets
│ │ │ │ └── .gitkeep
│ │ │ ├── environments
│ │ │ │ ├── environment.prod.ts
│ │ │ │ └── environment.ts
│ │ │ ├── favicon.ico
│ │ │ ├── index.html
│ │ │ ├── main.ts
│ │ │ └── styles.scss
│ │ ├── tsconfig.app.json
│ │ ├── tsconfig.json
│ │ └── tsconfig.spec.json
│ └── sanity-esbuild-app
│ │ ├── .editorconfig
│ │ ├── .gitignore
│ │ ├── angular.json
│ │ ├── cypress.config.ts
│ │ ├── e2e
│ │ ├── src
│ │ │ ├── app.e2e-spec.ts
│ │ │ └── app.po.ts
│ │ └── tsconfig.json
│ │ ├── esbuild
│ │ ├── define-text-by-option-plugin.js
│ │ ├── define-text-by-option-plugin.mjs
│ │ ├── define-text-plugin.js
│ │ ├── define-text-plugin.mjs
│ │ ├── send-hello-middleware.js
│ │ └── send-hello-middleware.mjs
│ │ ├── eslint.config.js
│ │ ├── package.json
│ │ ├── src
│ │ ├── app
│ │ │ ├── app.component.html
│ │ │ ├── app.component.scss
│ │ │ ├── app.component.spec.ts
│ │ │ ├── app.component.ts
│ │ │ └── app.config.ts
│ │ ├── assets
│ │ │ └── .gitkeep
│ │ ├── environments
│ │ │ ├── environment.prod.ts
│ │ │ └── environment.ts
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ ├── main.ts
│ │ └── styles.scss
│ │ ├── tsconfig.app.json
│ │ ├── tsconfig.json
│ │ └── tsconfig.spec.json
├── custom-webpack
│ ├── full-cycle-app
│ │ ├── .editorconfig
│ │ ├── .gitignore
│ │ ├── CHANGELOG.md
│ │ ├── README.md
│ │ ├── angular.json
│ │ ├── cypress.config.ts
│ │ ├── e2e
│ │ │ ├── src
│ │ │ │ ├── app-itwcw.e2e-spec.ts
│ │ │ │ ├── app-prod.e2e-spec.ts
│ │ │ │ ├── app.e2e-spec.ts
│ │ │ │ └── app.po.ts
│ │ │ └── tsconfig.json
│ │ ├── eslint.config.js
│ │ ├── extra-webpack.config.ts
│ │ ├── func-webpack.config.ts
│ │ ├── index-html.transform.js
│ │ ├── index-html.transform.ts
│ │ ├── karma.conf.js
│ │ ├── package.json
│ │ ├── src
│ │ │ ├── app
│ │ │ │ ├── app.component.html
│ │ │ │ ├── app.component.scss
│ │ │ │ ├── app.component.spec.ts
│ │ │ │ └── app.component.ts
│ │ │ ├── assets
│ │ │ │ └── .gitkeep
│ │ │ ├── environments
│ │ │ │ ├── environment.prod.ts
│ │ │ │ └── environment.ts
│ │ │ ├── favicon.ico
│ │ │ ├── footer-template.html
│ │ │ ├── index.html
│ │ │ ├── main.ts
│ │ │ └── styles.scss
│ │ ├── tsconfig.app.json
│ │ ├── tsconfig.json
│ │ └── tsconfig.spec.json
│ ├── sanity-app-esm
│ │ ├── .editorconfig
│ │ ├── .gitignore
│ │ ├── .vscode
│ │ │ ├── extensions.json
│ │ │ ├── launch.json
│ │ │ └── tasks.json
│ │ ├── CHANGELOG.md
│ │ ├── README.md
│ │ ├── angular.json
│ │ ├── custom-webpack.config.cjs
│ │ ├── custom-webpack.config.js
│ │ ├── custom-webpack.config.ts
│ │ ├── cypress.config.ts
│ │ ├── e2e
│ │ │ ├── src
│ │ │ │ ├── app.e2e-spec.ts
│ │ │ │ └── app.po.ts
│ │ │ └── tsconfig.json
│ │ ├── index.transform.cjs
│ │ ├── index.transform.js
│ │ ├── index.transform.ts
│ │ ├── karma.conf.cjs
│ │ ├── package.json
│ │ ├── src
│ │ │ ├── app
│ │ │ │ ├── app.component.css
│ │ │ │ ├── app.component.html
│ │ │ │ ├── app.component.spec.ts
│ │ │ │ └── app.component.ts
│ │ │ ├── assets
│ │ │ │ └── .gitkeep
│ │ │ ├── environments
│ │ │ │ ├── environment.prod.ts
│ │ │ │ └── environment.ts
│ │ │ ├── favicon.ico
│ │ │ ├── index.html
│ │ │ ├── main.ts
│ │ │ └── styles.css
│ │ ├── tsconfig.app.json
│ │ ├── tsconfig.json
│ │ └── tsconfig.spec.json
│ └── sanity-app
│ │ ├── .editorconfig
│ │ ├── .gitignore
│ │ ├── CHANGELOG.md
│ │ ├── README.md
│ │ ├── angular.json
│ │ ├── custom-webpack.config.js
│ │ ├── custom-webpack.config.mjs
│ │ ├── cypress.config.ts
│ │ ├── e2e
│ │ ├── src
│ │ │ ├── app.e2e-spec.ts
│ │ │ └── app.po.ts
│ │ └── tsconfig.json
│ │ ├── eslint.config.js
│ │ ├── index.transform.js
│ │ ├── index.transform.mjs
│ │ ├── karma.conf.js
│ │ ├── package.json
│ │ ├── src
│ │ ├── app
│ │ │ ├── app.component.html
│ │ │ ├── app.component.scss
│ │ │ ├── app.component.spec.ts
│ │ │ └── app.component.ts
│ │ ├── assets
│ │ │ └── .gitkeep
│ │ ├── environments
│ │ │ ├── environment.prod.ts
│ │ │ └── environment.ts
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ ├── main.ts
│ │ └── styles.scss
│ │ ├── tsconfig.app.json
│ │ ├── tsconfig.json
│ │ └── tsconfig.spec.json
├── jest
│ ├── multiple-apps
│ │ ├── .editorconfig
│ │ ├── .gitignore
│ │ ├── CHANGELOG.md
│ │ ├── README.md
│ │ ├── angular.json
│ │ ├── eslint.config.js
│ │ ├── package.json
│ │ ├── projects
│ │ │ ├── my-first-app
│ │ │ │ ├── configs
│ │ │ │ │ └── tsconfig.spec.json
│ │ │ │ ├── cypress.config.ts
│ │ │ │ ├── e2e
│ │ │ │ │ ├── src
│ │ │ │ │ │ ├── app.e2e-spec.ts
│ │ │ │ │ │ └── app.po.ts
│ │ │ │ │ └── tsconfig.json
│ │ │ │ ├── eslint.config.js
│ │ │ │ ├── src
│ │ │ │ │ ├── app
│ │ │ │ │ │ ├── app.component.css
│ │ │ │ │ │ ├── app.component.html
│ │ │ │ │ │ ├── app.component.spec.ts
│ │ │ │ │ │ └── app.component.ts
│ │ │ │ │ ├── assets
│ │ │ │ │ │ └── .gitkeep
│ │ │ │ │ ├── environments
│ │ │ │ │ │ ├── environment.prod.ts
│ │ │ │ │ │ └── environment.ts
│ │ │ │ │ ├── favicon.ico
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── main.ts
│ │ │ │ │ └── styles.css
│ │ │ │ └── tsconfig.app.json
│ │ │ ├── my-second-app
│ │ │ │ ├── cypress.config.ts
│ │ │ │ ├── e2e
│ │ │ │ │ ├── src
│ │ │ │ │ │ ├── app.e2e-spec.ts
│ │ │ │ │ │ └── app.po.ts
│ │ │ │ │ └── tsconfig.json
│ │ │ │ ├── eslint.config.js
│ │ │ │ ├── src
│ │ │ │ │ ├── app
│ │ │ │ │ │ ├── app.component.css
│ │ │ │ │ │ ├── app.component.html
│ │ │ │ │ │ ├── app.component.spec.ts
│ │ │ │ │ │ └── app.component.ts
│ │ │ │ │ ├── assets
│ │ │ │ │ │ └── .gitkeep
│ │ │ │ │ ├── environments
│ │ │ │ │ │ ├── environment.prod.ts
│ │ │ │ │ │ └── environment.ts
│ │ │ │ │ ├── favicon.ico
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── main.ts
│ │ │ │ │ └── styles.css
│ │ │ │ ├── tsconfig.app.json
│ │ │ │ └── tsconfig.spec.json
│ │ │ └── my-shared-library
│ │ │ │ ├── README.md
│ │ │ │ ├── eslint.config.js
│ │ │ │ ├── ng-package.json
│ │ │ │ ├── package.json
│ │ │ │ ├── src
│ │ │ │ ├── lib
│ │ │ │ │ ├── my-shared-library.component.spec.ts
│ │ │ │ │ ├── my-shared-library.component.ts
│ │ │ │ │ ├── my-shared-library.module.ts
│ │ │ │ │ ├── my-shared-library.service.spec.ts
│ │ │ │ │ └── my-shared-library.service.ts
│ │ │ │ └── public-api.ts
│ │ │ │ ├── tsconfig.lib.json
│ │ │ │ ├── tsconfig.lib.prod.json
│ │ │ │ └── tsconfig.spec.json
│ │ └── tsconfig.json
│ └── simple-app
│ │ ├── .editorconfig
│ │ ├── .gitignore
│ │ ├── CHANGELOG.md
│ │ ├── README.md
│ │ ├── angular.json
│ │ ├── cypress.config.ts
│ │ ├── e2e
│ │ ├── src
│ │ │ ├── app.e2e-spec.ts
│ │ │ └── app.po.ts
│ │ └── tsconfig.json
│ │ ├── eslint.config.js
│ │ ├── jest.config.mjs
│ │ ├── jest.config.ts
│ │ ├── package.json
│ │ ├── src
│ │ ├── app
│ │ │ ├── app.component.html
│ │ │ ├── app.component.scss
│ │ │ ├── app.component.spec.ts
│ │ │ ├── app.component.ts
│ │ │ └── link
│ │ │ │ ├── link.component.html
│ │ │ │ ├── link.component.scss
│ │ │ │ ├── link.component.spec.ts
│ │ │ │ └── link.component.ts
│ │ ├── assets
│ │ │ └── .gitkeep
│ │ ├── environments
│ │ │ ├── environment.prod.ts
│ │ │ └── environment.ts
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ ├── main.ts
│ │ └── styles.scss
│ │ ├── tsconfig.app.json
│ │ ├── tsconfig.json
│ │ └── tsconfig.spec.json
└── timestamp
│ ├── .editorconfig
│ ├── .gitignore
│ ├── CHANGELOG.md
│ ├── README.md
│ ├── angular.json
│ ├── cypress.config.ts
│ ├── e2e
│ ├── src
│ │ ├── app.e2e-spec.ts
│ │ └── app.po.ts
│ └── tsconfig.json
│ ├── eslint.config.js
│ ├── package.json
│ ├── src
│ ├── app
│ │ ├── app.component.html
│ │ ├── app.component.scss
│ │ ├── app.component.spec.ts
│ │ └── app.component.ts
│ ├── assets
│ │ └── .gitkeep
│ ├── environments
│ │ ├── environment.prod.ts
│ │ └── environment.ts
│ ├── favicon.ico
│ ├── index.html
│ ├── main.ts
│ └── styles.scss
│ ├── tsconfig.app.json
│ ├── tsconfig.json
│ └── tsconfig.spec.json
├── jest-common.config.js
├── jest-custom-environment.js
├── jest-e2e.config.js
├── jest-ut.config.js
├── lerna.json
├── merge-schemes.ts
├── package.json
├── packages
├── bazel
│ ├── .gitignore
│ ├── CHANGELOG.md
│ ├── README.md
│ ├── builders.json
│ ├── package.json
│ ├── scripts
│ │ └── ci.js
│ ├── src
│ │ ├── index.ts
│ │ └── schema.json
│ ├── tsconfig.json
│ └── types.d.ts
├── common
│ ├── .gitignore
│ ├── CHANGELOG.md
│ ├── package.json
│ ├── src
│ │ ├── index.ts
│ │ ├── load-module.ts
│ │ └── package-utils.ts
│ └── tsconfig.json
├── custom-esbuild
│ ├── .gitignore
│ ├── CHANGELOG.md
│ ├── README.md
│ ├── builders.json
│ ├── e2e
│ │ └── custom-esbuild-schema.spec.ts
│ ├── package.json
│ ├── scripts
│ │ └── ci.sh
│ ├── src
│ │ ├── application
│ │ │ ├── index.ts
│ │ │ └── schema.ext.json
│ │ ├── custom-esbuild-schema.ts
│ │ ├── dev-server
│ │ │ ├── index.ts
│ │ │ ├── patch-builder-context.ts
│ │ │ ├── schema.ext.json
│ │ │ └── types.ts
│ │ ├── index.ts
│ │ ├── load-index-html-transformer.spec.ts
│ │ ├── load-index-html-transformer.ts
│ │ ├── load-plugin.spec.ts
│ │ ├── load-plugins.ts
│ │ ├── schemes.ts
│ │ └── unit-test
│ │ │ ├── index.ts
│ │ │ └── schema.ext.json
│ └── tsconfig.json
├── custom-webpack
│ ├── .gitignore
│ ├── CHANGELOG.md
│ ├── README.md
│ ├── builders.json
│ ├── e2e
│ │ ├── custom-webpack-browser-schema.spec.ts
│ │ ├── custom-webpack-config-schema.ts
│ │ ├── custom-webpack-karma-schema.spec.ts
│ │ └── custom-webpack-server-schema.spec.ts
│ ├── package.json
│ ├── scripts
│ │ └── ci.sh
│ ├── src
│ │ ├── browser
│ │ │ ├── index.ts
│ │ │ └── schema.ext.json
│ │ ├── custom-webpack-builder-config.ts
│ │ ├── custom-webpack-builder.spec.ts
│ │ ├── custom-webpack-builder.ts
│ │ ├── custom-webpack-schema.ts
│ │ ├── dev-server
│ │ │ ├── index.ts
│ │ │ └── schema.ext.json
│ │ ├── extract-i18n
│ │ │ ├── index.ts
│ │ │ └── schema.ext.json
│ │ ├── generic-browser-builder.ts
│ │ ├── index.ts
│ │ ├── karma
│ │ │ ├── index.ts
│ │ │ └── schema.ext.json
│ │ ├── schema.ext.json
│ │ ├── schemes.ts
│ │ ├── server
│ │ │ ├── index.ts
│ │ │ └── schema.ext.json
│ │ ├── transform-factories.spec.ts
│ │ ├── transform-factories.ts
│ │ ├── type-definition.ts
│ │ ├── webpack-config-merger.spec.ts
│ │ └── webpack-config-merger.ts
│ └── tsconfig.json
├── jest
│ ├── .gitignore
│ ├── CHANGELOG.md
│ ├── README.md
│ ├── builders.json
│ ├── package.json
│ ├── scripts
│ │ └── ci.sh
│ ├── src
│ │ ├── custom-config.resolver.spec.ts
│ │ ├── custom-config.resolver.ts
│ │ ├── default-config.resolver.spec.ts
│ │ ├── default-config.resolver.ts
│ │ ├── global-mocks
│ │ │ ├── computed-style.ts
│ │ │ ├── doctype.ts
│ │ │ ├── match-media.ts
│ │ │ └── style-transform.ts
│ │ ├── index.ts
│ │ ├── jest-config
│ │ │ ├── default-config.ts
│ │ │ ├── mock-module.ts
│ │ │ └── setup.ts
│ │ ├── jest-configuration-builder.spec.ts
│ │ ├── jest-configuration-builder.ts
│ │ ├── options-converter.spec.ts
│ │ ├── options-converter.ts
│ │ ├── schema.json
│ │ ├── types.ts
│ │ └── utils.ts
│ ├── tsconfig.json
│ ├── tsconfig.lib.json
│ └── tsconfig.spec.json
└── timestamp
│ ├── .gitignore
│ ├── CHANGELOG.md
│ ├── LICENSE
│ ├── README.md
│ ├── builders.json
│ ├── package.json
│ ├── src
│ ├── index.ts
│ └── schema.json
│ └── tsconfig.json
├── renovate.json
├── scripts
├── default-registry.sh
├── local-registry.sh
├── run-ci.sh
├── update-example.js
├── update-package.js
└── verdaccio.yaml
├── tsconfig.json
└── yarn.lock
/.all-contributorsrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/.all-contributorsrc
--------------------------------------------------------------------------------
/.commitlintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": ["@commitlint/config-conventional"]
3 | }
4 |
--------------------------------------------------------------------------------
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/.github/FUNDING.yml
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/bug_report.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/.github/ISSUE_TEMPLATE/bug_report.md
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/feature_request.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/.github/ISSUE_TEMPLATE/feature_request.md
--------------------------------------------------------------------------------
/.github/PULL_REQUEST_TEMPLATE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/.github/PULL_REQUEST_TEMPLATE.md
--------------------------------------------------------------------------------
/.github/autoapproval.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/.github/autoapproval.yml
--------------------------------------------------------------------------------
/.github/workflows/ci.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/.github/workflows/ci.yml
--------------------------------------------------------------------------------
/.github/workflows/graduate.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/.github/workflows/graduate.yml
--------------------------------------------------------------------------------
/.github/workflows/update.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/.github/workflows/update.yml
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/.gitignore
--------------------------------------------------------------------------------
/.husky/.gitignore:
--------------------------------------------------------------------------------
1 | _
2 |
--------------------------------------------------------------------------------
/.husky/commit-msg:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | . "$(dirname "$0")/_/husky.sh"
3 |
4 | yarn commitlint --edit $1
5 |
--------------------------------------------------------------------------------
/.husky/pre-commit:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | . "$(dirname "$0")/_/husky.sh"
3 |
4 | yarn lint-staged
5 |
--------------------------------------------------------------------------------
/.vscode/settings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/.vscode/settings.json
--------------------------------------------------------------------------------
/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs
--------------------------------------------------------------------------------
/.yarn/releases/yarn-3.8.7.cjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/.yarn/releases/yarn-3.8.7.cjs
--------------------------------------------------------------------------------
/.yarnrc.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/.yarnrc.yml
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/LICENSE
--------------------------------------------------------------------------------
/MIGRATION.MD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/MIGRATION.MD
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/README.md
--------------------------------------------------------------------------------
/examples/bazel/.gitignore:
--------------------------------------------------------------------------------
1 | bazel-*
2 |
--------------------------------------------------------------------------------
/examples/bazel/BUILD.bazel:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/bazel/BUILD.bazel
--------------------------------------------------------------------------------
/examples/bazel/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/bazel/CHANGELOG.md
--------------------------------------------------------------------------------
/examples/bazel/MODULE.bazel:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/bazel/MODULE.bazel
--------------------------------------------------------------------------------
/examples/bazel/MODULE.bazel.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/bazel/MODULE.bazel.lock
--------------------------------------------------------------------------------
/examples/bazel/WORKSPACE:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/examples/bazel/angular.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/bazel/angular.json
--------------------------------------------------------------------------------
/examples/bazel/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/bazel/package.json
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app-esm/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app-esm/.editorconfig
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app-esm/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app-esm/.gitignore
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app-esm/angular.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app-esm/angular.json
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app-esm/cypress.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app-esm/cypress.config.js
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app-esm/e2e/src/app.e2e-spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app-esm/e2e/src/app.e2e-spec.ts
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app-esm/e2e/src/app.po.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app-esm/e2e/src/app.po.ts
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app-esm/e2e/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app-esm/e2e/tsconfig.json
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app-esm/esbuild/define-text-by-option-plugin.cjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app-esm/esbuild/define-text-by-option-plugin.cjs
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app-esm/esbuild/define-text-by-option-plugin.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app-esm/esbuild/define-text-by-option-plugin.js
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app-esm/esbuild/define-text-by-option-plugin.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app-esm/esbuild/define-text-by-option-plugin.ts
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app-esm/esbuild/define-text-plugin.cjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app-esm/esbuild/define-text-plugin.cjs
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app-esm/esbuild/define-text-plugin.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app-esm/esbuild/define-text-plugin.js
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app-esm/esbuild/define-text-plugin.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app-esm/esbuild/define-text-plugin.ts
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app-esm/esbuild/send-hello-middleware.cjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app-esm/esbuild/send-hello-middleware.cjs
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app-esm/esbuild/send-hello-middleware.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app-esm/esbuild/send-hello-middleware.js
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app-esm/esbuild/send-hello-middleware.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app-esm/esbuild/send-hello-middleware.ts
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app-esm/eslint.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app-esm/eslint.config.js
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app-esm/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app-esm/package.json
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app-esm/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app-esm/src/app/app.component.html
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app-esm/src/app/app.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app-esm/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app-esm/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app-esm/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app-esm/src/app/app.component.ts
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app-esm/src/app/app.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app-esm/src/app/app.config.ts
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app-esm/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app-esm/src/environments/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true,
3 | };
4 |
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app-esm/src/environments/environment.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app-esm/src/environments/environment.ts
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app-esm/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app-esm/src/favicon.ico
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app-esm/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app-esm/src/index.html
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app-esm/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app-esm/src/main.ts
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app-esm/src/styles.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app-esm/src/styles.scss
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app-esm/tsconfig.app.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app-esm/tsconfig.app.json
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app-esm/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app-esm/tsconfig.json
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app-esm/tsconfig.spec.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app-esm/tsconfig.spec.json
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app/.editorconfig
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app/.gitignore
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app/angular.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app/angular.json
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app/cypress.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app/cypress.config.ts
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app/e2e/src/app.e2e-spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app/e2e/src/app.e2e-spec.ts
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app/e2e/src/app.po.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app/e2e/src/app.po.ts
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app/e2e/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app/e2e/tsconfig.json
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app/esbuild/define-text-by-option-plugin.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app/esbuild/define-text-by-option-plugin.js
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app/esbuild/define-text-by-option-plugin.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app/esbuild/define-text-by-option-plugin.mjs
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app/esbuild/define-text-plugin.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app/esbuild/define-text-plugin.js
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app/esbuild/define-text-plugin.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app/esbuild/define-text-plugin.mjs
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app/esbuild/send-hello-middleware.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app/esbuild/send-hello-middleware.js
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app/esbuild/send-hello-middleware.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app/esbuild/send-hello-middleware.mjs
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app/eslint.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app/eslint.config.js
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app/package.json
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app/src/app/app.component.html
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app/src/app/app.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app/src/app/app.component.ts
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app/src/app/app.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app/src/app/app.config.ts
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app/src/environments/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true,
3 | };
4 |
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app/src/environments/environment.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app/src/environments/environment.ts
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app/src/favicon.ico
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app/src/index.html
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app/src/main.ts
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app/src/styles.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app/src/styles.scss
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app/tsconfig.app.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app/tsconfig.app.json
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app/tsconfig.json
--------------------------------------------------------------------------------
/examples/custom-esbuild/sanity-esbuild-app/tsconfig.spec.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-esbuild/sanity-esbuild-app/tsconfig.spec.json
--------------------------------------------------------------------------------
/examples/custom-webpack/full-cycle-app/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/full-cycle-app/.editorconfig
--------------------------------------------------------------------------------
/examples/custom-webpack/full-cycle-app/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/full-cycle-app/.gitignore
--------------------------------------------------------------------------------
/examples/custom-webpack/full-cycle-app/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/full-cycle-app/CHANGELOG.md
--------------------------------------------------------------------------------
/examples/custom-webpack/full-cycle-app/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/full-cycle-app/README.md
--------------------------------------------------------------------------------
/examples/custom-webpack/full-cycle-app/angular.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/full-cycle-app/angular.json
--------------------------------------------------------------------------------
/examples/custom-webpack/full-cycle-app/cypress.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/full-cycle-app/cypress.config.ts
--------------------------------------------------------------------------------
/examples/custom-webpack/full-cycle-app/e2e/src/app-itwcw.e2e-spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/full-cycle-app/e2e/src/app-itwcw.e2e-spec.ts
--------------------------------------------------------------------------------
/examples/custom-webpack/full-cycle-app/e2e/src/app-prod.e2e-spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/full-cycle-app/e2e/src/app-prod.e2e-spec.ts
--------------------------------------------------------------------------------
/examples/custom-webpack/full-cycle-app/e2e/src/app.e2e-spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/full-cycle-app/e2e/src/app.e2e-spec.ts
--------------------------------------------------------------------------------
/examples/custom-webpack/full-cycle-app/e2e/src/app.po.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/full-cycle-app/e2e/src/app.po.ts
--------------------------------------------------------------------------------
/examples/custom-webpack/full-cycle-app/e2e/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/full-cycle-app/e2e/tsconfig.json
--------------------------------------------------------------------------------
/examples/custom-webpack/full-cycle-app/eslint.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/full-cycle-app/eslint.config.js
--------------------------------------------------------------------------------
/examples/custom-webpack/full-cycle-app/extra-webpack.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/full-cycle-app/extra-webpack.config.ts
--------------------------------------------------------------------------------
/examples/custom-webpack/full-cycle-app/func-webpack.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/full-cycle-app/func-webpack.config.ts
--------------------------------------------------------------------------------
/examples/custom-webpack/full-cycle-app/index-html.transform.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/full-cycle-app/index-html.transform.js
--------------------------------------------------------------------------------
/examples/custom-webpack/full-cycle-app/index-html.transform.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/full-cycle-app/index-html.transform.ts
--------------------------------------------------------------------------------
/examples/custom-webpack/full-cycle-app/karma.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/full-cycle-app/karma.conf.js
--------------------------------------------------------------------------------
/examples/custom-webpack/full-cycle-app/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/full-cycle-app/package.json
--------------------------------------------------------------------------------
/examples/custom-webpack/full-cycle-app/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/full-cycle-app/src/app/app.component.html
--------------------------------------------------------------------------------
/examples/custom-webpack/full-cycle-app/src/app/app.component.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/full-cycle-app/src/app/app.component.scss
--------------------------------------------------------------------------------
/examples/custom-webpack/full-cycle-app/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/full-cycle-app/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/examples/custom-webpack/full-cycle-app/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/full-cycle-app/src/app/app.component.ts
--------------------------------------------------------------------------------
/examples/custom-webpack/full-cycle-app/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/examples/custom-webpack/full-cycle-app/src/environments/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true,
3 | };
4 |
--------------------------------------------------------------------------------
/examples/custom-webpack/full-cycle-app/src/environments/environment.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/full-cycle-app/src/environments/environment.ts
--------------------------------------------------------------------------------
/examples/custom-webpack/full-cycle-app/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/full-cycle-app/src/favicon.ico
--------------------------------------------------------------------------------
/examples/custom-webpack/full-cycle-app/src/footer-template.html:
--------------------------------------------------------------------------------
1 |
Hello World
2 |
--------------------------------------------------------------------------------
/examples/custom-webpack/full-cycle-app/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/full-cycle-app/src/index.html
--------------------------------------------------------------------------------
/examples/custom-webpack/full-cycle-app/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/full-cycle-app/src/main.ts
--------------------------------------------------------------------------------
/examples/custom-webpack/full-cycle-app/src/styles.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/full-cycle-app/src/styles.scss
--------------------------------------------------------------------------------
/examples/custom-webpack/full-cycle-app/tsconfig.app.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/full-cycle-app/tsconfig.app.json
--------------------------------------------------------------------------------
/examples/custom-webpack/full-cycle-app/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/full-cycle-app/tsconfig.json
--------------------------------------------------------------------------------
/examples/custom-webpack/full-cycle-app/tsconfig.spec.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/full-cycle-app/tsconfig.spec.json
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app-esm/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app-esm/.editorconfig
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app-esm/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app-esm/.gitignore
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app-esm/.vscode/extensions.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app-esm/.vscode/extensions.json
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app-esm/.vscode/launch.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app-esm/.vscode/launch.json
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app-esm/.vscode/tasks.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app-esm/.vscode/tasks.json
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app-esm/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app-esm/CHANGELOG.md
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app-esm/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app-esm/README.md
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app-esm/angular.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app-esm/angular.json
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app-esm/custom-webpack.config.cjs:
--------------------------------------------------------------------------------
1 | module.exports = {}
2 |
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app-esm/custom-webpack.config.js:
--------------------------------------------------------------------------------
1 | export default {};
2 |
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app-esm/custom-webpack.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app-esm/custom-webpack.config.ts
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app-esm/cypress.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app-esm/cypress.config.ts
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app-esm/e2e/src/app.e2e-spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app-esm/e2e/src/app.e2e-spec.ts
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app-esm/e2e/src/app.po.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app-esm/e2e/src/app.po.ts
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app-esm/e2e/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app-esm/e2e/tsconfig.json
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app-esm/index.transform.cjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app-esm/index.transform.cjs
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app-esm/index.transform.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app-esm/index.transform.js
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app-esm/index.transform.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app-esm/index.transform.ts
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app-esm/karma.conf.cjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app-esm/karma.conf.cjs
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app-esm/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app-esm/package.json
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app-esm/src/app/app.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app-esm/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app-esm/src/app/app.component.html
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app-esm/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app-esm/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app-esm/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app-esm/src/app/app.component.ts
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app-esm/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app-esm/src/environments/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true,
3 | };
4 |
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app-esm/src/environments/environment.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app-esm/src/environments/environment.ts
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app-esm/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app-esm/src/favicon.ico
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app-esm/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app-esm/src/index.html
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app-esm/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app-esm/src/main.ts
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app-esm/src/styles.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app-esm/src/styles.css
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app-esm/tsconfig.app.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app-esm/tsconfig.app.json
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app-esm/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app-esm/tsconfig.json
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app-esm/tsconfig.spec.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app-esm/tsconfig.spec.json
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app/.editorconfig
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app/.gitignore
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app/CHANGELOG.md
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app/README.md
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app/angular.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app/angular.json
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app/custom-webpack.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {};
2 |
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app/custom-webpack.config.mjs:
--------------------------------------------------------------------------------
1 | export default {};
2 |
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app/cypress.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app/cypress.config.ts
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app/e2e/src/app.e2e-spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app/e2e/src/app.e2e-spec.ts
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app/e2e/src/app.po.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app/e2e/src/app.po.ts
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app/e2e/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app/e2e/tsconfig.json
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app/eslint.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app/eslint.config.js
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app/index.transform.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app/index.transform.js
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app/index.transform.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app/index.transform.mjs
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app/karma.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app/karma.conf.js
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app/package.json
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app/src/app/app.component.html
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app/src/app/app.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app/src/app/app.component.ts
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app/src/environments/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true,
3 | };
4 |
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app/src/environments/environment.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app/src/environments/environment.ts
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app/src/favicon.ico
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app/src/index.html
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app/src/main.ts
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app/src/styles.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app/src/styles.scss
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app/tsconfig.app.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app/tsconfig.app.json
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app/tsconfig.json
--------------------------------------------------------------------------------
/examples/custom-webpack/sanity-app/tsconfig.spec.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/custom-webpack/sanity-app/tsconfig.spec.json
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/.editorconfig
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/.gitignore
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/CHANGELOG.md
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/README.md
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/angular.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/angular.json
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/eslint.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/eslint.config.js
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/package.json
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-first-app/configs/tsconfig.spec.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-first-app/configs/tsconfig.spec.json
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-first-app/cypress.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-first-app/cypress.config.ts
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-first-app/e2e/src/app.e2e-spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-first-app/e2e/src/app.e2e-spec.ts
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-first-app/e2e/src/app.po.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-first-app/e2e/src/app.po.ts
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-first-app/e2e/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-first-app/e2e/tsconfig.json
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-first-app/eslint.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-first-app/eslint.config.js
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-first-app/src/app/app.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-first-app/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-first-app/src/app/app.component.html
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-first-app/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-first-app/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-first-app/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-first-app/src/app/app.component.ts
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-first-app/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-first-app/src/environments/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true,
3 | };
4 |
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-first-app/src/environments/environment.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-first-app/src/environments/environment.ts
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-first-app/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-first-app/src/favicon.ico
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-first-app/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-first-app/src/index.html
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-first-app/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-first-app/src/main.ts
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-first-app/src/styles.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-first-app/src/styles.css
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-first-app/tsconfig.app.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-first-app/tsconfig.app.json
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-second-app/cypress.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-second-app/cypress.config.ts
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-second-app/e2e/src/app.e2e-spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-second-app/e2e/src/app.e2e-spec.ts
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-second-app/e2e/src/app.po.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-second-app/e2e/src/app.po.ts
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-second-app/e2e/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-second-app/e2e/tsconfig.json
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-second-app/eslint.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-second-app/eslint.config.js
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-second-app/src/app/app.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-second-app/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-second-app/src/app/app.component.html
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-second-app/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-second-app/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-second-app/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-second-app/src/app/app.component.ts
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-second-app/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-second-app/src/environments/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true,
3 | };
4 |
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-second-app/src/environments/environment.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-second-app/src/environments/environment.ts
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-second-app/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-second-app/src/favicon.ico
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-second-app/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-second-app/src/index.html
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-second-app/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-second-app/src/main.ts
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-second-app/src/styles.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-second-app/src/styles.css
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-second-app/tsconfig.app.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-second-app/tsconfig.app.json
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-second-app/tsconfig.spec.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-second-app/tsconfig.spec.json
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-shared-library/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-shared-library/README.md
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-shared-library/eslint.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-shared-library/eslint.config.js
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-shared-library/ng-package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-shared-library/ng-package.json
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-shared-library/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-shared-library/package.json
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-shared-library/src/lib/my-shared-library.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-shared-library/src/lib/my-shared-library.component.spec.ts
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-shared-library/src/lib/my-shared-library.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-shared-library/src/lib/my-shared-library.component.ts
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-shared-library/src/lib/my-shared-library.module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-shared-library/src/lib/my-shared-library.module.ts
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-shared-library/src/lib/my-shared-library.service.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-shared-library/src/lib/my-shared-library.service.spec.ts
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-shared-library/src/lib/my-shared-library.service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-shared-library/src/lib/my-shared-library.service.ts
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-shared-library/src/public-api.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-shared-library/src/public-api.ts
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-shared-library/tsconfig.lib.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-shared-library/tsconfig.lib.json
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-shared-library/tsconfig.lib.prod.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-shared-library/tsconfig.lib.prod.json
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/projects/my-shared-library/tsconfig.spec.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/projects/my-shared-library/tsconfig.spec.json
--------------------------------------------------------------------------------
/examples/jest/multiple-apps/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/multiple-apps/tsconfig.json
--------------------------------------------------------------------------------
/examples/jest/simple-app/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/simple-app/.editorconfig
--------------------------------------------------------------------------------
/examples/jest/simple-app/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/simple-app/.gitignore
--------------------------------------------------------------------------------
/examples/jest/simple-app/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/simple-app/CHANGELOG.md
--------------------------------------------------------------------------------
/examples/jest/simple-app/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/simple-app/README.md
--------------------------------------------------------------------------------
/examples/jest/simple-app/angular.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/simple-app/angular.json
--------------------------------------------------------------------------------
/examples/jest/simple-app/cypress.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/simple-app/cypress.config.ts
--------------------------------------------------------------------------------
/examples/jest/simple-app/e2e/src/app.e2e-spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/simple-app/e2e/src/app.e2e-spec.ts
--------------------------------------------------------------------------------
/examples/jest/simple-app/e2e/src/app.po.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/simple-app/e2e/src/app.po.ts
--------------------------------------------------------------------------------
/examples/jest/simple-app/e2e/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/simple-app/e2e/tsconfig.json
--------------------------------------------------------------------------------
/examples/jest/simple-app/eslint.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/simple-app/eslint.config.js
--------------------------------------------------------------------------------
/examples/jest/simple-app/jest.config.mjs:
--------------------------------------------------------------------------------
1 | export default {};
2 |
--------------------------------------------------------------------------------
/examples/jest/simple-app/jest.config.ts:
--------------------------------------------------------------------------------
1 | export default {};
2 |
--------------------------------------------------------------------------------
/examples/jest/simple-app/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/simple-app/package.json
--------------------------------------------------------------------------------
/examples/jest/simple-app/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/simple-app/src/app/app.component.html
--------------------------------------------------------------------------------
/examples/jest/simple-app/src/app/app.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/examples/jest/simple-app/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/simple-app/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/examples/jest/simple-app/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/simple-app/src/app/app.component.ts
--------------------------------------------------------------------------------
/examples/jest/simple-app/src/app/link/link.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/simple-app/src/app/link/link.component.html
--------------------------------------------------------------------------------
/examples/jest/simple-app/src/app/link/link.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/examples/jest/simple-app/src/app/link/link.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/simple-app/src/app/link/link.component.spec.ts
--------------------------------------------------------------------------------
/examples/jest/simple-app/src/app/link/link.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/simple-app/src/app/link/link.component.ts
--------------------------------------------------------------------------------
/examples/jest/simple-app/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/examples/jest/simple-app/src/environments/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true,
3 | };
4 |
--------------------------------------------------------------------------------
/examples/jest/simple-app/src/environments/environment.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/simple-app/src/environments/environment.ts
--------------------------------------------------------------------------------
/examples/jest/simple-app/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/simple-app/src/favicon.ico
--------------------------------------------------------------------------------
/examples/jest/simple-app/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/simple-app/src/index.html
--------------------------------------------------------------------------------
/examples/jest/simple-app/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/simple-app/src/main.ts
--------------------------------------------------------------------------------
/examples/jest/simple-app/src/styles.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/simple-app/src/styles.scss
--------------------------------------------------------------------------------
/examples/jest/simple-app/tsconfig.app.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/simple-app/tsconfig.app.json
--------------------------------------------------------------------------------
/examples/jest/simple-app/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/simple-app/tsconfig.json
--------------------------------------------------------------------------------
/examples/jest/simple-app/tsconfig.spec.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/jest/simple-app/tsconfig.spec.json
--------------------------------------------------------------------------------
/examples/timestamp/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/timestamp/.editorconfig
--------------------------------------------------------------------------------
/examples/timestamp/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/timestamp/.gitignore
--------------------------------------------------------------------------------
/examples/timestamp/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/timestamp/CHANGELOG.md
--------------------------------------------------------------------------------
/examples/timestamp/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/timestamp/README.md
--------------------------------------------------------------------------------
/examples/timestamp/angular.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/timestamp/angular.json
--------------------------------------------------------------------------------
/examples/timestamp/cypress.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/timestamp/cypress.config.ts
--------------------------------------------------------------------------------
/examples/timestamp/e2e/src/app.e2e-spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/timestamp/e2e/src/app.e2e-spec.ts
--------------------------------------------------------------------------------
/examples/timestamp/e2e/src/app.po.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/timestamp/e2e/src/app.po.ts
--------------------------------------------------------------------------------
/examples/timestamp/e2e/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/timestamp/e2e/tsconfig.json
--------------------------------------------------------------------------------
/examples/timestamp/eslint.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/timestamp/eslint.config.js
--------------------------------------------------------------------------------
/examples/timestamp/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/timestamp/package.json
--------------------------------------------------------------------------------
/examples/timestamp/src/app/app.component.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/timestamp/src/app/app.component.html
--------------------------------------------------------------------------------
/examples/timestamp/src/app/app.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/examples/timestamp/src/app/app.component.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/timestamp/src/app/app.component.spec.ts
--------------------------------------------------------------------------------
/examples/timestamp/src/app/app.component.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/timestamp/src/app/app.component.ts
--------------------------------------------------------------------------------
/examples/timestamp/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/examples/timestamp/src/environments/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true,
3 | };
4 |
--------------------------------------------------------------------------------
/examples/timestamp/src/environments/environment.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/timestamp/src/environments/environment.ts
--------------------------------------------------------------------------------
/examples/timestamp/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/timestamp/src/favicon.ico
--------------------------------------------------------------------------------
/examples/timestamp/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/timestamp/src/index.html
--------------------------------------------------------------------------------
/examples/timestamp/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/timestamp/src/main.ts
--------------------------------------------------------------------------------
/examples/timestamp/src/styles.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/timestamp/src/styles.scss
--------------------------------------------------------------------------------
/examples/timestamp/tsconfig.app.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/timestamp/tsconfig.app.json
--------------------------------------------------------------------------------
/examples/timestamp/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/timestamp/tsconfig.json
--------------------------------------------------------------------------------
/examples/timestamp/tsconfig.spec.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/examples/timestamp/tsconfig.spec.json
--------------------------------------------------------------------------------
/jest-common.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/jest-common.config.js
--------------------------------------------------------------------------------
/jest-custom-environment.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/jest-custom-environment.js
--------------------------------------------------------------------------------
/jest-e2e.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/jest-e2e.config.js
--------------------------------------------------------------------------------
/jest-ut.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/jest-ut.config.js
--------------------------------------------------------------------------------
/lerna.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/lerna.json
--------------------------------------------------------------------------------
/merge-schemes.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/merge-schemes.ts
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/package.json
--------------------------------------------------------------------------------
/packages/bazel/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/bazel/.gitignore
--------------------------------------------------------------------------------
/packages/bazel/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/bazel/CHANGELOG.md
--------------------------------------------------------------------------------
/packages/bazel/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/bazel/README.md
--------------------------------------------------------------------------------
/packages/bazel/builders.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/bazel/builders.json
--------------------------------------------------------------------------------
/packages/bazel/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/bazel/package.json
--------------------------------------------------------------------------------
/packages/bazel/scripts/ci.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/bazel/scripts/ci.js
--------------------------------------------------------------------------------
/packages/bazel/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/bazel/src/index.ts
--------------------------------------------------------------------------------
/packages/bazel/src/schema.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/bazel/src/schema.json
--------------------------------------------------------------------------------
/packages/bazel/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/bazel/tsconfig.json
--------------------------------------------------------------------------------
/packages/bazel/types.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/bazel/types.d.ts
--------------------------------------------------------------------------------
/packages/common/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/common/.gitignore
--------------------------------------------------------------------------------
/packages/common/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/common/CHANGELOG.md
--------------------------------------------------------------------------------
/packages/common/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/common/package.json
--------------------------------------------------------------------------------
/packages/common/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/common/src/index.ts
--------------------------------------------------------------------------------
/packages/common/src/load-module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/common/src/load-module.ts
--------------------------------------------------------------------------------
/packages/common/src/package-utils.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/common/src/package-utils.ts
--------------------------------------------------------------------------------
/packages/common/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/common/tsconfig.json
--------------------------------------------------------------------------------
/packages/custom-esbuild/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-esbuild/.gitignore
--------------------------------------------------------------------------------
/packages/custom-esbuild/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-esbuild/CHANGELOG.md
--------------------------------------------------------------------------------
/packages/custom-esbuild/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-esbuild/README.md
--------------------------------------------------------------------------------
/packages/custom-esbuild/builders.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-esbuild/builders.json
--------------------------------------------------------------------------------
/packages/custom-esbuild/e2e/custom-esbuild-schema.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-esbuild/e2e/custom-esbuild-schema.spec.ts
--------------------------------------------------------------------------------
/packages/custom-esbuild/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-esbuild/package.json
--------------------------------------------------------------------------------
/packages/custom-esbuild/scripts/ci.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-esbuild/scripts/ci.sh
--------------------------------------------------------------------------------
/packages/custom-esbuild/src/application/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-esbuild/src/application/index.ts
--------------------------------------------------------------------------------
/packages/custom-esbuild/src/application/schema.ext.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-esbuild/src/application/schema.ext.json
--------------------------------------------------------------------------------
/packages/custom-esbuild/src/custom-esbuild-schema.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-esbuild/src/custom-esbuild-schema.ts
--------------------------------------------------------------------------------
/packages/custom-esbuild/src/dev-server/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-esbuild/src/dev-server/index.ts
--------------------------------------------------------------------------------
/packages/custom-esbuild/src/dev-server/patch-builder-context.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-esbuild/src/dev-server/patch-builder-context.ts
--------------------------------------------------------------------------------
/packages/custom-esbuild/src/dev-server/schema.ext.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-esbuild/src/dev-server/schema.ext.json
--------------------------------------------------------------------------------
/packages/custom-esbuild/src/dev-server/types.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-esbuild/src/dev-server/types.ts
--------------------------------------------------------------------------------
/packages/custom-esbuild/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-esbuild/src/index.ts
--------------------------------------------------------------------------------
/packages/custom-esbuild/src/load-index-html-transformer.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-esbuild/src/load-index-html-transformer.spec.ts
--------------------------------------------------------------------------------
/packages/custom-esbuild/src/load-index-html-transformer.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-esbuild/src/load-index-html-transformer.ts
--------------------------------------------------------------------------------
/packages/custom-esbuild/src/load-plugin.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-esbuild/src/load-plugin.spec.ts
--------------------------------------------------------------------------------
/packages/custom-esbuild/src/load-plugins.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-esbuild/src/load-plugins.ts
--------------------------------------------------------------------------------
/packages/custom-esbuild/src/schemes.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-esbuild/src/schemes.ts
--------------------------------------------------------------------------------
/packages/custom-esbuild/src/unit-test/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-esbuild/src/unit-test/index.ts
--------------------------------------------------------------------------------
/packages/custom-esbuild/src/unit-test/schema.ext.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-esbuild/src/unit-test/schema.ext.json
--------------------------------------------------------------------------------
/packages/custom-esbuild/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-esbuild/tsconfig.json
--------------------------------------------------------------------------------
/packages/custom-webpack/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-webpack/.gitignore
--------------------------------------------------------------------------------
/packages/custom-webpack/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-webpack/CHANGELOG.md
--------------------------------------------------------------------------------
/packages/custom-webpack/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-webpack/README.md
--------------------------------------------------------------------------------
/packages/custom-webpack/builders.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-webpack/builders.json
--------------------------------------------------------------------------------
/packages/custom-webpack/e2e/custom-webpack-browser-schema.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-webpack/e2e/custom-webpack-browser-schema.spec.ts
--------------------------------------------------------------------------------
/packages/custom-webpack/e2e/custom-webpack-config-schema.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-webpack/e2e/custom-webpack-config-schema.ts
--------------------------------------------------------------------------------
/packages/custom-webpack/e2e/custom-webpack-karma-schema.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-webpack/e2e/custom-webpack-karma-schema.spec.ts
--------------------------------------------------------------------------------
/packages/custom-webpack/e2e/custom-webpack-server-schema.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-webpack/e2e/custom-webpack-server-schema.spec.ts
--------------------------------------------------------------------------------
/packages/custom-webpack/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-webpack/package.json
--------------------------------------------------------------------------------
/packages/custom-webpack/scripts/ci.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-webpack/scripts/ci.sh
--------------------------------------------------------------------------------
/packages/custom-webpack/src/browser/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-webpack/src/browser/index.ts
--------------------------------------------------------------------------------
/packages/custom-webpack/src/browser/schema.ext.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-webpack/src/browser/schema.ext.json
--------------------------------------------------------------------------------
/packages/custom-webpack/src/custom-webpack-builder-config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-webpack/src/custom-webpack-builder-config.ts
--------------------------------------------------------------------------------
/packages/custom-webpack/src/custom-webpack-builder.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-webpack/src/custom-webpack-builder.spec.ts
--------------------------------------------------------------------------------
/packages/custom-webpack/src/custom-webpack-builder.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-webpack/src/custom-webpack-builder.ts
--------------------------------------------------------------------------------
/packages/custom-webpack/src/custom-webpack-schema.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-webpack/src/custom-webpack-schema.ts
--------------------------------------------------------------------------------
/packages/custom-webpack/src/dev-server/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-webpack/src/dev-server/index.ts
--------------------------------------------------------------------------------
/packages/custom-webpack/src/dev-server/schema.ext.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-webpack/src/dev-server/schema.ext.json
--------------------------------------------------------------------------------
/packages/custom-webpack/src/extract-i18n/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-webpack/src/extract-i18n/index.ts
--------------------------------------------------------------------------------
/packages/custom-webpack/src/extract-i18n/schema.ext.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-webpack/src/extract-i18n/schema.ext.json
--------------------------------------------------------------------------------
/packages/custom-webpack/src/generic-browser-builder.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-webpack/src/generic-browser-builder.ts
--------------------------------------------------------------------------------
/packages/custom-webpack/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-webpack/src/index.ts
--------------------------------------------------------------------------------
/packages/custom-webpack/src/karma/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-webpack/src/karma/index.ts
--------------------------------------------------------------------------------
/packages/custom-webpack/src/karma/schema.ext.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-webpack/src/karma/schema.ext.json
--------------------------------------------------------------------------------
/packages/custom-webpack/src/schema.ext.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-webpack/src/schema.ext.json
--------------------------------------------------------------------------------
/packages/custom-webpack/src/schemes.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-webpack/src/schemes.ts
--------------------------------------------------------------------------------
/packages/custom-webpack/src/server/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-webpack/src/server/index.ts
--------------------------------------------------------------------------------
/packages/custom-webpack/src/server/schema.ext.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-webpack/src/server/schema.ext.json
--------------------------------------------------------------------------------
/packages/custom-webpack/src/transform-factories.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-webpack/src/transform-factories.spec.ts
--------------------------------------------------------------------------------
/packages/custom-webpack/src/transform-factories.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-webpack/src/transform-factories.ts
--------------------------------------------------------------------------------
/packages/custom-webpack/src/type-definition.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-webpack/src/type-definition.ts
--------------------------------------------------------------------------------
/packages/custom-webpack/src/webpack-config-merger.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-webpack/src/webpack-config-merger.spec.ts
--------------------------------------------------------------------------------
/packages/custom-webpack/src/webpack-config-merger.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-webpack/src/webpack-config-merger.ts
--------------------------------------------------------------------------------
/packages/custom-webpack/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/custom-webpack/tsconfig.json
--------------------------------------------------------------------------------
/packages/jest/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/jest/.gitignore
--------------------------------------------------------------------------------
/packages/jest/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/jest/CHANGELOG.md
--------------------------------------------------------------------------------
/packages/jest/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/jest/README.md
--------------------------------------------------------------------------------
/packages/jest/builders.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/jest/builders.json
--------------------------------------------------------------------------------
/packages/jest/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/jest/package.json
--------------------------------------------------------------------------------
/packages/jest/scripts/ci.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/jest/scripts/ci.sh
--------------------------------------------------------------------------------
/packages/jest/src/custom-config.resolver.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/jest/src/custom-config.resolver.spec.ts
--------------------------------------------------------------------------------
/packages/jest/src/custom-config.resolver.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/jest/src/custom-config.resolver.ts
--------------------------------------------------------------------------------
/packages/jest/src/default-config.resolver.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/jest/src/default-config.resolver.spec.ts
--------------------------------------------------------------------------------
/packages/jest/src/default-config.resolver.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/jest/src/default-config.resolver.ts
--------------------------------------------------------------------------------
/packages/jest/src/global-mocks/computed-style.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/jest/src/global-mocks/computed-style.ts
--------------------------------------------------------------------------------
/packages/jest/src/global-mocks/doctype.ts:
--------------------------------------------------------------------------------
1 | Object.defineProperty(document, 'doctype', {
2 | value: '',
3 | });
4 |
--------------------------------------------------------------------------------
/packages/jest/src/global-mocks/match-media.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/jest/src/global-mocks/match-media.ts
--------------------------------------------------------------------------------
/packages/jest/src/global-mocks/style-transform.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/jest/src/global-mocks/style-transform.ts
--------------------------------------------------------------------------------
/packages/jest/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/jest/src/index.ts
--------------------------------------------------------------------------------
/packages/jest/src/jest-config/default-config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/jest/src/jest-config/default-config.ts
--------------------------------------------------------------------------------
/packages/jest/src/jest-config/mock-module.ts:
--------------------------------------------------------------------------------
1 | export default 'file-mock';
2 |
--------------------------------------------------------------------------------
/packages/jest/src/jest-config/setup.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/jest/src/jest-config/setup.ts
--------------------------------------------------------------------------------
/packages/jest/src/jest-configuration-builder.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/jest/src/jest-configuration-builder.spec.ts
--------------------------------------------------------------------------------
/packages/jest/src/jest-configuration-builder.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/jest/src/jest-configuration-builder.ts
--------------------------------------------------------------------------------
/packages/jest/src/options-converter.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/jest/src/options-converter.spec.ts
--------------------------------------------------------------------------------
/packages/jest/src/options-converter.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/jest/src/options-converter.ts
--------------------------------------------------------------------------------
/packages/jest/src/schema.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/jest/src/schema.json
--------------------------------------------------------------------------------
/packages/jest/src/types.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/jest/src/types.ts
--------------------------------------------------------------------------------
/packages/jest/src/utils.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/jest/src/utils.ts
--------------------------------------------------------------------------------
/packages/jest/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/jest/tsconfig.json
--------------------------------------------------------------------------------
/packages/jest/tsconfig.lib.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/jest/tsconfig.lib.json
--------------------------------------------------------------------------------
/packages/jest/tsconfig.spec.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/jest/tsconfig.spec.json
--------------------------------------------------------------------------------
/packages/timestamp/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/timestamp/.gitignore
--------------------------------------------------------------------------------
/packages/timestamp/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/timestamp/CHANGELOG.md
--------------------------------------------------------------------------------
/packages/timestamp/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/timestamp/LICENSE
--------------------------------------------------------------------------------
/packages/timestamp/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/timestamp/README.md
--------------------------------------------------------------------------------
/packages/timestamp/builders.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/timestamp/builders.json
--------------------------------------------------------------------------------
/packages/timestamp/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/timestamp/package.json
--------------------------------------------------------------------------------
/packages/timestamp/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/timestamp/src/index.ts
--------------------------------------------------------------------------------
/packages/timestamp/src/schema.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/timestamp/src/schema.json
--------------------------------------------------------------------------------
/packages/timestamp/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/packages/timestamp/tsconfig.json
--------------------------------------------------------------------------------
/renovate.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/renovate.json
--------------------------------------------------------------------------------
/scripts/default-registry.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/scripts/default-registry.sh
--------------------------------------------------------------------------------
/scripts/local-registry.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/scripts/local-registry.sh
--------------------------------------------------------------------------------
/scripts/run-ci.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/scripts/run-ci.sh
--------------------------------------------------------------------------------
/scripts/update-example.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/scripts/update-example.js
--------------------------------------------------------------------------------
/scripts/update-package.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/scripts/update-package.js
--------------------------------------------------------------------------------
/scripts/verdaccio.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/scripts/verdaccio.yaml
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/tsconfig.json
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/just-jeb/angular-builders/HEAD/yarn.lock
--------------------------------------------------------------------------------