2017-08-16 12:02:20 -04: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 13:53:55 -05:00
|
|
|
|
2017-08-16 12:02:20 -04:00
|
|
|
Users should not load files under "/src"
|
|
|
|
"""
|
|
|
|
|
2018-02-13 14:26:06 -05:00
|
|
|
load("//packages/bazel/src/ng_package:ng_package.bzl", _ng_package = "ng_package")
|
2018-08-07 19:15:45 -04: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 14:42:58 -04:00
|
|
|
load("//packages/bazel/src:ng_module.bzl", _ng_module = "ng_module_macro")
|
2018-01-05 13:53:55 -05:00
|
|
|
|
|
|
|
ng_module = _ng_module
|
2018-02-13 14:26:06 -05:00
|
|
|
ng_package = _ng_package
|
2018-07-06 17:51:37 -04:00
|
|
|
protractor_web_test = _protractor_web_test
|
2018-04-09 02:53:31 -04:00
|
|
|
protractor_web_test_suite = _protractor_web_test_suite
|
2018-04-25 12:23:20 -04:00
|
|
|
# DO NOT ADD PUBLIC API without including in the documentation generation
|
2018-10-27 03:25:45 -04:00
|
|
|
# Run `yarn bazel build //packages/bazel/docs` to verify
|
2019-02-20 12:54:42 -05: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.
|
|
|
|
""")
|