Alex Eagle c2b5ebfa24 build: update buildifier to latest (#24296)
this matches the version in ngcontainer:0.3.1

PR Close #24296
2018-06-12 11:42:35 -07:00

33 lines
655 B
Python

package(default_visibility = ["//visibility:public"])
load("//tools:defaults.bzl", "ng_package", "ts_library")
ts_library(
name = "compiler",
srcs = glob(
[
"*.ts",
"src/**/*.ts",
],
),
module_name = "@angular/compiler",
)
ng_package(
name = "npm_package",
srcs = [
"package.json",
"//packages/compiler/testing:package.json",
],
entry_point = "packages/compiler/compiler.js",
include_devmode_srcs = True,
tags = [
"ivy-jit",
"release-with-framework",
],
deps = [
":compiler",
"//packages/compiler/testing",
],
)