From ccb7bd06300707457c7d07cae23a0afe44f08fa7 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Mon, 23 Dec 2019 14:09:26 -0800 Subject: [PATCH] build: remove modules/payload_tests/hello_world (#34551) This code is no longer being used or needed. PR Close #34551 --- .../hello_world/ts/systemjs/index.html | 11 ------- .../hello_world/ts/systemjs/index.ts | 30 ----------------- .../hello_world/ts/webpack/index.html | 10 ------ .../hello_world/ts/webpack/index.ts | 33 ------------------- 4 files changed, 84 deletions(-) delete mode 100644 modules/payload_tests/hello_world/ts/systemjs/index.html delete mode 100644 modules/payload_tests/hello_world/ts/systemjs/index.ts delete mode 100644 modules/payload_tests/hello_world/ts/webpack/index.html delete mode 100644 modules/payload_tests/hello_world/ts/webpack/index.ts diff --git a/modules/payload_tests/hello_world/ts/systemjs/index.html b/modules/payload_tests/hello_world/ts/systemjs/index.html deleted file mode 100644 index 0a0d5b8e3e..0000000000 --- a/modules/payload_tests/hello_world/ts/systemjs/index.html +++ /dev/null @@ -1,11 +0,0 @@ - - - Angular Hello World payload test - - - Loading... - - - - - diff --git a/modules/payload_tests/hello_world/ts/systemjs/index.ts b/modules/payload_tests/hello_world/ts/systemjs/index.ts deleted file mode 100644 index d770ed63b0..0000000000 --- a/modules/payload_tests/hello_world/ts/systemjs/index.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * @license - * 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 - */ - -import {Component, NgModule} from '@angular/core'; -import {platformBrowserDynamic} from '@angular/platform-browser-dynamic'; -import {BrowserModule} from '@angular/platform-browser'; - -@Component({ - selector: 'hello-app', - template: ` -

Hello, {{name}}!

- -` -}) -class HelloCmp { - name = 'World'; -} - -@NgModule({ - bootstrap: [HelloCmp], - imports: [BrowserModule] -}) -class ExampleModule {} - -platformBrowserDynamic().bootstrapModule(ExampleModule); diff --git a/modules/payload_tests/hello_world/ts/webpack/index.html b/modules/payload_tests/hello_world/ts/webpack/index.html deleted file mode 100644 index 94b30d7cff..0000000000 --- a/modules/payload_tests/hello_world/ts/webpack/index.html +++ /dev/null @@ -1,10 +0,0 @@ - - - Angular Hello World payload test - - - Loading... - - - - diff --git a/modules/payload_tests/hello_world/ts/webpack/index.ts b/modules/payload_tests/hello_world/ts/webpack/index.ts deleted file mode 100644 index d3ca23fdfc..0000000000 --- a/modules/payload_tests/hello_world/ts/webpack/index.ts +++ /dev/null @@ -1,33 +0,0 @@ -/** - * @license - * 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 - */ - -import {Component, NgModule} from '@angular/core'; -import {platformBrowserDynamic} from '@angular/platform-browser-dynamic'; -import {BrowserModule} from '@angular/platform-browser'; - -@Component({ - selector: 'hello-app', - template: ` -

Hello, {{name}}!

- -` -}) -export class HelloCmp { - name = 'World'; -} - -@NgModule({ - bootstrap: [HelloCmp], - imports: [BrowserModule] -}) -class ExampleModule {} - - -export function main() { - platformBrowserDynamic().bootstrapModule(ExampleModule); -}