Skip to content

Commit

Permalink
build(): fix source maps (#7403)
Browse files Browse the repository at this point in the history
  • Loading branch information
kara authored Oct 3, 2017
1 parent 6ab275c commit f3b0b54
Show file tree
Hide file tree
Showing 219 changed files with 1,085 additions and 212 deletions.
10 changes: 0 additions & 10 deletions src/cdk/a11y/public_api.ts → src/cdk/a11y/a11y-module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,3 @@ import {CdkMonitorFocus, FOCUS_MONITOR_PROVIDER} from './focus-monitor';
]
})
export class A11yModule {}

export * from './activedescendant-key-manager';
export * from './aria-describer';
export * from './fake-mousedown';
export * from './focus-key-manager';
export * from './focus-trap';
export * from './interactivity-checker';
export * from './list-key-manager';
export * from './live-announcer';
export * from './focus-monitor';
2 changes: 1 addition & 1 deletion src/cdk/a11y/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
* found in the LICENSE file at https://angular.io/license
*/

export * from './public_api';
export * from './public-api';
18 changes: 18 additions & 0 deletions src/cdk/a11y/public-api.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/**
* @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
*/

export * from './activedescendant-key-manager';
export * from './aria-describer';
export * from './fake-mousedown';
export * from './focus-key-manager';
export * from './focus-trap';
export * from './interactivity-checker';
export * from './list-key-manager';
export * from './live-announcer';
export * from './focus-monitor';
export * from './a11y-module';
2 changes: 1 addition & 1 deletion src/cdk/a11y/tsconfig-build.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "../tsconfig-build",
"files": [
"public_api.ts"
"public-api.ts"
],
"angularCompilerOptions": {
"annotateForClosureCompiler": true,
Expand Down
13 changes: 13 additions & 0 deletions src/cdk/a11y/tsconfig-es5.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"extends": "../tsconfig-es5",
"files": [
"public-api.ts"
],
"angularCompilerOptions": {
"annotateForClosureCompiler": true,
"strictMetadataEmit": true,
"flatModuleOutFile": "index.js",
"flatModuleId": "@angular/cdk/a11y",
"skipTemplateCodegen": true
}
}
8 changes: 0 additions & 8 deletions src/cdk/bidi/public_api.ts → src/cdk/bidi/bidi-module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,6 @@ import {DOCUMENT} from '@angular/platform-browser';
import {Dir} from './dir';
import {DIR_DOCUMENT, Directionality} from './directionality';

export {
Directionality,
DIRECTIONALITY_PROVIDER_FACTORY,
DIRECTIONALITY_PROVIDER,
DIR_DOCUMENT,
Direction,
} from './directionality';
export {Dir} from './dir';

@NgModule({
exports: [Dir],
Expand Down
2 changes: 1 addition & 1 deletion src/cdk/bidi/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
* found in the LICENSE file at https://angular.io/license
*/

export * from './public_api';
export * from './public-api';
18 changes: 18 additions & 0 deletions src/cdk/bidi/public-api.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/**
* @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
*/

export {
Directionality,
DIRECTIONALITY_PROVIDER_FACTORY,
DIRECTIONALITY_PROVIDER,
DIR_DOCUMENT,
Direction,
} from './directionality';
export {Dir} from './dir';
export * from './bidi-module';

2 changes: 1 addition & 1 deletion src/cdk/bidi/tsconfig-build.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "../tsconfig-build",
"files": [
"public_api.ts"
"public-api.ts"
],
"angularCompilerOptions": {
"annotateForClosureCompiler": true,
Expand Down
13 changes: 13 additions & 0 deletions src/cdk/bidi/tsconfig-es5.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"extends": "../tsconfig-es5",
"files": [
"public-api.ts"
],
"angularCompilerOptions": {
"annotateForClosureCompiler": true,
"strictMetadataEmit": true,
"flatModuleOutFile": "index.js",
"flatModuleId": "@angular/cdk/bidi",
"skipTemplateCodegen": true
}
}
2 changes: 1 addition & 1 deletion src/cdk/coercion/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
* found in the LICENSE file at https://angular.io/license
*/

export * from './public_api';
export * from './public-api';
File renamed without changes.
2 changes: 1 addition & 1 deletion src/cdk/coercion/tsconfig-build.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "../tsconfig-build",
"files": [
"public_api.ts"
"public-api.ts"
],
"angularCompilerOptions": {
"annotateForClosureCompiler": true,
Expand Down
13 changes: 13 additions & 0 deletions src/cdk/coercion/tsconfig-es5.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"extends": "../tsconfig-es5",
"files": [
"public-api.ts"
],
"angularCompilerOptions": {
"annotateForClosureCompiler": true,
"strictMetadataEmit": true,
"flatModuleOutFile": "index.js",
"flatModuleId": "@angular/cdk/coercion",
"skipTemplateCodegen": true
}
}
2 changes: 1 addition & 1 deletion src/cdk/collections/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
* found in the LICENSE file at https://angular.io/license
*/

export * from './public_api';
export * from './public-api';
File renamed without changes.
2 changes: 1 addition & 1 deletion src/cdk/collections/tsconfig-build.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "../tsconfig-build",
"files": [
"public_api.ts"
"public-api.ts"
],
"angularCompilerOptions": {
"annotateForClosureCompiler": true,
Expand Down
13 changes: 13 additions & 0 deletions src/cdk/collections/tsconfig-es5.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"extends": "../tsconfig-es5",
"files": [
"public-api.ts"
],
"angularCompilerOptions": {
"annotateForClosureCompiler": true,
"strictMetadataEmit": true,
"flatModuleOutFile": "index.js",
"flatModuleId": "@angular/cdk/collections",
"skipTemplateCodegen": true
}
}
2 changes: 1 addition & 1 deletion src/cdk/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
* found in the LICENSE file at https://angular.io/license
*/

export * from './public_api';
export * from './public-api';
2 changes: 1 addition & 1 deletion src/cdk/keycodes/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
* found in the LICENSE file at https://angular.io/license
*/

export * from './public_api';
export * from './public-api';
File renamed without changes.
2 changes: 1 addition & 1 deletion src/cdk/keycodes/tsconfig-build.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "../tsconfig-build",
"files": [
"public_api.ts"
"public-api.ts"
],
"angularCompilerOptions": {
"annotateForClosureCompiler": true,
Expand Down
13 changes: 13 additions & 0 deletions src/cdk/keycodes/tsconfig-es5.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"extends": "../tsconfig-es5",
"files": [
"public-api.ts"
],
"angularCompilerOptions": {
"annotateForClosureCompiler": true,
"strictMetadataEmit": true,
"flatModuleOutFile": "index.js",
"flatModuleId": "@angular/cdk/keycodes",
"skipTemplateCodegen": true
}
}
2 changes: 1 addition & 1 deletion src/cdk/layout/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
* 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
*/
export * from './public_api';
export * from './public-api';
File renamed without changes.
2 changes: 1 addition & 1 deletion src/cdk/layout/tsconfig-build.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "../tsconfig-build",
"files": [
"public_api.ts"
"public-api.ts"
],
"angularCompilerOptions": {
"annotateForClosureCompiler": true,
Expand Down
13 changes: 13 additions & 0 deletions src/cdk/layout/tsconfig-es5.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"extends": "../tsconfig-es5",
"files": [
"public-api.ts"
],
"angularCompilerOptions": {
"annotateForClosureCompiler": true,
"strictMetadataEmit": true,
"flatModuleOutFile": "index.js",
"flatModuleId": "@angular/cdk/layout",
"skipTemplateCodegen": true
}
}
2 changes: 1 addition & 1 deletion src/cdk/observers/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
* found in the LICENSE file at https://angular.io/license
*/

export * from './public_api';
export * from './public-api';
File renamed without changes.
2 changes: 1 addition & 1 deletion src/cdk/observers/tsconfig-build.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "../tsconfig-build",
"files": [
"public_api.ts"
"public-api.ts"
],
"angularCompilerOptions": {
"annotateForClosureCompiler": true,
Expand Down
13 changes: 13 additions & 0 deletions src/cdk/observers/tsconfig-es5.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"extends": "../tsconfig-es5",
"files": [
"public-api.ts"
],
"angularCompilerOptions": {
"annotateForClosureCompiler": true,
"strictMetadataEmit": true,
"flatModuleOutFile": "index.js",
"flatModuleId": "@angular/cdk/observers",
"skipTemplateCodegen": true
}
}
2 changes: 1 addition & 1 deletion src/cdk/overlay/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
* found in the LICENSE file at https://angular.io/license
*/

export * from './public_api';
export * from './public-api';
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* 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, Provider} from '@angular/core';
import {PortalModule} from '@angular/cdk/portal';
import {Overlay} from './overlay';
Expand All @@ -18,7 +19,6 @@ import {OverlayPositionBuilder} from './position/overlay-position-builder';
import {OVERLAY_CONTAINER_PROVIDER} from './overlay-container';
import {ScrollStrategyOptions} from './scroll/scroll-strategy-options';


export const OVERLAY_PROVIDERS: Provider[] = [
Overlay,
OverlayPositionBuilder,
Expand All @@ -34,22 +34,3 @@ export const OVERLAY_PROVIDERS: Provider[] = [
providers: [OVERLAY_PROVIDERS, ScrollStrategyOptions],
})
export class OverlayModule {}


export * from './overlay-config';
export {Overlay} from './overlay';
export {OverlayContainer} from './overlay-container';
export {FullscreenOverlayContainer} from './fullscreen-overlay-container';
export {OverlayRef} from './overlay-ref';
export {ConnectedOverlayDirective, OverlayOrigin} from './overlay-directives';
export {ViewportRuler} from '@angular/cdk/scrolling';
export {ComponentType} from '@angular/cdk/portal';

export * from './position/connected-position';
export * from './scroll/index';

// Export pre-defined position strategies and interface to build custom ones.
export {PositionStrategy} from './position/position-strategy';
export {GlobalPositionStrategy} from './position/global-position-strategy';
export {ConnectedPositionStrategy} from './position/connected-position-strategy';
export {VIEWPORT_RULER_PROVIDER} from '@angular/cdk/scrolling';
26 changes: 26 additions & 0 deletions src/cdk/overlay/public-api.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/**
* @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
*/

export * from './overlay-config';
export {Overlay} from './overlay';
export {OverlayContainer} from './overlay-container';
export {FullscreenOverlayContainer} from './fullscreen-overlay-container';
export {OverlayRef} from './overlay-ref';
export {ConnectedOverlayDirective, OverlayOrigin} from './overlay-directives';
export {ViewportRuler} from '@angular/cdk/scrolling';
export {ComponentType} from '@angular/cdk/portal';

export * from './position/connected-position';
export * from './scroll/index';
export * from './overlay-module';

// Export pre-defined position strategies and interface to build custom ones.
export {PositionStrategy} from './position/position-strategy';
export {GlobalPositionStrategy} from './position/global-position-strategy';
export {ConnectedPositionStrategy} from './position/connected-position-strategy';
export {VIEWPORT_RULER_PROVIDER} from '@angular/cdk/scrolling';
2 changes: 1 addition & 1 deletion src/cdk/overlay/tsconfig-build.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "../tsconfig-build",
"files": [
"public_api.ts"
"public-api.ts"
],
"angularCompilerOptions": {
"annotateForClosureCompiler": true,
Expand Down
13 changes: 13 additions & 0 deletions src/cdk/overlay/tsconfig-es5.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"extends": "../tsconfig-es5",
"files": [
"public-api.ts"
],
"angularCompilerOptions": {
"annotateForClosureCompiler": true,
"strictMetadataEmit": true,
"flatModuleOutFile": "index.js",
"flatModuleId": "@angular/cdk/overlay",
"skipTemplateCodegen": true
}
}
2 changes: 1 addition & 1 deletion src/cdk/platform/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
* found in the LICENSE file at https://angular.io/license
*/

export * from './public_api';
export * from './public-api';
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,3 @@ import {Platform} from './platform';
providers: [Platform]
})
export class PlatformModule {}


export * from './platform';
export * from './features';
11 changes: 11 additions & 0 deletions src/cdk/platform/public-api.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/**
* @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
*/

export * from './platform';
export * from './features';
export * from './platform-module';
Loading

0 comments on commit f3b0b54

Please sign in to comment.