├── .aspect ├── cli │ ├── config.yaml │ ├── main.axl │ └── rules_cc.axl └── workflows │ ├── BUILD.bazel │ ├── README.md │ ├── bazelrc │ ├── config.yaml │ └── deps.lock.json ├── .bazelrc ├── .bazelversion ├── .circleci ├── BUILD.bazel ├── config.yml └── user.yml ├── .clang-tidy ├── .envrc ├── .gitattributes ├── .github └── workflows │ ├── .aspect-workflows-reusable.yaml │ ├── aspect-workflows-delivery.yaml │ ├── aspect-workflows-warming.yaml │ ├── aspect-workflows.yaml │ ├── ci.bazelrc │ ├── ci.yaml │ ├── multitool.yml │ ├── sync_mirrors.yaml │ └── weekly_tag.yaml ├── .gitignore ├── .gitlab-ci.yml ├── .npmrc ├── .pre-commit-config.yaml ├── .prettierignore ├── .prettierrc.yaml ├── .ruff.toml ├── .shellcheckrc ├── .vscode └── settings.json ├── BUILD.bazel ├── CONTRIBUTING.md ├── LICENSE ├── MODULE.bazel ├── Package.resolved ├── Package.swift ├── README.bazel.md ├── README.md ├── REPO.bazel ├── angular-ngc ├── .aspect │ ├── bazelrc │ │ ├── .gitignore │ │ ├── BUILD.bazel │ │ ├── bazel6.bazelrc │ │ ├── convenience.bazelrc │ │ ├── correctness.bazelrc │ │ ├── debug.bazelrc │ │ ├── javascript.bazelrc │ │ └── performance.bazelrc │ └── cli │ │ ├── config.yaml │ │ └── postcss.star ├── .bazelignore ├── .bazeliskrc ├── .bazelrc ├── .bazelversion ├── .browserslistrc ├── .editorconfig ├── .gitignore ├── .npmrc ├── BUILD.bazel ├── README.md ├── WORKSPACE.bazel ├── applications │ ├── demo │ │ ├── BUILD.bazel │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ └── dragula.component.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── package.json │ │ ├── polyfills.ts │ │ └── styles.css │ └── grpc │ │ ├── BUILD.bazel │ │ ├── README.md │ │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ └── app.module.ts │ │ ├── assets │ │ └── .gitkeep │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── package.json │ │ ├── polyfills.ts │ │ └── styles.css ├── defs.bzl ├── package.json ├── packages │ ├── common │ │ ├── BUILD.bazel │ │ ├── package.json │ │ └── src │ │ │ ├── lib │ │ │ ├── common.component.spec.ts │ │ │ ├── common.component.ts │ │ │ └── common.module.ts │ │ │ └── public-api.ts │ ├── connect │ │ ├── BUILD.bazel │ │ ├── README.md │ │ ├── package.json │ │ └── src │ │ │ ├── lib │ │ │ ├── client.provider.ts │ │ │ ├── connect.module.ts │ │ │ ├── grpc-web.module.ts │ │ │ ├── interceptor.token.ts │ │ │ ├── observable-client.ts │ │ │ └── transport.token.ts │ │ │ ├── proto │ │ │ ├── BUILD.bazel │ │ │ ├── eliza.proto │ │ │ ├── eliza_connect.d.ts │ │ │ └── eliza_pb.d.ts │ │ │ └── public-api.ts │ └── lib-a │ │ ├── BUILD.bazel │ │ ├── package.json │ │ └── src │ │ ├── lib │ │ ├── lib-a.component.scss │ │ ├── lib-a.component.spec.ts │ │ ├── lib-a.component.ts │ │ ├── lib-a.module.ts │ │ ├── lib-b.component.spec.ts │ │ └── strings │ │ │ ├── BUILD.bazel │ │ │ └── index.ts │ │ └── public-api.ts ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── tools │ ├── BUILD.bazel │ ├── karma.bzl │ ├── karma.conf.js │ ├── ng.bzl │ ├── ngc.esbuild.ts │ ├── sass.bzl │ ├── sass_workaround.bzl │ ├── test-bootstrap.js │ ├── test-setup.ts │ └── ts.bzl ├── tsconfig.base.json ├── tsconfig.json └── tsconfig.node.json ├── angular ├── .editorconfig ├── .gitignore ├── .vscode │ ├── extensions.json │ ├── launch.json │ └── tasks.json ├── BUILD.bazel ├── README.md ├── angular.json ├── package.json ├── projects │ ├── my-app │ │ ├── BUILD.bazel │ │ ├── public │ │ │ └── favicon.ico │ │ ├── src │ │ │ ├── app │ │ │ │ ├── app.config.ts │ │ │ │ ├── app.css │ │ │ │ ├── app.html │ │ │ │ ├── app.routes.ts │ │ │ │ ├── app.spec.ts │ │ │ │ └── app.ts │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ └── styles.css │ │ ├── tsconfig.app.json │ │ └── tsconfig.spec.json │ └── my-lib │ │ ├── BUILD.bazel │ │ ├── README.md │ │ ├── ng-package.json │ │ ├── package.json │ │ ├── src │ │ ├── lib │ │ │ ├── my-lib.spec.ts │ │ │ └── my-lib.ts │ │ └── public-api.ts │ │ ├── tsconfig.lib.json │ │ ├── tsconfig.lib.prod.json │ │ └── tsconfig.spec.json └── tsconfig.json ├── bazelrc └── README.md ├── buf.yaml ├── bufbuild ├── BUILD.bazel ├── WORKSPACE.bazel ├── app │ ├── BUILD.bazel │ ├── main.go │ └── pb │ │ ├── BUILD.bazel │ │ ├── buf.gen.yaml │ │ └── help.proto ├── buf.bzl ├── repositories.bzl └── toolchain.bzl ├── bzlmod ├── .aspect │ └── bazelrc │ │ ├── .gitignore │ │ ├── BUILD.bazel │ │ ├── bazel6.bazelrc │ │ ├── convenience.bazelrc │ │ ├── correctness.bazelrc │ │ ├── debug.bazelrc │ │ ├── javascript.bazelrc │ │ └── performance.bazelrc ├── .bazelignore ├── .bazeliskrc ├── .bazelrc ├── .bazelversion ├── .gitignore ├── .npmrc ├── BUILD.bazel ├── MODULE.bazel ├── README.md ├── WORKSPACE.bazel ├── package.json ├── pnpm-lock.yaml └── src │ ├── BUILD.bazel │ └── test.ts ├── check-npm-determinism ├── .aspect │ └── bazelrc │ │ ├── .gitignore │ │ ├── BUILD.bazel │ │ ├── bazel6.bazelrc │ │ ├── convenience.bazelrc │ │ ├── correctness.bazelrc │ │ ├── debug.bazelrc │ │ ├── javascript.bazelrc │ │ └── performance.bazelrc ├── .bazeliskrc ├── .bazelrc ├── .bazelversion ├── .gitignore ├── BUILD.bazel ├── WORKSPACE.bazel ├── package-lock.json ├── package.json └── test.sh ├── checkstyle.xml ├── directory_path ├── .aspect │ └── bazelrc │ │ ├── .gitignore │ │ ├── BUILD.bazel │ │ ├── bazel6.bazelrc │ │ ├── convenience.bazelrc │ │ ├── correctness.bazelrc │ │ ├── debug.bazelrc │ │ └── performance.bazelrc ├── .bazelignore ├── .bazeliskrc ├── .bazelrc ├── .bazelversion ├── .gitignore ├── .npmrc ├── BUILD.bazel ├── MODULE.bazel ├── README.md ├── WORKSPACE.bazel ├── billboard.min.css ├── package.json └── pnpm-lock.yaml ├── eager-fetch ├── .aspect │ └── bazelrc │ │ ├── .gitignore │ │ ├── BUILD.bazel │ │ ├── bazel6.bazelrc │ │ ├── convenience.bazelrc │ │ ├── correctness.bazelrc │ │ ├── debug.bazelrc │ │ └── performance.bazelrc ├── .bazeliskrc ├── .bazelrc ├── .bazelversion ├── .gitignore ├── BUILD.bazel ├── README.md ├── WORKSPACE.bazel ├── requirements.txt ├── test.sh └── vendor │ └── requirements.bzl ├── eslint.config.mjs ├── gazelle_python.yaml ├── git_push ├── BUILD.bazel ├── README.md ├── defs.bzl └── push_archive_to_repo.sh ├── githooks ├── check-config.sh └── pre-commit ├── go.mod ├── go.sum ├── go_workspaces ├── .aspect │ └── bazelrc │ │ ├── .gitignore │ │ ├── BUILD.bazel │ │ ├── bazel5.bazelrc │ │ ├── convenience.bazelrc │ │ ├── correctness.bazelrc │ │ ├── debug.bazelrc │ │ └── performance.bazelrc ├── .bazeliskrc ├── .bazelrc ├── .bazelversion ├── .gitignore ├── BUILD.bazel ├── README.md ├── WORKSPACE ├── bazel │ ├── BUILD.bazel │ └── com_github_pebbe_zmq4.patch ├── deps.bzl ├── go.work ├── module1 │ ├── BUILD.bazel │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── main_test.go └── module2 │ ├── BUILD.bazel │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── main_test.go ├── java-soap ├── .bazelrc ├── .bazelversion ├── BUILD.bazel ├── MODULE.bazel ├── README.md ├── WORKSPACE.bazel ├── employeeservicetopdown.wsdl └── maven_install.json ├── jest ├── .aspect │ └── bazelrc │ │ ├── .gitignore │ │ ├── BUILD.bazel │ │ ├── bazel6.bazelrc │ │ ├── convenience.bazelrc │ │ ├── correctness.bazelrc │ │ ├── debug.bazelrc │ │ ├── javascript.bazelrc │ │ └── performance.bazelrc ├── .bazelignore ├── .bazeliskrc ├── .bazelrc ├── .bazelversion ├── .gitignore ├── .npmrc ├── .swcrc ├── BUILD.bazel ├── MODULE.bazel ├── README.md ├── WORKSPACE.bazel ├── jest.config.js ├── package.json ├── pnpm-lock.yaml ├── src │ ├── BUILD.bazel │ ├── CheckboxWithLabel.spec.tsx │ ├── CheckboxWithLabel.tsx │ ├── a.spec.ts │ └── a.ts └── tsconfig.json ├── logger ├── README.md ├── backend │ ├── BUILD.bazel │ └── cmd │ │ └── server │ │ ├── BUILD.bazel │ │ └── server.go ├── cli │ ├── BUILD.bazel │ ├── __main__.py │ ├── pyproject.toml │ └── requirements.txt ├── client │ ├── BUILD.bazel │ └── src │ │ └── build │ │ └── aspect │ │ ├── BUILD.bazel │ │ ├── JavaLoggingClient.java │ │ ├── JavaLoggingClientLibrary.java │ │ ├── JavaLoggingClientLibraryTest.java │ │ └── JavaLoggingClientTest.java ├── frontend │ ├── BUILD.bazel │ ├── index.html │ ├── index.ts │ ├── package.json │ └── tsconfig.json └── schema │ ├── BUILD.bazel │ ├── LoggerGrpc.java │ ├── logger.pb.go │ ├── logger.proto │ ├── logger_connect.d.ts │ ├── logger_pb.d.ts │ └── package.json ├── maven_install.json ├── nestjs ├── .aspect │ └── bazelrc │ │ ├── .gitignore │ │ ├── BUILD.bazel │ │ ├── bazel6.bazelrc │ │ ├── convenience.bazelrc │ │ ├── correctness.bazelrc │ │ ├── debug.bazelrc │ │ ├── javascript.bazelrc │ │ └── performance.bazelrc ├── .bazelignore ├── .bazeliskrc ├── .bazelrc ├── .bazelversion ├── .gitignore ├── .npmrc ├── .swcrc ├── BUILD.bazel ├── MODULE.bazel ├── README.md ├── WORKSPACE.bazel ├── package.json ├── pnpm-lock.yaml ├── src │ ├── app.controller.ts │ ├── app.module.ts │ ├── app.service.ts │ └── main.ts └── tsconfig.json ├── next.js └── README.md ├── node_snapshot_flags ├── BUILD.bazel ├── MODULE.bazel ├── README.md ├── index.js └── snapshot.js ├── nodejs_apps ├── javascript │ ├── BUILD.bazel │ ├── package.json │ └── src │ │ └── main.js └── typescript │ ├── BUILD.bazel │ ├── package.json │ └── src │ └── main.ts ├── npm_packages ├── BUILD.bazel ├── first │ ├── BUILD.bazel │ ├── package.json │ └── src │ │ └── lib.js ├── napi │ ├── BUILD │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── package.json │ └── src │ │ ├── BUILD │ │ ├── adder.c │ │ ├── adder.h │ │ ├── adder_binding.c │ │ ├── index.ts │ │ └── lib.rs ├── one │ ├── BUILD.bazel │ ├── package.json │ └── src │ │ └── lib.ts ├── shared │ ├── BUILD.bazel │ ├── package.json │ └── src │ │ └── lib.ts ├── tsconfig.json └── two │ ├── BUILD.bazel │ ├── package.json │ └── src │ └── lib.js ├── oci_go_image ├── BUILD.bazel ├── main.go ├── main_test.go └── test.yaml ├── oci_java_image └── README.md ├── oci_python_image ├── BUILD.bazel ├── hello_world │ ├── BUILD.bazel │ ├── __init__.py │ ├── __main__.py │ ├── app.py │ ├── app_test.py │ ├── integration_test.py │ └── test.yaml └── requirements.txt ├── package.json ├── pmd.xml ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── prisma ├── .bazelignore ├── .bazeliskrc ├── .bazelrc ├── .bazelversion ├── .gitignore ├── .npmrc ├── BUILD.bazel ├── MODULE.bazel ├── README.md ├── WORKSPACE.bazel ├── bzl │ ├── BUILD.bazel │ ├── cli.bzl │ ├── cli.tpl.sh │ ├── constants.bzl │ ├── dev-run.tpl.sh │ ├── dev.bzl │ ├── engines_store.BUILD.tpl │ ├── extensions.bzl │ ├── generate.bzl │ ├── lib.bzl │ ├── local_config_platform.BUILD.bazel │ ├── local_config_platform.bzl │ ├── prisma_repo.BUILD │ ├── providers.bzl │ ├── repositories.bzl │ ├── schema.bzl │ └── store.bzl ├── configs │ └── BUILD.bazel ├── constraints │ └── BUILD.bazel ├── detect-db.sh ├── index.ts ├── package.json ├── pnpm-lock.yaml ├── schema.prisma └── seed.ts ├── py_mypy ├── BUILD.bazel ├── README.md ├── cli │ ├── BUILD.bazel │ └── __main__.py ├── data_models │ ├── BUILD.bazel │ └── data_models.py ├── data_persistence │ ├── BUILD.bazel │ └── data_persistence.py ├── inventory_management │ ├── BUILD.bazel │ └── inventory_management.py ├── order_processing │ ├── BUILD.bazel │ └── order_processing.py └── requirements.txt ├── pyproject.toml ├── qwik ├── README.md ├── app │ ├── .eslintignore │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── .prettierignore │ ├── .vscode │ │ ├── launch.json │ │ ├── qwik-city.code-snippets │ │ └── qwik.code-snippets │ ├── BUILD.bazel │ ├── README.md │ ├── package.json │ ├── public │ │ ├── favicon.svg │ │ ├── manifest.json │ │ └── robots.txt │ ├── qwik.env.d.ts │ ├── src │ │ ├── components │ │ │ ├── example │ │ │ │ ├── example.spec.tsx │ │ │ │ └── example.tsx │ │ │ └── router-head │ │ │ │ └── router-head.tsx │ │ ├── entry.dev.tsx │ │ ├── entry.preview.tsx │ │ ├── entry.ssr.tsx │ │ ├── global.css │ │ ├── root.tsx │ │ └── routes │ │ │ ├── index.tsx │ │ │ ├── layout.tsx │ │ │ └── service-worker.ts │ ├── tsconfig.json │ └── vite.config.ts └── lib │ ├── .eslintignore │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── .prettierignore │ ├── BUILD.bazel │ ├── README.md │ ├── package.json │ ├── src │ ├── components │ │ ├── counter │ │ │ └── counter.tsx │ │ ├── example │ │ │ ├── example.spec.tsx │ │ │ └── example.tsx │ │ └── logo │ │ │ └── logo.tsx │ ├── entry.dev.tsx │ ├── entry.ssr.tsx │ ├── index.ts │ └── root.tsx │ ├── tsconfig.json │ └── vite.config.ts ├── react-cra └── README.md ├── renovate.json ├── requirements ├── BUILD.bazel ├── README.md ├── all.in ├── all.txt ├── runtime.txt └── test.in ├── rules_nodejs_to_rules_js_migration ├── .aspect │ └── bazelrc │ │ ├── .gitignore │ │ ├── BUILD.bazel │ │ ├── bazel6.bazelrc │ │ ├── convenience.bazelrc │ │ ├── correctness.bazelrc │ │ ├── debug.bazelrc │ │ ├── javascript.bazelrc │ │ └── performance.bazelrc ├── .bazelignore ├── .bazeliskrc ├── .bazelrc ├── .bazelversion ├── .gitignore ├── .npmrc ├── .syncpackrc ├── BUILD.bazel ├── README.md ├── WORKSPACE.bazel ├── bazel │ ├── BUILD.bazel │ ├── package.json │ ├── pnpm-lock.yaml │ ├── pnpm-workspace.yaml │ ├── rules_js │ │ ├── BUILD.bazel │ │ └── defs.bzl │ ├── rules_js_to_rules_nodejs_adapter.bzl │ ├── rules_nodejs │ │ ├── BUILD.bazel │ │ └── defs.bzl │ └── rules_nodejs_to_rules_js_adapter.bzl ├── libs │ ├── a │ │ ├── BUILD.bazel │ │ ├── index.ts │ │ └── src │ │ │ ├── BUILD.bazel │ │ │ └── types.ts │ ├── b │ │ ├── BUILD.bazel │ │ ├── index.ts │ │ ├── package.json │ │ └── src │ │ │ ├── BUILD.bazel │ │ │ └── types.ts │ └── c │ │ ├── BUILD.bazel │ │ ├── index.ts │ │ └── src │ │ ├── BUILD.bazel │ │ └── types.ts ├── package.json ├── packages │ ├── a │ │ ├── BUILD.bazel │ │ ├── index.ts │ │ ├── package.json │ │ └── src │ │ │ ├── BUILD.bazel │ │ │ └── types.ts │ ├── b │ │ ├── BUILD.bazel │ │ ├── index.ts │ │ ├── package.json │ │ └── src │ │ │ ├── BUILD.bazel │ │ │ └── types.ts │ └── c │ │ ├── BUILD.bazel │ │ ├── index.ts │ │ ├── package.json │ │ └── src │ │ ├── BUILD.bazel │ │ └── types.ts ├── pnpm-lock.yaml ├── tsconfig.json └── yarn.lock ├── speller ├── README.md ├── announce │ ├── BUILD.bazel │ ├── announce.cc │ └── announce.h ├── data_driven_tests │ ├── BUILD.bazel │ ├── lookup-datatest.cc │ └── testcases │ │ ├── test-001.json │ │ └── test-002.json ├── exercise.sh ├── greeting │ ├── BUILD.bazel │ ├── greeting-test.cc │ ├── greeting.cc │ └── greeting.h ├── lookup │ ├── BUILD.bazel │ ├── lookup-test.cc │ ├── lookup.cc │ └── lookup.h └── main │ ├── BUILD.bazel │ ├── build-dictionary.cc │ └── spell.cc ├── swift_deps_index.json ├── third_party ├── README.md └── nlohmann-json │ ├── BUILD.bazel │ ├── README.md │ └── json.hpp ├── tools ├── BUILD.bazel ├── format │ └── BUILD.bazel ├── java17.bazelrc ├── lint │ ├── BUILD.bazel │ └── linters.bzl ├── mypy │ ├── BUILD.bazel │ ├── defs.bzl │ ├── mypy.ini │ └── requirements.txt ├── package.json ├── platforms │ └── BUILD.bazel ├── preset.bazelrc ├── toolchains │ └── BUILD.bazel ├── tools.lock.json └── workspace_status.sh ├── ts_project_transpiler ├── .aspect │ └── bazelrc │ │ ├── .gitignore │ │ ├── BUILD.bazel │ │ ├── bazel6.bazelrc │ │ ├── convenience.bazelrc │ │ ├── correctness.bazelrc │ │ ├── debug.bazelrc │ │ ├── javascript.bazelrc │ │ └── performance.bazelrc ├── .bazelignore ├── .bazeliskrc ├── .bazelrc ├── .bazelversion ├── .gitignore ├── .npmrc ├── .swcrc ├── BUILD.bazel ├── README.md ├── WORKSPACE.bazel ├── babel.bzl ├── package.json ├── pnpm-lock.yaml └── tsconfig.json ├── vercel_pkg ├── .bazelignore ├── .bazelrc ├── .bazelversion ├── .gitignore ├── BUILD.bazel ├── MODULE.bazel ├── WORKSPACE.bazel ├── defs │ ├── BUILD.bazel │ ├── vercel_pkg.bzl │ └── vercel_pkg_fetch.bzl ├── index.ts ├── package.json ├── pnpm-lock.yaml └── tsconfig.json ├── vue └── README.md └── write_source_files ├── BUILD.bazel ├── bar ├── BUILD.bazel ├── bar.pb.go ├── bar.proto ├── baz.pb.go └── baz.proto ├── foo ├── BUILD.bazel ├── foo.pb.go ├── foo.proto ├── fum.pb.go └── fum.proto └── go_proto_library.bzl /.aspect/cli/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/.aspect/cli/config.yaml -------------------------------------------------------------------------------- /.aspect/cli/main.axl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/.aspect/cli/main.axl -------------------------------------------------------------------------------- /.aspect/cli/rules_cc.axl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/.aspect/cli/rules_cc.axl -------------------------------------------------------------------------------- /.aspect/workflows/BUILD.bazel: -------------------------------------------------------------------------------- 1 | exports_files(["config.yaml"]) 2 | -------------------------------------------------------------------------------- /.aspect/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/.aspect/workflows/README.md -------------------------------------------------------------------------------- /.aspect/workflows/bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/.aspect/workflows/bazelrc -------------------------------------------------------------------------------- /.aspect/workflows/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/.aspect/workflows/config.yaml -------------------------------------------------------------------------------- /.aspect/workflows/deps.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/.aspect/workflows/deps.lock.json -------------------------------------------------------------------------------- /.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/.bazelrc -------------------------------------------------------------------------------- /.bazelversion: -------------------------------------------------------------------------------- 1 | 8.4.2 2 | -------------------------------------------------------------------------------- /.circleci/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/.circleci/BUILD.bazel -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/user.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/.circleci/user.yml -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/.envrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/.aspect-workflows-reusable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/.github/workflows/.aspect-workflows-reusable.yaml -------------------------------------------------------------------------------- /.github/workflows/aspect-workflows-delivery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/.github/workflows/aspect-workflows-delivery.yaml -------------------------------------------------------------------------------- /.github/workflows/aspect-workflows-warming.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/.github/workflows/aspect-workflows-warming.yaml -------------------------------------------------------------------------------- /.github/workflows/aspect-workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/.github/workflows/aspect-workflows.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/.github/workflows/ci.bazelrc -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/multitool.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/.github/workflows/multitool.yml -------------------------------------------------------------------------------- /.github/workflows/sync_mirrors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/.github/workflows/sync_mirrors.yaml -------------------------------------------------------------------------------- /.github/workflows/weekly_tag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/.github/workflows/weekly_tag.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/.npmrc -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/.prettierrc.yaml -------------------------------------------------------------------------------- /.ruff.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.shellcheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/.shellcheckrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "vsicons.presets.angular": true 3 | } -------------------------------------------------------------------------------- /BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/BUILD.bazel -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/MODULE.bazel -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/Package.swift -------------------------------------------------------------------------------- /README.bazel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/README.bazel.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/README.md -------------------------------------------------------------------------------- /REPO.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/REPO.bazel -------------------------------------------------------------------------------- /angular-ngc/.aspect/bazelrc/.gitignore: -------------------------------------------------------------------------------- 1 | user.bazelrc 2 | -------------------------------------------------------------------------------- /angular-ngc/.aspect/bazelrc/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/.aspect/bazelrc/BUILD.bazel -------------------------------------------------------------------------------- /angular-ngc/.aspect/bazelrc/bazel6.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/.aspect/bazelrc/bazel6.bazelrc -------------------------------------------------------------------------------- /angular-ngc/.aspect/bazelrc/convenience.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/.aspect/bazelrc/convenience.bazelrc -------------------------------------------------------------------------------- /angular-ngc/.aspect/bazelrc/correctness.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/.aspect/bazelrc/correctness.bazelrc -------------------------------------------------------------------------------- /angular-ngc/.aspect/bazelrc/debug.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/.aspect/bazelrc/debug.bazelrc -------------------------------------------------------------------------------- /angular-ngc/.aspect/bazelrc/javascript.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/.aspect/bazelrc/javascript.bazelrc -------------------------------------------------------------------------------- /angular-ngc/.aspect/bazelrc/performance.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/.aspect/bazelrc/performance.bazelrc -------------------------------------------------------------------------------- /angular-ngc/.aspect/cli/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/.aspect/cli/config.yaml -------------------------------------------------------------------------------- /angular-ngc/.aspect/cli/postcss.star: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/.aspect/cli/postcss.star -------------------------------------------------------------------------------- /angular-ngc/.bazelignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/.bazelignore -------------------------------------------------------------------------------- /angular-ngc/.bazeliskrc: -------------------------------------------------------------------------------- 1 | ../.bazeliskrc -------------------------------------------------------------------------------- /angular-ngc/.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/.bazelrc -------------------------------------------------------------------------------- /angular-ngc/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.4.1 2 | -------------------------------------------------------------------------------- /angular-ngc/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/.browserslistrc -------------------------------------------------------------------------------- /angular-ngc/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/.editorconfig -------------------------------------------------------------------------------- /angular-ngc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/.gitignore -------------------------------------------------------------------------------- /angular-ngc/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/.npmrc -------------------------------------------------------------------------------- /angular-ngc/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/BUILD.bazel -------------------------------------------------------------------------------- /angular-ngc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/README.md -------------------------------------------------------------------------------- /angular-ngc/WORKSPACE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/WORKSPACE.bazel -------------------------------------------------------------------------------- /angular-ngc/applications/demo/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/applications/demo/BUILD.bazel -------------------------------------------------------------------------------- /angular-ngc/applications/demo/app/app.component.css: -------------------------------------------------------------------------------- 1 | :host { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /angular-ngc/applications/demo/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/applications/demo/app/app.component.html -------------------------------------------------------------------------------- /angular-ngc/applications/demo/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/applications/demo/app/app.component.spec.ts -------------------------------------------------------------------------------- /angular-ngc/applications/demo/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/applications/demo/app/app.component.ts -------------------------------------------------------------------------------- /angular-ngc/applications/demo/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/applications/demo/app/app.module.ts -------------------------------------------------------------------------------- /angular-ngc/applications/demo/app/dragula.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/applications/demo/app/dragula.component.ts -------------------------------------------------------------------------------- /angular-ngc/applications/demo/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-ngc/applications/demo/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/applications/demo/favicon.ico -------------------------------------------------------------------------------- /angular-ngc/applications/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/applications/demo/index.html -------------------------------------------------------------------------------- /angular-ngc/applications/demo/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/applications/demo/main.ts -------------------------------------------------------------------------------- /angular-ngc/applications/demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/applications/demo/package.json -------------------------------------------------------------------------------- /angular-ngc/applications/demo/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/applications/demo/polyfills.ts -------------------------------------------------------------------------------- /angular-ngc/applications/demo/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/applications/demo/styles.css -------------------------------------------------------------------------------- /angular-ngc/applications/grpc/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/applications/grpc/BUILD.bazel -------------------------------------------------------------------------------- /angular-ngc/applications/grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/applications/grpc/README.md -------------------------------------------------------------------------------- /angular-ngc/applications/grpc/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/applications/grpc/app/app.component.css -------------------------------------------------------------------------------- /angular-ngc/applications/grpc/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/applications/grpc/app/app.component.html -------------------------------------------------------------------------------- /angular-ngc/applications/grpc/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/applications/grpc/app/app.component.spec.ts -------------------------------------------------------------------------------- /angular-ngc/applications/grpc/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/applications/grpc/app/app.component.ts -------------------------------------------------------------------------------- /angular-ngc/applications/grpc/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/applications/grpc/app/app.module.ts -------------------------------------------------------------------------------- /angular-ngc/applications/grpc/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-ngc/applications/grpc/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/applications/grpc/favicon.ico -------------------------------------------------------------------------------- /angular-ngc/applications/grpc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/applications/grpc/index.html -------------------------------------------------------------------------------- /angular-ngc/applications/grpc/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/applications/grpc/main.ts -------------------------------------------------------------------------------- /angular-ngc/applications/grpc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/applications/grpc/package.json -------------------------------------------------------------------------------- /angular-ngc/applications/grpc/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/applications/grpc/polyfills.ts -------------------------------------------------------------------------------- /angular-ngc/applications/grpc/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/applications/grpc/styles.css -------------------------------------------------------------------------------- /angular-ngc/defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/defs.bzl -------------------------------------------------------------------------------- /angular-ngc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/package.json -------------------------------------------------------------------------------- /angular-ngc/packages/common/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/packages/common/BUILD.bazel -------------------------------------------------------------------------------- /angular-ngc/packages/common/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/packages/common/package.json -------------------------------------------------------------------------------- /angular-ngc/packages/common/src/lib/common.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/packages/common/src/lib/common.component.spec.ts -------------------------------------------------------------------------------- /angular-ngc/packages/common/src/lib/common.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/packages/common/src/lib/common.component.ts -------------------------------------------------------------------------------- /angular-ngc/packages/common/src/lib/common.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/packages/common/src/lib/common.module.ts -------------------------------------------------------------------------------- /angular-ngc/packages/common/src/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/packages/common/src/public-api.ts -------------------------------------------------------------------------------- /angular-ngc/packages/connect/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/packages/connect/BUILD.bazel -------------------------------------------------------------------------------- /angular-ngc/packages/connect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/packages/connect/README.md -------------------------------------------------------------------------------- /angular-ngc/packages/connect/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/packages/connect/package.json -------------------------------------------------------------------------------- /angular-ngc/packages/connect/src/lib/client.provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/packages/connect/src/lib/client.provider.ts -------------------------------------------------------------------------------- /angular-ngc/packages/connect/src/lib/connect.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/packages/connect/src/lib/connect.module.ts -------------------------------------------------------------------------------- /angular-ngc/packages/connect/src/lib/grpc-web.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/packages/connect/src/lib/grpc-web.module.ts -------------------------------------------------------------------------------- /angular-ngc/packages/connect/src/lib/interceptor.token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/packages/connect/src/lib/interceptor.token.ts -------------------------------------------------------------------------------- /angular-ngc/packages/connect/src/lib/observable-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/packages/connect/src/lib/observable-client.ts -------------------------------------------------------------------------------- /angular-ngc/packages/connect/src/lib/transport.token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/packages/connect/src/lib/transport.token.ts -------------------------------------------------------------------------------- /angular-ngc/packages/connect/src/proto/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/packages/connect/src/proto/BUILD.bazel -------------------------------------------------------------------------------- /angular-ngc/packages/connect/src/proto/eliza.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/packages/connect/src/proto/eliza.proto -------------------------------------------------------------------------------- /angular-ngc/packages/connect/src/proto/eliza_connect.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/packages/connect/src/proto/eliza_connect.d.ts -------------------------------------------------------------------------------- /angular-ngc/packages/connect/src/proto/eliza_pb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/packages/connect/src/proto/eliza_pb.d.ts -------------------------------------------------------------------------------- /angular-ngc/packages/connect/src/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/packages/connect/src/public-api.ts -------------------------------------------------------------------------------- /angular-ngc/packages/lib-a/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/packages/lib-a/BUILD.bazel -------------------------------------------------------------------------------- /angular-ngc/packages/lib-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/packages/lib-a/package.json -------------------------------------------------------------------------------- /angular-ngc/packages/lib-a/src/lib/lib-a.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/packages/lib-a/src/lib/lib-a.component.scss -------------------------------------------------------------------------------- /angular-ngc/packages/lib-a/src/lib/lib-a.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/packages/lib-a/src/lib/lib-a.component.spec.ts -------------------------------------------------------------------------------- /angular-ngc/packages/lib-a/src/lib/lib-a.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/packages/lib-a/src/lib/lib-a.component.ts -------------------------------------------------------------------------------- /angular-ngc/packages/lib-a/src/lib/lib-a.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/packages/lib-a/src/lib/lib-a.module.ts -------------------------------------------------------------------------------- /angular-ngc/packages/lib-a/src/lib/lib-b.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/packages/lib-a/src/lib/lib-b.component.spec.ts -------------------------------------------------------------------------------- /angular-ngc/packages/lib-a/src/lib/strings/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/packages/lib-a/src/lib/strings/BUILD.bazel -------------------------------------------------------------------------------- /angular-ngc/packages/lib-a/src/lib/strings/index.ts: -------------------------------------------------------------------------------- 1 | export const TITLE = 'The Great Package'; 2 | -------------------------------------------------------------------------------- /angular-ngc/packages/lib-a/src/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/packages/lib-a/src/public-api.ts -------------------------------------------------------------------------------- /angular-ngc/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/pnpm-lock.yaml -------------------------------------------------------------------------------- /angular-ngc/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/pnpm-workspace.yaml -------------------------------------------------------------------------------- /angular-ngc/tools/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/tools/BUILD.bazel -------------------------------------------------------------------------------- /angular-ngc/tools/karma.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/tools/karma.bzl -------------------------------------------------------------------------------- /angular-ngc/tools/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/tools/karma.conf.js -------------------------------------------------------------------------------- /angular-ngc/tools/ng.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/tools/ng.bzl -------------------------------------------------------------------------------- /angular-ngc/tools/ngc.esbuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/tools/ngc.esbuild.ts -------------------------------------------------------------------------------- /angular-ngc/tools/sass.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/tools/sass.bzl -------------------------------------------------------------------------------- /angular-ngc/tools/sass_workaround.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/tools/sass_workaround.bzl -------------------------------------------------------------------------------- /angular-ngc/tools/test-bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/tools/test-bootstrap.js -------------------------------------------------------------------------------- /angular-ngc/tools/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/tools/test-setup.ts -------------------------------------------------------------------------------- /angular-ngc/tools/ts.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/tools/ts.bzl -------------------------------------------------------------------------------- /angular-ngc/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/tsconfig.base.json -------------------------------------------------------------------------------- /angular-ngc/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/tsconfig.json -------------------------------------------------------------------------------- /angular-ngc/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular-ngc/tsconfig.node.json -------------------------------------------------------------------------------- /angular/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular/.editorconfig -------------------------------------------------------------------------------- /angular/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular/.gitignore -------------------------------------------------------------------------------- /angular/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular/.vscode/extensions.json -------------------------------------------------------------------------------- /angular/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular/.vscode/launch.json -------------------------------------------------------------------------------- /angular/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular/.vscode/tasks.json -------------------------------------------------------------------------------- /angular/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular/BUILD.bazel -------------------------------------------------------------------------------- /angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular/README.md -------------------------------------------------------------------------------- /angular/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular/angular.json -------------------------------------------------------------------------------- /angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular/package.json -------------------------------------------------------------------------------- /angular/projects/my-app/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular/projects/my-app/BUILD.bazel -------------------------------------------------------------------------------- /angular/projects/my-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular/projects/my-app/public/favicon.ico -------------------------------------------------------------------------------- /angular/projects/my-app/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular/projects/my-app/src/app/app.config.ts -------------------------------------------------------------------------------- /angular/projects/my-app/src/app/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular/projects/my-app/src/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular/projects/my-app/src/app/app.html -------------------------------------------------------------------------------- /angular/projects/my-app/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular/projects/my-app/src/app/app.routes.ts -------------------------------------------------------------------------------- /angular/projects/my-app/src/app/app.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular/projects/my-app/src/app/app.spec.ts -------------------------------------------------------------------------------- /angular/projects/my-app/src/app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular/projects/my-app/src/app/app.ts -------------------------------------------------------------------------------- /angular/projects/my-app/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular/projects/my-app/src/index.html -------------------------------------------------------------------------------- /angular/projects/my-app/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular/projects/my-app/src/main.ts -------------------------------------------------------------------------------- /angular/projects/my-app/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular/projects/my-app/src/styles.css -------------------------------------------------------------------------------- /angular/projects/my-app/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular/projects/my-app/tsconfig.app.json -------------------------------------------------------------------------------- /angular/projects/my-app/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular/projects/my-app/tsconfig.spec.json -------------------------------------------------------------------------------- /angular/projects/my-lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular/projects/my-lib/BUILD.bazel -------------------------------------------------------------------------------- /angular/projects/my-lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular/projects/my-lib/README.md -------------------------------------------------------------------------------- /angular/projects/my-lib/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular/projects/my-lib/ng-package.json -------------------------------------------------------------------------------- /angular/projects/my-lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular/projects/my-lib/package.json -------------------------------------------------------------------------------- /angular/projects/my-lib/src/lib/my-lib.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular/projects/my-lib/src/lib/my-lib.spec.ts -------------------------------------------------------------------------------- /angular/projects/my-lib/src/lib/my-lib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular/projects/my-lib/src/lib/my-lib.ts -------------------------------------------------------------------------------- /angular/projects/my-lib/src/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular/projects/my-lib/src/public-api.ts -------------------------------------------------------------------------------- /angular/projects/my-lib/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular/projects/my-lib/tsconfig.lib.json -------------------------------------------------------------------------------- /angular/projects/my-lib/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular/projects/my-lib/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /angular/projects/my-lib/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular/projects/my-lib/tsconfig.spec.json -------------------------------------------------------------------------------- /angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/angular/tsconfig.json -------------------------------------------------------------------------------- /bazelrc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/bazelrc/README.md -------------------------------------------------------------------------------- /buf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/buf.yaml -------------------------------------------------------------------------------- /bufbuild/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/bufbuild/BUILD.bazel -------------------------------------------------------------------------------- /bufbuild/WORKSPACE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/bufbuild/WORKSPACE.bazel -------------------------------------------------------------------------------- /bufbuild/app/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/bufbuild/app/BUILD.bazel -------------------------------------------------------------------------------- /bufbuild/app/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/bufbuild/app/main.go -------------------------------------------------------------------------------- /bufbuild/app/pb/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/bufbuild/app/pb/BUILD.bazel -------------------------------------------------------------------------------- /bufbuild/app/pb/buf.gen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/bufbuild/app/pb/buf.gen.yaml -------------------------------------------------------------------------------- /bufbuild/app/pb/help.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/bufbuild/app/pb/help.proto -------------------------------------------------------------------------------- /bufbuild/buf.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/bufbuild/buf.bzl -------------------------------------------------------------------------------- /bufbuild/repositories.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/bufbuild/repositories.bzl -------------------------------------------------------------------------------- /bufbuild/toolchain.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/bufbuild/toolchain.bzl -------------------------------------------------------------------------------- /bzlmod/.aspect/bazelrc/.gitignore: -------------------------------------------------------------------------------- 1 | user.bazelrc 2 | -------------------------------------------------------------------------------- /bzlmod/.aspect/bazelrc/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/bzlmod/.aspect/bazelrc/BUILD.bazel -------------------------------------------------------------------------------- /bzlmod/.aspect/bazelrc/bazel6.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/bzlmod/.aspect/bazelrc/bazel6.bazelrc -------------------------------------------------------------------------------- /bzlmod/.aspect/bazelrc/convenience.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/bzlmod/.aspect/bazelrc/convenience.bazelrc -------------------------------------------------------------------------------- /bzlmod/.aspect/bazelrc/correctness.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/bzlmod/.aspect/bazelrc/correctness.bazelrc -------------------------------------------------------------------------------- /bzlmod/.aspect/bazelrc/debug.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/bzlmod/.aspect/bazelrc/debug.bazelrc -------------------------------------------------------------------------------- /bzlmod/.aspect/bazelrc/javascript.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/bzlmod/.aspect/bazelrc/javascript.bazelrc -------------------------------------------------------------------------------- /bzlmod/.aspect/bazelrc/performance.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/bzlmod/.aspect/bazelrc/performance.bazelrc -------------------------------------------------------------------------------- /bzlmod/.bazelignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /bzlmod/.bazeliskrc: -------------------------------------------------------------------------------- 1 | ../bazelrc/.bazeliskrc -------------------------------------------------------------------------------- /bzlmod/.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/bzlmod/.bazelrc -------------------------------------------------------------------------------- /bzlmod/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.4.1 2 | -------------------------------------------------------------------------------- /bzlmod/.gitignore: -------------------------------------------------------------------------------- 1 | /bazel-* 2 | node_modules -------------------------------------------------------------------------------- /bzlmod/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/bzlmod/.npmrc -------------------------------------------------------------------------------- /bzlmod/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/bzlmod/BUILD.bazel -------------------------------------------------------------------------------- /bzlmod/MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/bzlmod/MODULE.bazel -------------------------------------------------------------------------------- /bzlmod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/bzlmod/README.md -------------------------------------------------------------------------------- /bzlmod/WORKSPACE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/bzlmod/WORKSPACE.bazel -------------------------------------------------------------------------------- /bzlmod/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/bzlmod/package.json -------------------------------------------------------------------------------- /bzlmod/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/bzlmod/pnpm-lock.yaml -------------------------------------------------------------------------------- /bzlmod/src/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/bzlmod/src/BUILD.bazel -------------------------------------------------------------------------------- /bzlmod/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/bzlmod/src/test.ts -------------------------------------------------------------------------------- /check-npm-determinism/.aspect/bazelrc/.gitignore: -------------------------------------------------------------------------------- 1 | user.bazelrc 2 | -------------------------------------------------------------------------------- /check-npm-determinism/.aspect/bazelrc/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/check-npm-determinism/.aspect/bazelrc/BUILD.bazel -------------------------------------------------------------------------------- /check-npm-determinism/.aspect/bazelrc/bazel6.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/check-npm-determinism/.aspect/bazelrc/bazel6.bazelrc -------------------------------------------------------------------------------- /check-npm-determinism/.aspect/bazelrc/convenience.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/check-npm-determinism/.aspect/bazelrc/convenience.bazelrc -------------------------------------------------------------------------------- /check-npm-determinism/.aspect/bazelrc/correctness.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/check-npm-determinism/.aspect/bazelrc/correctness.bazelrc -------------------------------------------------------------------------------- /check-npm-determinism/.aspect/bazelrc/debug.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/check-npm-determinism/.aspect/bazelrc/debug.bazelrc -------------------------------------------------------------------------------- /check-npm-determinism/.aspect/bazelrc/javascript.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/check-npm-determinism/.aspect/bazelrc/javascript.bazelrc -------------------------------------------------------------------------------- /check-npm-determinism/.aspect/bazelrc/performance.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/check-npm-determinism/.aspect/bazelrc/performance.bazelrc -------------------------------------------------------------------------------- /check-npm-determinism/.bazeliskrc: -------------------------------------------------------------------------------- 1 | ../.bazeliskrc -------------------------------------------------------------------------------- /check-npm-determinism/.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/check-npm-determinism/.bazelrc -------------------------------------------------------------------------------- /check-npm-determinism/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.4.1 2 | -------------------------------------------------------------------------------- /check-npm-determinism/.gitignore: -------------------------------------------------------------------------------- 1 | /bazel-* 2 | /node_modules/ 3 | /tmp/ -------------------------------------------------------------------------------- /check-npm-determinism/BUILD.bazel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /check-npm-determinism/WORKSPACE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/check-npm-determinism/WORKSPACE.bazel -------------------------------------------------------------------------------- /check-npm-determinism/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/check-npm-determinism/package-lock.json -------------------------------------------------------------------------------- /check-npm-determinism/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/check-npm-determinism/package.json -------------------------------------------------------------------------------- /check-npm-determinism/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/check-npm-determinism/test.sh -------------------------------------------------------------------------------- /checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/checkstyle.xml -------------------------------------------------------------------------------- /directory_path/.aspect/bazelrc/.gitignore: -------------------------------------------------------------------------------- 1 | user.bazelrc 2 | -------------------------------------------------------------------------------- /directory_path/.aspect/bazelrc/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/directory_path/.aspect/bazelrc/BUILD.bazel -------------------------------------------------------------------------------- /directory_path/.aspect/bazelrc/bazel6.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/directory_path/.aspect/bazelrc/bazel6.bazelrc -------------------------------------------------------------------------------- /directory_path/.aspect/bazelrc/convenience.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/directory_path/.aspect/bazelrc/convenience.bazelrc -------------------------------------------------------------------------------- /directory_path/.aspect/bazelrc/correctness.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/directory_path/.aspect/bazelrc/correctness.bazelrc -------------------------------------------------------------------------------- /directory_path/.aspect/bazelrc/debug.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/directory_path/.aspect/bazelrc/debug.bazelrc -------------------------------------------------------------------------------- /directory_path/.aspect/bazelrc/performance.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/directory_path/.aspect/bazelrc/performance.bazelrc -------------------------------------------------------------------------------- /directory_path/.bazelignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /directory_path/.bazeliskrc: -------------------------------------------------------------------------------- 1 | ../.bazeliskrc -------------------------------------------------------------------------------- /directory_path/.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/directory_path/.bazelrc -------------------------------------------------------------------------------- /directory_path/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.4.1 2 | -------------------------------------------------------------------------------- /directory_path/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /bazel-* 3 | -------------------------------------------------------------------------------- /directory_path/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/directory_path/.npmrc -------------------------------------------------------------------------------- /directory_path/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/directory_path/BUILD.bazel -------------------------------------------------------------------------------- /directory_path/MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/directory_path/MODULE.bazel -------------------------------------------------------------------------------- /directory_path/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/directory_path/README.md -------------------------------------------------------------------------------- /directory_path/WORKSPACE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/directory_path/WORKSPACE.bazel -------------------------------------------------------------------------------- /directory_path/billboard.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/directory_path/billboard.min.css -------------------------------------------------------------------------------- /directory_path/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/directory_path/package.json -------------------------------------------------------------------------------- /directory_path/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/directory_path/pnpm-lock.yaml -------------------------------------------------------------------------------- /eager-fetch/.aspect/bazelrc/.gitignore: -------------------------------------------------------------------------------- 1 | ../../../bazelrc/.aspect/bazelrc/.gitignore -------------------------------------------------------------------------------- /eager-fetch/.aspect/bazelrc/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/eager-fetch/.aspect/bazelrc/BUILD.bazel -------------------------------------------------------------------------------- /eager-fetch/.aspect/bazelrc/bazel6.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/eager-fetch/.aspect/bazelrc/bazel6.bazelrc -------------------------------------------------------------------------------- /eager-fetch/.aspect/bazelrc/convenience.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/eager-fetch/.aspect/bazelrc/convenience.bazelrc -------------------------------------------------------------------------------- /eager-fetch/.aspect/bazelrc/correctness.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/eager-fetch/.aspect/bazelrc/correctness.bazelrc -------------------------------------------------------------------------------- /eager-fetch/.aspect/bazelrc/debug.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/eager-fetch/.aspect/bazelrc/debug.bazelrc -------------------------------------------------------------------------------- /eager-fetch/.aspect/bazelrc/performance.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/eager-fetch/.aspect/bazelrc/performance.bazelrc -------------------------------------------------------------------------------- /eager-fetch/.bazeliskrc: -------------------------------------------------------------------------------- 1 | ../.bazeliskrc -------------------------------------------------------------------------------- /eager-fetch/.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/eager-fetch/.bazelrc -------------------------------------------------------------------------------- /eager-fetch/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.4.1 2 | -------------------------------------------------------------------------------- /eager-fetch/.gitignore: -------------------------------------------------------------------------------- 1 | /bazel-* 2 | -------------------------------------------------------------------------------- /eager-fetch/BUILD.bazel: -------------------------------------------------------------------------------- 1 | # No targets yet... 2 | -------------------------------------------------------------------------------- /eager-fetch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/eager-fetch/README.md -------------------------------------------------------------------------------- /eager-fetch/WORKSPACE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/eager-fetch/WORKSPACE.bazel -------------------------------------------------------------------------------- /eager-fetch/requirements.txt: -------------------------------------------------------------------------------- 1 | # No requirements yet... -------------------------------------------------------------------------------- /eager-fetch/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/eager-fetch/test.sh -------------------------------------------------------------------------------- /eager-fetch/vendor/requirements.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/eager-fetch/vendor/requirements.bzl -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /gazelle_python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/gazelle_python.yaml -------------------------------------------------------------------------------- /git_push/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/git_push/BUILD.bazel -------------------------------------------------------------------------------- /git_push/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/git_push/README.md -------------------------------------------------------------------------------- /git_push/defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/git_push/defs.bzl -------------------------------------------------------------------------------- /git_push/push_archive_to_repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/git_push/push_archive_to_repo.sh -------------------------------------------------------------------------------- /githooks/check-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/githooks/check-config.sh -------------------------------------------------------------------------------- /githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/githooks/pre-commit -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/go.sum -------------------------------------------------------------------------------- /go_workspaces/.aspect/bazelrc/.gitignore: -------------------------------------------------------------------------------- 1 | user.bazelrc 2 | -------------------------------------------------------------------------------- /go_workspaces/.aspect/bazelrc/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/go_workspaces/.aspect/bazelrc/BUILD.bazel -------------------------------------------------------------------------------- /go_workspaces/.aspect/bazelrc/bazel5.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/go_workspaces/.aspect/bazelrc/bazel5.bazelrc -------------------------------------------------------------------------------- /go_workspaces/.aspect/bazelrc/convenience.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/go_workspaces/.aspect/bazelrc/convenience.bazelrc -------------------------------------------------------------------------------- /go_workspaces/.aspect/bazelrc/correctness.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/go_workspaces/.aspect/bazelrc/correctness.bazelrc -------------------------------------------------------------------------------- /go_workspaces/.aspect/bazelrc/debug.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/go_workspaces/.aspect/bazelrc/debug.bazelrc -------------------------------------------------------------------------------- /go_workspaces/.aspect/bazelrc/performance.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/go_workspaces/.aspect/bazelrc/performance.bazelrc -------------------------------------------------------------------------------- /go_workspaces/.bazeliskrc: -------------------------------------------------------------------------------- 1 | ../bazelrc/.bazeliskrc -------------------------------------------------------------------------------- /go_workspaces/.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/go_workspaces/.bazelrc -------------------------------------------------------------------------------- /go_workspaces/.bazelversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/go_workspaces/.bazelversion -------------------------------------------------------------------------------- /go_workspaces/.gitignore: -------------------------------------------------------------------------------- 1 | /bazel-* 2 | -------------------------------------------------------------------------------- /go_workspaces/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/go_workspaces/BUILD.bazel -------------------------------------------------------------------------------- /go_workspaces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/go_workspaces/README.md -------------------------------------------------------------------------------- /go_workspaces/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/go_workspaces/WORKSPACE -------------------------------------------------------------------------------- /go_workspaces/bazel/BUILD.bazel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go_workspaces/bazel/com_github_pebbe_zmq4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/go_workspaces/bazel/com_github_pebbe_zmq4.patch -------------------------------------------------------------------------------- /go_workspaces/deps.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/go_workspaces/deps.bzl -------------------------------------------------------------------------------- /go_workspaces/go.work: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/go_workspaces/go.work -------------------------------------------------------------------------------- /go_workspaces/module1/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/go_workspaces/module1/BUILD.bazel -------------------------------------------------------------------------------- /go_workspaces/module1/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/go_workspaces/module1/go.mod -------------------------------------------------------------------------------- /go_workspaces/module1/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/go_workspaces/module1/go.sum -------------------------------------------------------------------------------- /go_workspaces/module1/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/go_workspaces/module1/main.go -------------------------------------------------------------------------------- /go_workspaces/module1/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/go_workspaces/module1/main_test.go -------------------------------------------------------------------------------- /go_workspaces/module2/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/go_workspaces/module2/BUILD.bazel -------------------------------------------------------------------------------- /go_workspaces/module2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/go_workspaces/module2/go.mod -------------------------------------------------------------------------------- /go_workspaces/module2/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/go_workspaces/module2/go.sum -------------------------------------------------------------------------------- /go_workspaces/module2/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/go_workspaces/module2/main.go -------------------------------------------------------------------------------- /go_workspaces/module2/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/go_workspaces/module2/main_test.go -------------------------------------------------------------------------------- /java-soap/.bazelrc: -------------------------------------------------------------------------------- 1 | common --enable_bzlmod 2 | -------------------------------------------------------------------------------- /java-soap/.bazelversion: -------------------------------------------------------------------------------- 1 | 6.2.0 2 | -------------------------------------------------------------------------------- /java-soap/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/java-soap/BUILD.bazel -------------------------------------------------------------------------------- /java-soap/MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/java-soap/MODULE.bazel -------------------------------------------------------------------------------- /java-soap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/java-soap/README.md -------------------------------------------------------------------------------- /java-soap/WORKSPACE.bazel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /java-soap/employeeservicetopdown.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/java-soap/employeeservicetopdown.wsdl -------------------------------------------------------------------------------- /java-soap/maven_install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/java-soap/maven_install.json -------------------------------------------------------------------------------- /jest/.aspect/bazelrc/.gitignore: -------------------------------------------------------------------------------- 1 | user.bazelrc 2 | -------------------------------------------------------------------------------- /jest/.aspect/bazelrc/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/jest/.aspect/bazelrc/BUILD.bazel -------------------------------------------------------------------------------- /jest/.aspect/bazelrc/bazel6.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/jest/.aspect/bazelrc/bazel6.bazelrc -------------------------------------------------------------------------------- /jest/.aspect/bazelrc/convenience.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/jest/.aspect/bazelrc/convenience.bazelrc -------------------------------------------------------------------------------- /jest/.aspect/bazelrc/correctness.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/jest/.aspect/bazelrc/correctness.bazelrc -------------------------------------------------------------------------------- /jest/.aspect/bazelrc/debug.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/jest/.aspect/bazelrc/debug.bazelrc -------------------------------------------------------------------------------- /jest/.aspect/bazelrc/javascript.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/jest/.aspect/bazelrc/javascript.bazelrc -------------------------------------------------------------------------------- /jest/.aspect/bazelrc/performance.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/jest/.aspect/bazelrc/performance.bazelrc -------------------------------------------------------------------------------- /jest/.bazelignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /jest/.bazeliskrc: -------------------------------------------------------------------------------- 1 | ../.bazeliskrc -------------------------------------------------------------------------------- /jest/.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/jest/.bazelrc -------------------------------------------------------------------------------- /jest/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.4.1 2 | -------------------------------------------------------------------------------- /jest/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /bazel-* 3 | -------------------------------------------------------------------------------- /jest/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/jest/.npmrc -------------------------------------------------------------------------------- /jest/.swcrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/jest/.swcrc -------------------------------------------------------------------------------- /jest/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/jest/BUILD.bazel -------------------------------------------------------------------------------- /jest/MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/jest/MODULE.bazel -------------------------------------------------------------------------------- /jest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/jest/README.md -------------------------------------------------------------------------------- /jest/WORKSPACE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/jest/WORKSPACE.bazel -------------------------------------------------------------------------------- /jest/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | testEnvironment: 'jsdom', 3 | }; 4 | -------------------------------------------------------------------------------- /jest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/jest/package.json -------------------------------------------------------------------------------- /jest/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/jest/pnpm-lock.yaml -------------------------------------------------------------------------------- /jest/src/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/jest/src/BUILD.bazel -------------------------------------------------------------------------------- /jest/src/CheckboxWithLabel.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/jest/src/CheckboxWithLabel.spec.tsx -------------------------------------------------------------------------------- /jest/src/CheckboxWithLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/jest/src/CheckboxWithLabel.tsx -------------------------------------------------------------------------------- /jest/src/a.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/jest/src/a.spec.ts -------------------------------------------------------------------------------- /jest/src/a.ts: -------------------------------------------------------------------------------- 1 | export function name(): string { 2 | return 'a'; 3 | } 4 | -------------------------------------------------------------------------------- /jest/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/jest/tsconfig.json -------------------------------------------------------------------------------- /logger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/logger/README.md -------------------------------------------------------------------------------- /logger/backend/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/logger/backend/BUILD.bazel -------------------------------------------------------------------------------- /logger/backend/cmd/server/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/logger/backend/cmd/server/BUILD.bazel -------------------------------------------------------------------------------- /logger/backend/cmd/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/logger/backend/cmd/server/server.go -------------------------------------------------------------------------------- /logger/cli/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/logger/cli/BUILD.bazel -------------------------------------------------------------------------------- /logger/cli/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/logger/cli/__main__.py -------------------------------------------------------------------------------- /logger/cli/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/logger/cli/pyproject.toml -------------------------------------------------------------------------------- /logger/cli/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/logger/cli/requirements.txt -------------------------------------------------------------------------------- /logger/client/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/logger/client/BUILD.bazel -------------------------------------------------------------------------------- /logger/client/src/build/aspect/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/logger/client/src/build/aspect/BUILD.bazel -------------------------------------------------------------------------------- /logger/client/src/build/aspect/JavaLoggingClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/logger/client/src/build/aspect/JavaLoggingClient.java -------------------------------------------------------------------------------- /logger/client/src/build/aspect/JavaLoggingClientLibrary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/logger/client/src/build/aspect/JavaLoggingClientLibrary.java -------------------------------------------------------------------------------- /logger/client/src/build/aspect/JavaLoggingClientLibraryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/logger/client/src/build/aspect/JavaLoggingClientLibraryTest.java -------------------------------------------------------------------------------- /logger/client/src/build/aspect/JavaLoggingClientTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/logger/client/src/build/aspect/JavaLoggingClientTest.java -------------------------------------------------------------------------------- /logger/frontend/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/logger/frontend/BUILD.bazel -------------------------------------------------------------------------------- /logger/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/logger/frontend/index.html -------------------------------------------------------------------------------- /logger/frontend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/logger/frontend/index.ts -------------------------------------------------------------------------------- /logger/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/logger/frontend/package.json -------------------------------------------------------------------------------- /logger/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/logger/frontend/tsconfig.json -------------------------------------------------------------------------------- /logger/schema/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/logger/schema/BUILD.bazel -------------------------------------------------------------------------------- /logger/schema/LoggerGrpc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/logger/schema/LoggerGrpc.java -------------------------------------------------------------------------------- /logger/schema/logger.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/logger/schema/logger.pb.go -------------------------------------------------------------------------------- /logger/schema/logger.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/logger/schema/logger.proto -------------------------------------------------------------------------------- /logger/schema/logger_connect.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/logger/schema/logger_connect.d.ts -------------------------------------------------------------------------------- /logger/schema/logger_pb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/logger/schema/logger_pb.d.ts -------------------------------------------------------------------------------- /logger/schema/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/logger/schema/package.json -------------------------------------------------------------------------------- /maven_install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/maven_install.json -------------------------------------------------------------------------------- /nestjs/.aspect/bazelrc/.gitignore: -------------------------------------------------------------------------------- 1 | user.bazelrc 2 | -------------------------------------------------------------------------------- /nestjs/.aspect/bazelrc/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/nestjs/.aspect/bazelrc/BUILD.bazel -------------------------------------------------------------------------------- /nestjs/.aspect/bazelrc/bazel6.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/nestjs/.aspect/bazelrc/bazel6.bazelrc -------------------------------------------------------------------------------- /nestjs/.aspect/bazelrc/convenience.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/nestjs/.aspect/bazelrc/convenience.bazelrc -------------------------------------------------------------------------------- /nestjs/.aspect/bazelrc/correctness.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/nestjs/.aspect/bazelrc/correctness.bazelrc -------------------------------------------------------------------------------- /nestjs/.aspect/bazelrc/debug.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/nestjs/.aspect/bazelrc/debug.bazelrc -------------------------------------------------------------------------------- /nestjs/.aspect/bazelrc/javascript.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/nestjs/.aspect/bazelrc/javascript.bazelrc -------------------------------------------------------------------------------- /nestjs/.aspect/bazelrc/performance.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/nestjs/.aspect/bazelrc/performance.bazelrc -------------------------------------------------------------------------------- /nestjs/.bazelignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /nestjs/.bazeliskrc: -------------------------------------------------------------------------------- 1 | ../bazelrc/.bazeliskrc -------------------------------------------------------------------------------- /nestjs/.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/nestjs/.bazelrc -------------------------------------------------------------------------------- /nestjs/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.4.1 2 | -------------------------------------------------------------------------------- /nestjs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/nestjs/.gitignore -------------------------------------------------------------------------------- /nestjs/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/nestjs/.npmrc -------------------------------------------------------------------------------- /nestjs/.swcrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/nestjs/.swcrc -------------------------------------------------------------------------------- /nestjs/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/nestjs/BUILD.bazel -------------------------------------------------------------------------------- /nestjs/MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/nestjs/MODULE.bazel -------------------------------------------------------------------------------- /nestjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/nestjs/README.md -------------------------------------------------------------------------------- /nestjs/WORKSPACE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/nestjs/WORKSPACE.bazel -------------------------------------------------------------------------------- /nestjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/nestjs/package.json -------------------------------------------------------------------------------- /nestjs/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/nestjs/pnpm-lock.yaml -------------------------------------------------------------------------------- /nestjs/src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/nestjs/src/app.controller.ts -------------------------------------------------------------------------------- /nestjs/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/nestjs/src/app.module.ts -------------------------------------------------------------------------------- /nestjs/src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/nestjs/src/app.service.ts -------------------------------------------------------------------------------- /nestjs/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/nestjs/src/main.ts -------------------------------------------------------------------------------- /nestjs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/nestjs/tsconfig.json -------------------------------------------------------------------------------- /next.js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/next.js/README.md -------------------------------------------------------------------------------- /node_snapshot_flags/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/node_snapshot_flags/BUILD.bazel -------------------------------------------------------------------------------- /node_snapshot_flags/MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/node_snapshot_flags/MODULE.bazel -------------------------------------------------------------------------------- /node_snapshot_flags/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/node_snapshot_flags/README.md -------------------------------------------------------------------------------- /node_snapshot_flags/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/node_snapshot_flags/index.js -------------------------------------------------------------------------------- /node_snapshot_flags/snapshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/node_snapshot_flags/snapshot.js -------------------------------------------------------------------------------- /nodejs_apps/javascript/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/nodejs_apps/javascript/BUILD.bazel -------------------------------------------------------------------------------- /nodejs_apps/javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/nodejs_apps/javascript/package.json -------------------------------------------------------------------------------- /nodejs_apps/javascript/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/nodejs_apps/javascript/src/main.js -------------------------------------------------------------------------------- /nodejs_apps/typescript/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/nodejs_apps/typescript/BUILD.bazel -------------------------------------------------------------------------------- /nodejs_apps/typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/nodejs_apps/typescript/package.json -------------------------------------------------------------------------------- /nodejs_apps/typescript/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/nodejs_apps/typescript/src/main.ts -------------------------------------------------------------------------------- /npm_packages/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/npm_packages/BUILD.bazel -------------------------------------------------------------------------------- /npm_packages/first/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/npm_packages/first/BUILD.bazel -------------------------------------------------------------------------------- /npm_packages/first/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/npm_packages/first/package.json -------------------------------------------------------------------------------- /npm_packages/first/src/lib.js: -------------------------------------------------------------------------------- 1 | module.exports = () => { 2 | console.log('I am First!'); 3 | }; 4 | -------------------------------------------------------------------------------- /npm_packages/napi/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/npm_packages/napi/BUILD -------------------------------------------------------------------------------- /npm_packages/napi/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/npm_packages/napi/Cargo.lock -------------------------------------------------------------------------------- /npm_packages/napi/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/npm_packages/napi/Cargo.toml -------------------------------------------------------------------------------- /npm_packages/napi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/npm_packages/napi/README.md -------------------------------------------------------------------------------- /npm_packages/napi/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/npm_packages/napi/package.json -------------------------------------------------------------------------------- /npm_packages/napi/src/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/npm_packages/napi/src/BUILD -------------------------------------------------------------------------------- /npm_packages/napi/src/adder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/npm_packages/napi/src/adder.c -------------------------------------------------------------------------------- /npm_packages/napi/src/adder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/npm_packages/napi/src/adder.h -------------------------------------------------------------------------------- /npm_packages/napi/src/adder_binding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/npm_packages/napi/src/adder_binding.c -------------------------------------------------------------------------------- /npm_packages/napi/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/npm_packages/napi/src/index.ts -------------------------------------------------------------------------------- /npm_packages/napi/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/npm_packages/napi/src/lib.rs -------------------------------------------------------------------------------- /npm_packages/one/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/npm_packages/one/BUILD.bazel -------------------------------------------------------------------------------- /npm_packages/one/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/npm_packages/one/package.json -------------------------------------------------------------------------------- /npm_packages/one/src/lib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/npm_packages/one/src/lib.ts -------------------------------------------------------------------------------- /npm_packages/shared/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/npm_packages/shared/BUILD.bazel -------------------------------------------------------------------------------- /npm_packages/shared/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/npm_packages/shared/package.json -------------------------------------------------------------------------------- /npm_packages/shared/src/lib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/npm_packages/shared/src/lib.ts -------------------------------------------------------------------------------- /npm_packages/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/npm_packages/tsconfig.json -------------------------------------------------------------------------------- /npm_packages/two/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/npm_packages/two/BUILD.bazel -------------------------------------------------------------------------------- /npm_packages/two/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/npm_packages/two/package.json -------------------------------------------------------------------------------- /npm_packages/two/src/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/npm_packages/two/src/lib.js -------------------------------------------------------------------------------- /oci_go_image/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/oci_go_image/BUILD.bazel -------------------------------------------------------------------------------- /oci_go_image/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/oci_go_image/main.go -------------------------------------------------------------------------------- /oci_go_image/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/oci_go_image/main_test.go -------------------------------------------------------------------------------- /oci_go_image/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/oci_go_image/test.yaml -------------------------------------------------------------------------------- /oci_java_image/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/oci_java_image/README.md -------------------------------------------------------------------------------- /oci_python_image/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/oci_python_image/BUILD.bazel -------------------------------------------------------------------------------- /oci_python_image/hello_world/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/oci_python_image/hello_world/BUILD.bazel -------------------------------------------------------------------------------- /oci_python_image/hello_world/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oci_python_image/hello_world/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/oci_python_image/hello_world/__main__.py -------------------------------------------------------------------------------- /oci_python_image/hello_world/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/oci_python_image/hello_world/app.py -------------------------------------------------------------------------------- /oci_python_image/hello_world/app_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/oci_python_image/hello_world/app_test.py -------------------------------------------------------------------------------- /oci_python_image/hello_world/integration_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/oci_python_image/hello_world/integration_test.py -------------------------------------------------------------------------------- /oci_python_image/hello_world/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/oci_python_image/hello_world/test.yaml -------------------------------------------------------------------------------- /oci_python_image/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/oci_python_image/requirements.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/package.json -------------------------------------------------------------------------------- /pmd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/pmd.xml -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /prisma/.bazelignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /prisma/.bazeliskrc: -------------------------------------------------------------------------------- 1 | ../.bazeliskrc -------------------------------------------------------------------------------- /prisma/.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/prisma/.bazelrc -------------------------------------------------------------------------------- /prisma/.bazelversion: -------------------------------------------------------------------------------- 1 | 6.4.0 2 | -------------------------------------------------------------------------------- /prisma/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | bazel-* 3 | -------------------------------------------------------------------------------- /prisma/.npmrc: -------------------------------------------------------------------------------- 1 | hoist=false 2 | -------------------------------------------------------------------------------- /prisma/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/prisma/BUILD.bazel -------------------------------------------------------------------------------- /prisma/MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/prisma/MODULE.bazel -------------------------------------------------------------------------------- /prisma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/prisma/README.md -------------------------------------------------------------------------------- /prisma/WORKSPACE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/prisma/WORKSPACE.bazel -------------------------------------------------------------------------------- /prisma/bzl/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/prisma/bzl/BUILD.bazel -------------------------------------------------------------------------------- /prisma/bzl/cli.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/prisma/bzl/cli.bzl -------------------------------------------------------------------------------- /prisma/bzl/cli.tpl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/prisma/bzl/cli.tpl.sh -------------------------------------------------------------------------------- /prisma/bzl/constants.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/prisma/bzl/constants.bzl -------------------------------------------------------------------------------- /prisma/bzl/dev-run.tpl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/prisma/bzl/dev-run.tpl.sh -------------------------------------------------------------------------------- /prisma/bzl/dev.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/prisma/bzl/dev.bzl -------------------------------------------------------------------------------- /prisma/bzl/engines_store.BUILD.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/prisma/bzl/engines_store.BUILD.tpl -------------------------------------------------------------------------------- /prisma/bzl/extensions.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/prisma/bzl/extensions.bzl -------------------------------------------------------------------------------- /prisma/bzl/generate.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/prisma/bzl/generate.bzl -------------------------------------------------------------------------------- /prisma/bzl/lib.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/prisma/bzl/lib.bzl -------------------------------------------------------------------------------- /prisma/bzl/local_config_platform.BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/prisma/bzl/local_config_platform.BUILD.bazel -------------------------------------------------------------------------------- /prisma/bzl/local_config_platform.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/prisma/bzl/local_config_platform.bzl -------------------------------------------------------------------------------- /prisma/bzl/prisma_repo.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/prisma/bzl/prisma_repo.BUILD -------------------------------------------------------------------------------- /prisma/bzl/providers.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/prisma/bzl/providers.bzl -------------------------------------------------------------------------------- /prisma/bzl/repositories.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/prisma/bzl/repositories.bzl -------------------------------------------------------------------------------- /prisma/bzl/schema.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/prisma/bzl/schema.bzl -------------------------------------------------------------------------------- /prisma/bzl/store.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/prisma/bzl/store.bzl -------------------------------------------------------------------------------- /prisma/configs/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/prisma/configs/BUILD.bazel -------------------------------------------------------------------------------- /prisma/constraints/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/prisma/constraints/BUILD.bazel -------------------------------------------------------------------------------- /prisma/detect-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/prisma/detect-db.sh -------------------------------------------------------------------------------- /prisma/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/prisma/index.ts -------------------------------------------------------------------------------- /prisma/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/prisma/package.json -------------------------------------------------------------------------------- /prisma/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/prisma/pnpm-lock.yaml -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /prisma/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/prisma/seed.ts -------------------------------------------------------------------------------- /py_mypy/BUILD.bazel: -------------------------------------------------------------------------------- 1 | # gazelle: ignore 2 | exports_files(["requirements.txt"]) 3 | -------------------------------------------------------------------------------- /py_mypy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/py_mypy/README.md -------------------------------------------------------------------------------- /py_mypy/cli/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/py_mypy/cli/BUILD.bazel -------------------------------------------------------------------------------- /py_mypy/cli/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/py_mypy/cli/__main__.py -------------------------------------------------------------------------------- /py_mypy/data_models/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/py_mypy/data_models/BUILD.bazel -------------------------------------------------------------------------------- /py_mypy/data_models/data_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/py_mypy/data_models/data_models.py -------------------------------------------------------------------------------- /py_mypy/data_persistence/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/py_mypy/data_persistence/BUILD.bazel -------------------------------------------------------------------------------- /py_mypy/data_persistence/data_persistence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/py_mypy/data_persistence/data_persistence.py -------------------------------------------------------------------------------- /py_mypy/inventory_management/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/py_mypy/inventory_management/BUILD.bazel -------------------------------------------------------------------------------- /py_mypy/inventory_management/inventory_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/py_mypy/inventory_management/inventory_management.py -------------------------------------------------------------------------------- /py_mypy/order_processing/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/py_mypy/order_processing/BUILD.bazel -------------------------------------------------------------------------------- /py_mypy/order_processing/order_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/py_mypy/order_processing/order_processing.py -------------------------------------------------------------------------------- /py_mypy/requirements.txt: -------------------------------------------------------------------------------- 1 | click 2 | pydantic 3 | tomli 4 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/pyproject.toml -------------------------------------------------------------------------------- /qwik/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/README.md -------------------------------------------------------------------------------- /qwik/app/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/app/.eslintignore -------------------------------------------------------------------------------- /qwik/app/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/app/.eslintrc.cjs -------------------------------------------------------------------------------- /qwik/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/app/.gitignore -------------------------------------------------------------------------------- /qwik/app/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/app/.prettierignore -------------------------------------------------------------------------------- /qwik/app/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/app/.vscode/launch.json -------------------------------------------------------------------------------- /qwik/app/.vscode/qwik-city.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/app/.vscode/qwik-city.code-snippets -------------------------------------------------------------------------------- /qwik/app/.vscode/qwik.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/app/.vscode/qwik.code-snippets -------------------------------------------------------------------------------- /qwik/app/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/app/BUILD.bazel -------------------------------------------------------------------------------- /qwik/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/app/README.md -------------------------------------------------------------------------------- /qwik/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/app/package.json -------------------------------------------------------------------------------- /qwik/app/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/app/public/favicon.svg -------------------------------------------------------------------------------- /qwik/app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/app/public/manifest.json -------------------------------------------------------------------------------- /qwik/app/public/robots.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qwik/app/qwik.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/app/qwik.env.d.ts -------------------------------------------------------------------------------- /qwik/app/src/components/example/example.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/app/src/components/example/example.spec.tsx -------------------------------------------------------------------------------- /qwik/app/src/components/example/example.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/app/src/components/example/example.tsx -------------------------------------------------------------------------------- /qwik/app/src/components/router-head/router-head.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/app/src/components/router-head/router-head.tsx -------------------------------------------------------------------------------- /qwik/app/src/entry.dev.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/app/src/entry.dev.tsx -------------------------------------------------------------------------------- /qwik/app/src/entry.preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/app/src/entry.preview.tsx -------------------------------------------------------------------------------- /qwik/app/src/entry.ssr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/app/src/entry.ssr.tsx -------------------------------------------------------------------------------- /qwik/app/src/global.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qwik/app/src/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/app/src/root.tsx -------------------------------------------------------------------------------- /qwik/app/src/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/app/src/routes/index.tsx -------------------------------------------------------------------------------- /qwik/app/src/routes/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/app/src/routes/layout.tsx -------------------------------------------------------------------------------- /qwik/app/src/routes/service-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/app/src/routes/service-worker.ts -------------------------------------------------------------------------------- /qwik/app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/app/tsconfig.json -------------------------------------------------------------------------------- /qwik/app/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/app/vite.config.ts -------------------------------------------------------------------------------- /qwik/lib/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/lib/.eslintignore -------------------------------------------------------------------------------- /qwik/lib/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/lib/.eslintrc.cjs -------------------------------------------------------------------------------- /qwik/lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/lib/.gitignore -------------------------------------------------------------------------------- /qwik/lib/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/lib/.prettierignore -------------------------------------------------------------------------------- /qwik/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/lib/BUILD.bazel -------------------------------------------------------------------------------- /qwik/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/lib/README.md -------------------------------------------------------------------------------- /qwik/lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/lib/package.json -------------------------------------------------------------------------------- /qwik/lib/src/components/counter/counter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/lib/src/components/counter/counter.tsx -------------------------------------------------------------------------------- /qwik/lib/src/components/example/example.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/lib/src/components/example/example.spec.tsx -------------------------------------------------------------------------------- /qwik/lib/src/components/example/example.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/lib/src/components/example/example.tsx -------------------------------------------------------------------------------- /qwik/lib/src/components/logo/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/lib/src/components/logo/logo.tsx -------------------------------------------------------------------------------- /qwik/lib/src/entry.dev.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/lib/src/entry.dev.tsx -------------------------------------------------------------------------------- /qwik/lib/src/entry.ssr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/lib/src/entry.ssr.tsx -------------------------------------------------------------------------------- /qwik/lib/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/lib/src/index.ts -------------------------------------------------------------------------------- /qwik/lib/src/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/lib/src/root.tsx -------------------------------------------------------------------------------- /qwik/lib/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/lib/tsconfig.json -------------------------------------------------------------------------------- /qwik/lib/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/qwik/lib/vite.config.ts -------------------------------------------------------------------------------- /react-cra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/react-cra/README.md -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/renovate.json -------------------------------------------------------------------------------- /requirements/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/requirements/BUILD.bazel -------------------------------------------------------------------------------- /requirements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/requirements/README.md -------------------------------------------------------------------------------- /requirements/all.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/requirements/all.in -------------------------------------------------------------------------------- /requirements/all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/requirements/all.txt -------------------------------------------------------------------------------- /requirements/runtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/requirements/runtime.txt -------------------------------------------------------------------------------- /requirements/test.in: -------------------------------------------------------------------------------- 1 | # See README.md 2 | -c runtime.txt 3 | pytest 4 | coverage 5 | mypy 6 | -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/.aspect/bazelrc/.gitignore: -------------------------------------------------------------------------------- 1 | user.bazelrc 2 | -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/.aspect/bazelrc/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/.aspect/bazelrc/BUILD.bazel -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/.aspect/bazelrc/bazel6.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/.aspect/bazelrc/bazel6.bazelrc -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/.aspect/bazelrc/convenience.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/.aspect/bazelrc/convenience.bazelrc -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/.aspect/bazelrc/correctness.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/.aspect/bazelrc/correctness.bazelrc -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/.aspect/bazelrc/debug.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/.aspect/bazelrc/debug.bazelrc -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/.aspect/bazelrc/javascript.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/.aspect/bazelrc/javascript.bazelrc -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/.aspect/bazelrc/performance.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/.aspect/bazelrc/performance.bazelrc -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/.bazelignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/.bazelignore -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/.bazeliskrc: -------------------------------------------------------------------------------- 1 | ../.bazeliskrc -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/.bazelrc -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/.bazelversion: -------------------------------------------------------------------------------- 1 | 6.4.0 2 | -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /bazel-* 3 | -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/.npmrc -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/.syncpackrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/.syncpackrc -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/BUILD.bazel -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/README.md -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/WORKSPACE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/WORKSPACE.bazel -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/bazel/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/bazel/BUILD.bazel -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/bazel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/bazel/package.json -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/bazel/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/bazel/pnpm-lock.yaml -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/bazel/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/bazel/pnpm-workspace.yaml -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/bazel/rules_js/BUILD.bazel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/bazel/rules_js/defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/bazel/rules_js/defs.bzl -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/bazel/rules_js_to_rules_nodejs_adapter.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/bazel/rules_js_to_rules_nodejs_adapter.bzl -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/bazel/rules_nodejs/BUILD.bazel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/bazel/rules_nodejs/defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/bazel/rules_nodejs/defs.bzl -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/bazel/rules_nodejs_to_rules_js_adapter.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/bazel/rules_nodejs_to_rules_js_adapter.bzl -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/libs/a/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/libs/a/BUILD.bazel -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/libs/a/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/libs/a/index.ts -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/libs/a/src/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/libs/a/src/BUILD.bazel -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/libs/a/src/types.ts: -------------------------------------------------------------------------------- 1 | export type TypeA = { 2 | a: string; 3 | }; 4 | -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/libs/b/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/libs/b/BUILD.bazel -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/libs/b/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/libs/b/index.ts -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/libs/b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/libs/b/package.json -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/libs/b/src/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/libs/b/src/BUILD.bazel -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/libs/b/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/libs/b/src/types.ts -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/libs/c/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/libs/c/BUILD.bazel -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/libs/c/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/libs/c/index.ts -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/libs/c/src/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/libs/c/src/BUILD.bazel -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/libs/c/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/libs/c/src/types.ts -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/package.json -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/packages/a/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/packages/a/BUILD.bazel -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/packages/a/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/packages/a/index.ts -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/packages/a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/packages/a/package.json -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/packages/a/src/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/packages/a/src/BUILD.bazel -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/packages/a/src/types.ts: -------------------------------------------------------------------------------- 1 | export type TypeA = { 2 | a: string; 3 | }; 4 | -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/packages/b/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/packages/b/BUILD.bazel -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/packages/b/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/packages/b/index.ts -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/packages/b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/packages/b/package.json -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/packages/b/src/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/packages/b/src/BUILD.bazel -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/packages/b/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/packages/b/src/types.ts -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/packages/c/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/packages/c/BUILD.bazel -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/packages/c/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/packages/c/index.ts -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/packages/c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/packages/c/package.json -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/packages/c/src/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/packages/c/src/BUILD.bazel -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/packages/c/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/packages/c/src/types.ts -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/pnpm-lock.yaml -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/tsconfig.json -------------------------------------------------------------------------------- /rules_nodejs_to_rules_js_migration/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/rules_nodejs_to_rules_js_migration/yarn.lock -------------------------------------------------------------------------------- /speller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/speller/README.md -------------------------------------------------------------------------------- /speller/announce/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/speller/announce/BUILD.bazel -------------------------------------------------------------------------------- /speller/announce/announce.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/speller/announce/announce.cc -------------------------------------------------------------------------------- /speller/announce/announce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/speller/announce/announce.h -------------------------------------------------------------------------------- /speller/data_driven_tests/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/speller/data_driven_tests/BUILD.bazel -------------------------------------------------------------------------------- /speller/data_driven_tests/lookup-datatest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/speller/data_driven_tests/lookup-datatest.cc -------------------------------------------------------------------------------- /speller/data_driven_tests/testcases/test-001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/speller/data_driven_tests/testcases/test-001.json -------------------------------------------------------------------------------- /speller/data_driven_tests/testcases/test-002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/speller/data_driven_tests/testcases/test-002.json -------------------------------------------------------------------------------- /speller/exercise.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/speller/exercise.sh -------------------------------------------------------------------------------- /speller/greeting/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/speller/greeting/BUILD.bazel -------------------------------------------------------------------------------- /speller/greeting/greeting-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/speller/greeting/greeting-test.cc -------------------------------------------------------------------------------- /speller/greeting/greeting.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/speller/greeting/greeting.cc -------------------------------------------------------------------------------- /speller/greeting/greeting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/speller/greeting/greeting.h -------------------------------------------------------------------------------- /speller/lookup/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/speller/lookup/BUILD.bazel -------------------------------------------------------------------------------- /speller/lookup/lookup-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/speller/lookup/lookup-test.cc -------------------------------------------------------------------------------- /speller/lookup/lookup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/speller/lookup/lookup.cc -------------------------------------------------------------------------------- /speller/lookup/lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/speller/lookup/lookup.h -------------------------------------------------------------------------------- /speller/main/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/speller/main/BUILD.bazel -------------------------------------------------------------------------------- /speller/main/build-dictionary.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/speller/main/build-dictionary.cc -------------------------------------------------------------------------------- /speller/main/spell.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/speller/main/spell.cc -------------------------------------------------------------------------------- /swift_deps_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/swift_deps_index.json -------------------------------------------------------------------------------- /third_party/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/third_party/README.md -------------------------------------------------------------------------------- /third_party/nlohmann-json/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/third_party/nlohmann-json/BUILD.bazel -------------------------------------------------------------------------------- /third_party/nlohmann-json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/third_party/nlohmann-json/README.md -------------------------------------------------------------------------------- /third_party/nlohmann-json/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/third_party/nlohmann-json/json.hpp -------------------------------------------------------------------------------- /tools/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/tools/BUILD.bazel -------------------------------------------------------------------------------- /tools/format/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/tools/format/BUILD.bazel -------------------------------------------------------------------------------- /tools/java17.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/tools/java17.bazelrc -------------------------------------------------------------------------------- /tools/lint/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/tools/lint/BUILD.bazel -------------------------------------------------------------------------------- /tools/lint/linters.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/tools/lint/linters.bzl -------------------------------------------------------------------------------- /tools/mypy/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/tools/mypy/BUILD.bazel -------------------------------------------------------------------------------- /tools/mypy/defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/tools/mypy/defs.bzl -------------------------------------------------------------------------------- /tools/mypy/mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/tools/mypy/mypy.ini -------------------------------------------------------------------------------- /tools/mypy/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/tools/mypy/requirements.txt -------------------------------------------------------------------------------- /tools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/tools/package.json -------------------------------------------------------------------------------- /tools/platforms/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/tools/platforms/BUILD.bazel -------------------------------------------------------------------------------- /tools/preset.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/tools/preset.bazelrc -------------------------------------------------------------------------------- /tools/toolchains/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/tools/toolchains/BUILD.bazel -------------------------------------------------------------------------------- /tools/tools.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/tools/tools.lock.json -------------------------------------------------------------------------------- /tools/workspace_status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/tools/workspace_status.sh -------------------------------------------------------------------------------- /ts_project_transpiler/.aspect/bazelrc/.gitignore: -------------------------------------------------------------------------------- 1 | user.bazelrc 2 | -------------------------------------------------------------------------------- /ts_project_transpiler/.aspect/bazelrc/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/ts_project_transpiler/.aspect/bazelrc/BUILD.bazel -------------------------------------------------------------------------------- /ts_project_transpiler/.aspect/bazelrc/bazel6.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/ts_project_transpiler/.aspect/bazelrc/bazel6.bazelrc -------------------------------------------------------------------------------- /ts_project_transpiler/.aspect/bazelrc/convenience.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/ts_project_transpiler/.aspect/bazelrc/convenience.bazelrc -------------------------------------------------------------------------------- /ts_project_transpiler/.aspect/bazelrc/correctness.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/ts_project_transpiler/.aspect/bazelrc/correctness.bazelrc -------------------------------------------------------------------------------- /ts_project_transpiler/.aspect/bazelrc/debug.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/ts_project_transpiler/.aspect/bazelrc/debug.bazelrc -------------------------------------------------------------------------------- /ts_project_transpiler/.aspect/bazelrc/javascript.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/ts_project_transpiler/.aspect/bazelrc/javascript.bazelrc -------------------------------------------------------------------------------- /ts_project_transpiler/.aspect/bazelrc/performance.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/ts_project_transpiler/.aspect/bazelrc/performance.bazelrc -------------------------------------------------------------------------------- /ts_project_transpiler/.bazelignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /ts_project_transpiler/.bazeliskrc: -------------------------------------------------------------------------------- 1 | ../.bazeliskrc -------------------------------------------------------------------------------- /ts_project_transpiler/.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/ts_project_transpiler/.bazelrc -------------------------------------------------------------------------------- /ts_project_transpiler/.bazelversion: -------------------------------------------------------------------------------- 1 | 6.4.0 2 | -------------------------------------------------------------------------------- /ts_project_transpiler/.gitignore: -------------------------------------------------------------------------------- 1 | /bazel-* 2 | node_modules 3 | -------------------------------------------------------------------------------- /ts_project_transpiler/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/ts_project_transpiler/.npmrc -------------------------------------------------------------------------------- /ts_project_transpiler/.swcrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/ts_project_transpiler/.swcrc -------------------------------------------------------------------------------- /ts_project_transpiler/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/ts_project_transpiler/BUILD.bazel -------------------------------------------------------------------------------- /ts_project_transpiler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/ts_project_transpiler/README.md -------------------------------------------------------------------------------- /ts_project_transpiler/WORKSPACE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/ts_project_transpiler/WORKSPACE.bazel -------------------------------------------------------------------------------- /ts_project_transpiler/babel.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/ts_project_transpiler/babel.bzl -------------------------------------------------------------------------------- /ts_project_transpiler/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/ts_project_transpiler/package.json -------------------------------------------------------------------------------- /ts_project_transpiler/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/ts_project_transpiler/pnpm-lock.yaml -------------------------------------------------------------------------------- /ts_project_transpiler/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/ts_project_transpiler/tsconfig.json -------------------------------------------------------------------------------- /vercel_pkg/.bazelignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /vercel_pkg/.bazelrc: -------------------------------------------------------------------------------- 1 | common --enable_bzlmod -------------------------------------------------------------------------------- /vercel_pkg/.bazelversion: -------------------------------------------------------------------------------- 1 | 6.2.0 -------------------------------------------------------------------------------- /vercel_pkg/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /vercel_pkg/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/vercel_pkg/BUILD.bazel -------------------------------------------------------------------------------- /vercel_pkg/MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/vercel_pkg/MODULE.bazel -------------------------------------------------------------------------------- /vercel_pkg/WORKSPACE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/vercel_pkg/WORKSPACE.bazel -------------------------------------------------------------------------------- /vercel_pkg/defs/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/vercel_pkg/defs/BUILD.bazel -------------------------------------------------------------------------------- /vercel_pkg/defs/vercel_pkg.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/vercel_pkg/defs/vercel_pkg.bzl -------------------------------------------------------------------------------- /vercel_pkg/defs/vercel_pkg_fetch.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/vercel_pkg/defs/vercel_pkg_fetch.bzl -------------------------------------------------------------------------------- /vercel_pkg/index.ts: -------------------------------------------------------------------------------- 1 | console.log('hello world!'); 2 | -------------------------------------------------------------------------------- /vercel_pkg/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/vercel_pkg/package.json -------------------------------------------------------------------------------- /vercel_pkg/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/vercel_pkg/pnpm-lock.yaml -------------------------------------------------------------------------------- /vercel_pkg/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": {} 3 | } 4 | -------------------------------------------------------------------------------- /vue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/vue/README.md -------------------------------------------------------------------------------- /write_source_files/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/write_source_files/BUILD.bazel -------------------------------------------------------------------------------- /write_source_files/bar/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/write_source_files/bar/BUILD.bazel -------------------------------------------------------------------------------- /write_source_files/bar/bar.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/write_source_files/bar/bar.pb.go -------------------------------------------------------------------------------- /write_source_files/bar/bar.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/write_source_files/bar/bar.proto -------------------------------------------------------------------------------- /write_source_files/bar/baz.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/write_source_files/bar/baz.pb.go -------------------------------------------------------------------------------- /write_source_files/bar/baz.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/write_source_files/bar/baz.proto -------------------------------------------------------------------------------- /write_source_files/foo/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/write_source_files/foo/BUILD.bazel -------------------------------------------------------------------------------- /write_source_files/foo/foo.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/write_source_files/foo/foo.pb.go -------------------------------------------------------------------------------- /write_source_files/foo/foo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/write_source_files/foo/foo.proto -------------------------------------------------------------------------------- /write_source_files/foo/fum.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/write_source_files/foo/fum.pb.go -------------------------------------------------------------------------------- /write_source_files/foo/fum.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/write_source_files/foo/fum.proto -------------------------------------------------------------------------------- /write_source_files/go_proto_library.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspect-build/bazel-examples/HEAD/write_source_files/go_proto_library.bzl --------------------------------------------------------------------------------