build: turn off dts bundling for packages that still are not supported (#29128)
PR Close #29128
This commit is contained in:
parent
3ef2002bd8
commit
941c99ad7f
|
@ -10,7 +10,6 @@ ng_module(
|
|||
"src/**/*.ts",
|
||||
],
|
||||
),
|
||||
bundle_dts = True,
|
||||
deps = [
|
||||
"//packages/core",
|
||||
"@npm//rxjs",
|
||||
|
|
|
@ -12,7 +12,6 @@ ng_module(
|
|||
"src/**/*.ts",
|
||||
],
|
||||
),
|
||||
bundle_dts = True,
|
||||
deps = [
|
||||
"//packages/common",
|
||||
"//packages/core",
|
||||
|
|
|
@ -12,7 +12,6 @@ ng_module(
|
|||
"src/**/*.ts",
|
||||
],
|
||||
),
|
||||
bundle_dts = True,
|
||||
deps = [
|
||||
"//packages/common/http",
|
||||
"//packages/core",
|
||||
|
|
|
@ -7,7 +7,6 @@ exports_files(["package.json"])
|
|||
ng_module(
|
||||
name = "testing",
|
||||
srcs = glob(["**/*.ts"]),
|
||||
bundle_dts = True,
|
||||
deps = [
|
||||
"//packages/common",
|
||||
"//packages/core",
|
||||
|
|
|
@ -10,6 +10,8 @@ ng_module(
|
|||
["**/*.ts"],
|
||||
exclude = ["testing.ts"],
|
||||
),
|
||||
# compiler package is built using ts_library which doesn't support bundling yet.
|
||||
bundle_dts = False,
|
||||
deps = [
|
||||
"//packages:types",
|
||||
"//packages/compiler",
|
||||
|
|
|
@ -10,6 +10,8 @@ ng_module(
|
|||
"src/**/*.ts",
|
||||
],
|
||||
),
|
||||
# PR to support this https://github.com/angular/angular/pull/28884
|
||||
bundle_dts = False,
|
||||
deps = [
|
||||
"//packages:types",
|
||||
"//packages/core/src/compiler",
|
||||
|
|
|
@ -9,6 +9,8 @@ ng_module(
|
|||
srcs = glob(
|
||||
["**/*.ts"],
|
||||
),
|
||||
# PR to support this https://github.com/angular/angular/pull/28884
|
||||
bundle_dts = False,
|
||||
deps = [
|
||||
"//packages:types",
|
||||
"//packages/compiler",
|
||||
|
|
|
@ -10,7 +10,6 @@ ng_module(
|
|||
"src/**/*.ts",
|
||||
],
|
||||
),
|
||||
bundle_dts = True,
|
||||
deps = [
|
||||
"//packages/common",
|
||||
"//packages/core",
|
||||
|
|
|
@ -7,7 +7,6 @@ exports_files(["package.json"])
|
|||
ng_module(
|
||||
name = "testing",
|
||||
srcs = glob(["**/*.ts"]),
|
||||
bundle_dts = True,
|
||||
deps = [
|
||||
"//packages/common",
|
||||
"//packages/common/testing",
|
||||
|
|
|
@ -12,7 +12,6 @@ ng_module(
|
|||
"src/**/*.ts",
|
||||
],
|
||||
),
|
||||
bundle_dts = True,
|
||||
deps = [
|
||||
"//packages/common",
|
||||
"//packages/core",
|
||||
|
|
Loading…
Reference in New Issue