├── .bazelignore ├── .bazelrc ├── .buildkite └── pipeline.yml ├── .circleci ├── bazel.rc └── config.yml ├── .clang-format ├── .gitignore ├── BUILD.bazel ├── Jenkinsfile ├── LICENSE ├── README.md ├── WORKSPACE ├── e2e ├── BUILD.bazel ├── protractor.on-prepare.js └── src │ ├── app.e2e-spec.ts │ └── app.po.ts ├── graph.png ├── package.json ├── postinstall.tsconfig.json ├── renovate.json ├── src ├── BUILD.bazel ├── app-routing.module.ts ├── app.component.html ├── app.component.ts ├── app.module.dev.ts ├── app.module.ts ├── hello-world │ ├── BUILD.bazel │ ├── hello-world.component.html │ ├── hello-world.component.scss │ ├── hello-world.component.spec.ts │ ├── hello-world.component.ts │ └── hello-world.module.ts ├── images │ ├── BUILD.bazel │ ├── bazel-navbar.svg │ └── github-circle-white-transparent.svg ├── index.html ├── lib │ ├── BUILD.bazel │ └── file.ts ├── main.dev.ts ├── main.prod.ts ├── main.ts ├── material │ ├── BUILD.bazel │ └── material.module.ts ├── module-id.js ├── reducers │ ├── BUILD.bazel │ └── reducers.ts ├── require.config.js ├── server │ ├── BUILD.bazel │ └── app-server.ts ├── styles │ ├── BUILD │ ├── colors.scss │ ├── fonts.scss │ ├── main.scss │ └── shared.scss ├── todos │ ├── BUILD.bazel │ ├── todos.component.html │ ├── todos.component.scss │ ├── todos.component.ts │ └── todos.module.ts ├── tsconfig-test.json └── tsconfig.json └── yarn.lock /.bazelignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/.bazelrc -------------------------------------------------------------------------------- /.buildkite/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/.buildkite/pipeline.yml -------------------------------------------------------------------------------- /.circleci/bazel.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/.circleci/bazel.rc -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | bazel-* 3 | dist 4 | -------------------------------------------------------------------------------- /BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/BUILD.bazel -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/WORKSPACE -------------------------------------------------------------------------------- /e2e/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/e2e/BUILD.bazel -------------------------------------------------------------------------------- /e2e/protractor.on-prepare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/e2e/protractor.on-prepare.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/graph.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/package.json -------------------------------------------------------------------------------- /postinstall.tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/postinstall.tsconfig.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/renovate.json -------------------------------------------------------------------------------- /src/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/BUILD.bazel -------------------------------------------------------------------------------- /src/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/app-routing.module.ts -------------------------------------------------------------------------------- /src/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/app.component.html -------------------------------------------------------------------------------- /src/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/app.component.ts -------------------------------------------------------------------------------- /src/app.module.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/app.module.dev.ts -------------------------------------------------------------------------------- /src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/app.module.ts -------------------------------------------------------------------------------- /src/hello-world/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/hello-world/BUILD.bazel -------------------------------------------------------------------------------- /src/hello-world/hello-world.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/hello-world/hello-world.component.html -------------------------------------------------------------------------------- /src/hello-world/hello-world.component.scss: -------------------------------------------------------------------------------- 1 | @import "src/styles/shared"; 2 | 3 | .mood-icon { 4 | margin: 1rem; 5 | } 6 | -------------------------------------------------------------------------------- /src/hello-world/hello-world.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/hello-world/hello-world.component.spec.ts -------------------------------------------------------------------------------- /src/hello-world/hello-world.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/hello-world/hello-world.component.ts -------------------------------------------------------------------------------- /src/hello-world/hello-world.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/hello-world/hello-world.module.ts -------------------------------------------------------------------------------- /src/images/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/images/BUILD.bazel -------------------------------------------------------------------------------- /src/images/bazel-navbar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/images/bazel-navbar.svg -------------------------------------------------------------------------------- /src/images/github-circle-white-transparent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/images/github-circle-white-transparent.svg -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/index.html -------------------------------------------------------------------------------- /src/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/lib/BUILD.bazel -------------------------------------------------------------------------------- /src/lib/file.ts: -------------------------------------------------------------------------------- 1 | export const msg: string = 'World'; 2 | -------------------------------------------------------------------------------- /src/main.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/main.dev.ts -------------------------------------------------------------------------------- /src/main.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/main.prod.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/material/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/material/BUILD.bazel -------------------------------------------------------------------------------- /src/material/material.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/material/material.module.ts -------------------------------------------------------------------------------- /src/module-id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/module-id.js -------------------------------------------------------------------------------- /src/reducers/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/reducers/BUILD.bazel -------------------------------------------------------------------------------- /src/reducers/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/reducers/reducers.ts -------------------------------------------------------------------------------- /src/require.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/require.config.js -------------------------------------------------------------------------------- /src/server/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/server/BUILD.bazel -------------------------------------------------------------------------------- /src/server/app-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/server/app-server.ts -------------------------------------------------------------------------------- /src/styles/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/styles/BUILD -------------------------------------------------------------------------------- /src/styles/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/styles/colors.scss -------------------------------------------------------------------------------- /src/styles/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/styles/fonts.scss -------------------------------------------------------------------------------- /src/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/styles/main.scss -------------------------------------------------------------------------------- /src/styles/shared.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/styles/shared.scss -------------------------------------------------------------------------------- /src/todos/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/todos/BUILD.bazel -------------------------------------------------------------------------------- /src/todos/todos.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/todos/todos.component.html -------------------------------------------------------------------------------- /src/todos/todos.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/todos/todos.component.scss -------------------------------------------------------------------------------- /src/todos/todos.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/todos/todos.component.ts -------------------------------------------------------------------------------- /src/todos/todos.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/todos/todos.module.ts -------------------------------------------------------------------------------- /src/tsconfig-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/tsconfig-test.json -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelgevold/angular-bazel-example/HEAD/yarn.lock --------------------------------------------------------------------------------