mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This commit moves the best-practices.md file from adev/src/context to packages/core/resources. The BUILD.bazel files and other configuration files have been updated to reflect this change.
15 lines
288 B
Text
15 lines
288 B
Text
exports_files(
|
|
srcs = ["best-practices.md"],
|
|
visibility = [
|
|
"//adev/src/assets:__pkg__",
|
|
"//adev/src/content/ai:__pkg__",
|
|
],
|
|
)
|
|
|
|
filegroup(
|
|
name = "resources",
|
|
srcs = ["best-practices.md"],
|
|
visibility = [
|
|
"//packages/core:__pkg__",
|
|
],
|
|
)
|