Skip to content
This repository was archived by the owner on Apr 4, 2025. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ jobs:
# Install the dependencies from NPM
- run: bazel run --config=ci @yarn//:yarn install

# Run the benchmark
- run: node_modules/.bin/ibazel-benchmark-runner //src:devserver src/hello-world/hello-world.component.ts --config=ci --url=http://localhost:5432

# Build and Test
# Use bazel query so that we explicitly ask for all buildable targets to
# be built even though we run `bazel test`
Expand Down
2 changes: 1 addition & 1 deletion WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ node_repositories(package_json = ["//:package.json"])
git_repository(
name = "build_bazel_rules_typescript",
remote = "https://github.com/bazelbuild/rules_typescript.git",
tag = "0.7.1",
commit = "b94f18bcdbf529615b57bf24de773758c33d85fc",
)

load("@build_bazel_rules_typescript//:setup.bzl", "ts_setup_workspace")
Expand Down
23 changes: 12 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,23 @@
"description": "Demo of bazel rules for angular",
"license": "Apache 2.0",
"dependencies": {
"@angular/animations": "5.1.3",
"@angular/common": "5.1.3",
"@angular/core": "5.1.3",
"@angular/platform-browser": "5.1.3",
"@angular/animations": "5.2.0",
"@angular/common": "5.2.0",
"@angular/core": "5.2.0",
"@angular/platform-browser": "5.2.0",
"rxjs": "5.5.6",
"zone.js": "0.8.19"
},
"devDependencies": {
"@angular/bazel": "5.1.3",
"@angular/compiler": "5.1.3",
"@angular/compiler-cli": "5.1.3",
"@angular/platform-browser-dynamic": "5.1.3",
"@bazel/ibazel": "0.2.0",
"@angular/bazel": "5.2.0",
"@angular/compiler": "5.2.0",
"@angular/compiler-cli": "5.2.0",
"@angular/platform-browser-dynamic": "5.2.0",
"@types/jasmine": "2.8.3",
"clang-format": "1.2.1",
"clang-format": "1.2.2",
"concurrently": "3.5.1",
"husky": "0.14.3",
"ibazel-benchmark-runner": "git+https://github.com/gregmagolan/ibazel-benchmark-runner",
"protractor": "5.2.2",
"typescript": "2.6.2"
},
Expand All @@ -31,6 +31,7 @@
"precommit": "check-clang-format \"yarn format\"",
"postinstall": "concurrently \"webdriver-manager update\" \"ngc -p angular.tsconfig.json\"",
"pretest": "bazel build test/...",
"test": "concurrently \"bazel run //src:devserver\" protractor --kill-others --success first"
"test": "concurrently \"bazel run //src:devserver\" protractor --kill-others --success first",
"benchmark": "ibazel-benchmark-runner //src:devserver src/hello-world/hello-world.component.ts --url=http://localhost:5432"
}
}
Loading