load("@build_bazel_rules_nodejs//:index.bzl", "js_library") SRCS = glob( [ "**/*.ts", ], exclude = [ "**/*.config.js", "**/*.mock.*", "**/*.test.*", "**/*.stories.*", "**/__snapshots__/**", "**/integration_tests/**", "**/mocks/**", "**/scripts/**", "**/storybook/**", "**/test_fixtures/**", "**/test_helpers/**", ], ) BUNDLER_DEPS = [ "@npm//moment", ] js_library( name = "kbn-datemath", package_name = "@kbn/datemath", srcs = ["package.json"] + SRCS, deps = BUNDLER_DEPS, visibility = ["//visibility:public"], )