Skip to content

Commit 195b863

Browse files
matskochuckjaz
authored andcommitted
refactor(platform-browser): move platform-browser/animations to animations/browser (angular#15043)
1 parent 75147ff commit 195b863

File tree

58 files changed

+210
-84
lines changed

Some content is hidden

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

58 files changed

+210
-84
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"presets": ["es2015"],
3+
"plugins": [["transform-es2015-modules-umd", {
4+
"globals": {
5+
},
6+
"exactGlobals": true
7+
}]],
8+
"moduleId": "@angular/animations/browser"
9+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2+
{
3+
"presets": ["es2015"],
4+
"plugins": [["transform-es2015-modules-umd", {
5+
"globals": {
6+
"@angular/animations": "ng.animations"
7+
},
8+
"exactGlobals": true
9+
}]],
10+
"moduleId": "@angular/animations/browser/testing"
11+
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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+
// This file is not used to build this module. It is only used during editing
10+
// by the TypeScript language serivce and during build for verifcation. `ngc`
11+
// replaces this file with production index.ts when it rewrites private symbol
12+
// names.
13+
14+
export * from './src/browser';
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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+
/**
10+
* @module
11+
* @description
12+
* Entry point for all public APIs of the animation package.
13+
*/
14+
export * from './src/browser';

packages/platform-browser/animations/src/animation_engine.ts renamed to packages/animations/browser/src/animation_engine.ts

File renamed without changes.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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+
/**
10+
* @module
11+
* @description
12+
* Entry point for all animation APIs of the animation browser package.
13+
*/
14+
export {AnimationDriver} from './render/animation_driver';
15+
export * from './private_export';
File renamed without changes.

packages/platform-browser/animations/src/dsl/animation_dsl_visitor.ts renamed to packages/animations/browser/src/dsl/animation_dsl_visitor.ts

File renamed without changes.

packages/platform-browser/animations/src/dsl/animation_timeline_instruction.ts renamed to packages/animations/browser/src/dsl/animation_timeline_instruction.ts

File renamed without changes.

packages/platform-browser/animations/src/dsl/animation_timeline_visitor.ts renamed to packages/animations/browser/src/dsl/animation_timeline_visitor.ts

File renamed without changes.

0 commit comments

Comments
 (0)