remove-angular-http.js 486 B

123456789101112131415
  1. "use strict";
  2. /**
  3. * @license
  4. * Copyright Google Inc. All Rights Reserved.
  5. *
  6. * Use of this source code is governed by an MIT-style license that can be
  7. * found in the LICENSE file at https://angular.io/license
  8. */
  9. Object.defineProperty(exports, "__esModule", { value: true });
  10. const dependencies_1 = require("../../utility/dependencies");
  11. exports.removeAngularHttp = () => {
  12. return (host) => {
  13. dependencies_1.removePackageJsonDependency(host, '@angular/http');
  14. };
  15. };