
Adds a new entry-point to the `@angular/bazel` `ng_package` test that contains numbers in the name. e.g. `example/a11y`. This test is added to replicate a bug where the UMD module export for such entry-points is incorrectly generated. i.e. `example.a11Y` is generated instead of `example.a11y`. PR Close #35792
14 lines
287 B
TypeScript
14 lines
287 B
TypeScript
/**
|
|
* @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 {NgModule} from '@angular/core';
|
|
|
|
@NgModule({})
|
|
export class A11yModule {
|
|
}
|