Skip to content

Commit

Permalink
fix(examples): fix angular examples to use bazelisk
Browse files Browse the repository at this point in the history
  • Loading branch information
alan-agius4 authored and alexeagle committed Mar 2, 2020
1 parent a43809b commit 02e6462
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions examples/angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@
"typescript": "3.6.4"
},
"scripts": {
"build": "bazel build //src:bundle",
"build": "bazelisk build //src:bundle",
"serve": "ibazel run //src:devserver",
"deploy": "ng build && firebase deploy",
"serve-prod": "bazel run //src:prodserver",
"e2e": "bazel test //e2e:all",
"test": "bazel test //src/...",
"serve-prod": "bazelisk run //src:prodserver",
"e2e": "bazelisk test //e2e:all",
"test": "bazelisk test //src/...",
"benchmark": "ibazel-benchmark-runner //src:devserver src/app/hello-world/hello-world.component.ts --url=http://localhost:5432",
"postinstall": "ngcc",
"generate": "node tools/generator/index.js",
Expand Down
8 changes: 4 additions & 4 deletions examples/angular_view_engine/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,12 @@
"typescript": "3.4.5"
},
"scripts": {
"build": "bazel build //src:bundle",
"build": "bazelisk build //src:bundle",
"serve": "ibazel run //src:devserver",
"deploy": "ng build && firebase deploy",
"serve-prod": "bazel run //src:prodserver",
"e2e": "bazel test //e2e:all",
"test": "bazel test //src/...",
"serve-prod": "bazelisk run //src:prodserver",
"e2e": "bazelisk test //e2e:all",
"test": "bazelisk test //src/...",
"benchmark": "ibazel-benchmark-runner //src:devserver src/app/hello-world/hello-world.component.ts --url=http://localhost:5432",
"postinstall": "patch-package && ngc -p angular-metadata.tsconfig.json",
"generate": "node tools/generator/index.js",
Expand Down

0 comments on commit 02e6462

Please sign in to comment.