mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
25e8bcbdf6
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.
16 lines
288 B
Python
16 lines
288 B
Python
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__",
|
|
],
|
|
)
|