fix(elements): schematics fails with schema.json not found error (#35211)

Fixes #35154

PR Close #35211
This commit is contained in:
Alan Agius
2020-02-07 08:51:47 +01:00
committed by Kara Erickson
parent 332937ef24
commit 7c9735a995
8 changed files with 1983 additions and 8 deletions

View File

@ -4,11 +4,13 @@ package(default_visibility = ["//visibility:public"])
ts_library(
name = "ng-add",
srcs =
[
"index.ts",
"schema.ts",
],
srcs = [
"index.ts",
"schema.d.ts",
],
data = [
"schema.json",
],
deps = [
"@npm//@angular-devkit/schematics",
"@npm//@schematics/angular",
@ -21,9 +23,6 @@ ts_library(
srcs = [
"index_spec.ts",
],
data = [
"schema.json",
],
deps = [
":ng-add",
"@npm//@angular-devkit/schematics",