This repository has been archived by the owner on Jun 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdefs.bzl
38 lines (34 loc) · 1.63 KB
/
defs.bzl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Copyright 2018 Ecosia GmbH
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Public API surface is re-exported here.
Users should not load files under "/internal"
"""
load("//internal/json_to_js:defs.bzl", _json_to_js = "json_to_js")
load("//internal/toml_to_js:defs.bzl", _toml_to_js = "toml_to_js")
load("//internal/js_import:defs.bzl", _js_import = "js_import")
load("//internal/vue_component:defs.bzl", _vue_component = "vue_component")
load("//internal/nodejs_jest_test:defs.bzl", _node_jest_test_macro = "node_jest_test_macro")
load("//internal/jest_node_test:defs.bzl", _jest_node_test = "jest_node_test")
load("//internal/js_library:defs.bzl", _js_library = "js_library")
load("//internal/babel_library:defs.bzl", _babel_library = "babel_library")
load("//internal:node_contrib_repositories.bzl", _node_contrib_repositories = "node_contrib_repositories")
json_to_js = _json_to_js
toml_to_js = _toml_to_js
js_import = _js_import
vue_component = _vue_component
node_contrib_repositories = _node_contrib_repositories
nodejs_jest_test = _node_jest_test_macro
jest_node_test = _jest_node_test
js_library = _js_library
babel_library = _babel_library