Skip to content

Commit 628169d

Browse files
committed
build(): fix source maps
1 parent 811e504 commit 628169d

File tree

217 files changed

+1027
-212
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

217 files changed

+1027
-212
lines changed

src/cdk/a11y/public_api.ts renamed to src/cdk/a11y/a11y-module.ts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,3 @@ import {CdkMonitorFocus, FOCUS_MONITOR_PROVIDER} from './focus-monitor';
2929
]
3030
})
3131
export class A11yModule {}
32-
33-
export * from './activedescendant-key-manager';
34-
export * from './aria-describer';
35-
export * from './fake-mousedown';
36-
export * from './focus-key-manager';
37-
export * from './focus-trap';
38-
export * from './interactivity-checker';
39-
export * from './list-key-manager';
40-
export * from './live-announcer';
41-
export * from './focus-monitor';

src/cdk/a11y/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
* found in the LICENSE file at https://angular.io/license
77
*/
88

9-
export * from './public_api';
9+
export * from './public-api';

src/cdk/a11y/public-api.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/**
2+
* @license
3+
* Copyright Google Inc. All Rights Reserved.
4+
*
5+
* Use of this source code is governed by an MIT-style license that can be
6+
* found in the LICENSE file at https://angular.io/license
7+
*/
8+
9+
export * from './activedescendant-key-manager';
10+
export * from './aria-describer';
11+
export * from './fake-mousedown';
12+
export * from './focus-key-manager';
13+
export * from './focus-trap';
14+
export * from './interactivity-checker';
15+
export * from './list-key-manager';
16+
export * from './live-announcer';
17+
export * from './focus-monitor';
18+
export * from './a11y-module';

src/cdk/a11y/tsconfig-build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": "../tsconfig-build",
33
"files": [
4-
"public_api.ts"
4+
"public-api.ts"
55
],
66
"angularCompilerOptions": {
77
"annotateForClosureCompiler": true,

src/cdk/a11y/tsconfig-es5.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"extends": "../tsconfig-es5",
3+
"files": [
4+
"public-api.ts"
5+
],
6+
"angularCompilerOptions": {
7+
"annotateForClosureCompiler": true,
8+
"strictMetadataEmit": true,
9+
"flatModuleOutFile": "index.js",
10+
"flatModuleId": "@angular/cdk/a11y",
11+
"skipTemplateCodegen": true
12+
}
13+
}

src/cdk/bidi/public_api.ts renamed to src/cdk/bidi/bidi-module.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,6 @@ import {DOCUMENT} from '@angular/platform-browser';
1111
import {Dir} from './dir';
1212
import {DIR_DOCUMENT, Directionality} from './directionality';
1313

14-
export {
15-
Directionality,
16-
DIRECTIONALITY_PROVIDER_FACTORY,
17-
DIRECTIONALITY_PROVIDER,
18-
DIR_DOCUMENT,
19-
Direction,
20-
} from './directionality';
21-
export {Dir} from './dir';
2214

2315
@NgModule({
2416
exports: [Dir],

src/cdk/bidi/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
* found in the LICENSE file at https://angular.io/license
77
*/
88

9-
export * from './public_api';
9+
export * from './public-api';

src/cdk/bidi/public-api.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/**
2+
* @license
3+
* Copyright Google Inc. All Rights Reserved.
4+
*
5+
* Use of this source code is governed by an MIT-style license that can be
6+
* found in the LICENSE file at https://angular.io/license
7+
*/
8+
9+
export {
10+
Directionality,
11+
DIRECTIONALITY_PROVIDER_FACTORY,
12+
DIRECTIONALITY_PROVIDER,
13+
DIR_DOCUMENT,
14+
Direction,
15+
} from './directionality';
16+
export {Dir} from './dir';
17+
export * from './bidi-module';
18+

src/cdk/bidi/tsconfig-build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": "../tsconfig-build",
33
"files": [
4-
"public_api.ts"
4+
"public-api.ts"
55
],
66
"angularCompilerOptions": {
77
"annotateForClosureCompiler": true,

src/cdk/bidi/tsconfig-es5.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"extends": "../tsconfig-es5",
3+
"files": [
4+
"public-api.ts"
5+
],
6+
"angularCompilerOptions": {
7+
"annotateForClosureCompiler": true,
8+
"strictMetadataEmit": true,
9+
"flatModuleOutFile": "index.js",
10+
"flatModuleId": "@angular/cdk/bidi",
11+
"skipTemplateCodegen": true
12+
}
13+
}

0 commit comments

Comments
 (0)