2017-08-16 09:02:20 -07:00
|
|
|
# Copyright Google Inc. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Use of this source code is governed by an MIT-style license that can be
|
|
|
|
# found in the LICENSE file at https://angular.io/license
|
|
|
|
""" Public API surface is re-exported here.
|
2018-01-05 10:53:55 -08:00
|
|
|
|
2017-08-16 09:02:20 -07:00
|
|
|
Users should not load files under "/src"
|
|
|
|
"""
|
|
|
|
|
2018-02-13 11:26:06 -08:00
|
|
|
load("//packages/bazel/src/ng_package:ng_package.bzl", _ng_package = "ng_package")
|
2018-08-07 16:15:45 -07:00
|
|
|
load(
|
|
|
|
"//packages/bazel/src/protractor:protractor_web_test.bzl",
|
|
|
|
_protractor_web_test = "protractor_web_test",
|
|
|
|
_protractor_web_test_suite = "protractor_web_test_suite",
|
|
|
|
)
|
2019-04-02 11:42:58 -07:00
|
|
|
load("//packages/bazel/src:ng_module.bzl", _ng_module = "ng_module_macro")
|
2018-01-05 10:53:55 -08:00
|
|
|
|
|
|
|
ng_module = _ng_module
|
2018-02-13 11:26:06 -08:00
|
|
|
ng_package = _ng_package
|
2018-07-06 14:51:37 -07:00
|
|
|
protractor_web_test = _protractor_web_test
|
2018-04-09 00:53:31 -06:00
|
|
|
protractor_web_test_suite = _protractor_web_test_suite
|
2018-04-25 09:23:20 -07:00
|
|
|
# DO NOT ADD PUBLIC API without including in the documentation generation
|
2018-10-27 09:25:45 +02:00
|
|
|
# Run `yarn bazel build //packages/bazel/docs` to verify
|
2019-02-20 09:54:42 -08:00
|
|
|
|
|
|
|
def ng_setup_workspace():
|
|
|
|
print("""DEPRECATION WARNING:
|
|
|
|
ng_setup_workspace is no longer needed, and will be removed in a future release.
|
|
|
|
We assume you will fetch rules_nodejs in your WORKSPACE file, and no other dependencies remain here.
|
|
|
|
Simply remove any calls to this function and the corresponding load statement.
|
|
|
|
""")
|