Revision 1a6a13425bfec149385c80d24da3522d62f60a27 authored by Peter Bacon Darwin on 26 July 2017, 17:36:00 UTC, committed by Victor Berchet on 04 August 2017, 16:15:38 UTC
* Add a banner if the mode is "archive"
* Add a `mode-...` class to the `aio-shell` element to enable
mode based theming.

See #18287
1 parent 072a772
Raw File
BUILD.bazel
package(default_visibility = ["//visibility:public"])
exports_files(["tsconfig.json"])

# This rule belongs in node_modules/BUILD
# It's here as a workaround for
# https://github.com/bazelbuild/bazel/issues/374#issuecomment-296217940
filegroup(
    name = "node_modules",
    srcs = glob([
        # Performance workaround: list individual files
        # This won't scale in the general case.
        # TODO(alexeagle): figure out what to do
        "node_modules/typescript/**",
        "node_modules/zone.js/**",
        "node_modules/rxjs/**/*.d.ts",
        "node_modules/rxjs/**/*.js",
        "node_modules/@types/**/*.d.ts",
        "node_modules/tsickle/**",
        "node_modules/hammerjs/**/*.d.ts",
        "node_modules/protobufjs/**",
        "node_modules/bytebuffer/**",
        "node_modules/reflect-metadata/**",
        "node_modules/minimist/**/*.js",
    ]),
)
back to top