| Index: polymer_0.5.4/bower_components/web-animations-js/target-config.js
|
| diff --git a/polymer_0.5.0/bower_components/web-animations-js/target-config.js b/polymer_0.5.4/bower_components/web-animations-js/target-config.js
|
| similarity index 76%
|
| copy from polymer_0.5.0/bower_components/web-animations-js/target-config.js
|
| copy to polymer_0.5.4/bower_components/web-animations-js/target-config.js
|
| index 7b6de4e545898c6b3917ace116c368cac28e4cf3..b42139e6c95abb796fe70210c202982cbb42928d 100644
|
| --- a/polymer_0.5.0/bower_components/web-animations-js/target-config.js
|
| +++ b/polymer_0.5.4/bower_components/web-animations-js/target-config.js
|
| @@ -3,7 +3,7 @@
|
| var scopeSrc = [
|
| 'src/scope.js'];
|
|
|
| - var minifillSrc = [
|
| + var webAnimations1Src = [
|
| 'src/animation-node.js',
|
| 'src/effect.js',
|
| 'src/property-interpolation.js',
|
| @@ -29,7 +29,7 @@
|
| 'src/property-names.js',
|
| ];
|
|
|
| - var liteMinifillSrc = [
|
| + var liteWebAnimations1Src = [
|
| 'src/animation-node.js',
|
| 'src/effect.js',
|
| 'src/property-interpolation.js',
|
| @@ -53,16 +53,18 @@
|
|
|
| var sharedSrc = [
|
| 'src/timing-utilities.js',
|
| - 'src/normalize-keyframes.js'];
|
| + 'src/normalize-keyframes.js',
|
| + 'src/deprecation.js',
|
| + ];
|
|
|
| - var maxifillSrc = [
|
| + var webAnimationsNextSrc = [
|
| 'src/timeline.js',
|
| - 'src/maxifill-player.js',
|
| + 'src/web-animations-next-player.js',
|
| 'src/animation-constructor.js',
|
| 'src/effect-callback.js',
|
| 'src/group-constructors.js'];
|
|
|
| - var minifillTest = [
|
| + var webAnimations1Test = [
|
| 'test/js/animation-node.js',
|
| 'test/js/apply-preserving-inline-style.js',
|
| 'test/js/box-handler.js',
|
| @@ -79,7 +81,7 @@
|
| 'test/js/timing.js',
|
| 'test/js/transform-handler.js'];
|
|
|
| - var maxifillTest = minifillTest.concat(
|
| + var webAnimationsNextTest = webAnimations1Test.concat(
|
| 'test/js/animation-constructor.js',
|
| 'test/js/effect-callback.js',
|
| 'test/js/group-constructors.js',
|
| @@ -92,25 +94,25 @@
|
| 'web-animations': {
|
| scopeSrc: scopeSrc,
|
| sharedSrc: sharedSrc,
|
| - minifillSrc: minifillSrc,
|
| - maxifillSrc: [],
|
| - src: scopeSrc.concat(sharedSrc).concat(minifillSrc),
|
| - test: minifillTest,
|
| + webAnimations1Src: webAnimations1Src,
|
| + webAnimationsNextSrc: [],
|
| + src: scopeSrc.concat(sharedSrc).concat(webAnimations1Src),
|
| + test: webAnimations1Test,
|
| },
|
| 'web-animations-next': {
|
| scopeSrc: scopeSrc,
|
| sharedSrc: sharedSrc,
|
| - minifillSrc: minifillSrc,
|
| - maxifillSrc: maxifillSrc,
|
| - src: scopeSrc.concat(sharedSrc).concat(minifillSrc).concat(maxifillSrc),
|
| - test: maxifillTest,
|
| + webAnimations1Src: webAnimations1Src,
|
| + webAnimationsNextSrc: webAnimationsNextSrc,
|
| + src: scopeSrc.concat(sharedSrc).concat(webAnimations1Src).concat(webAnimationsNextSrc),
|
| + test: webAnimationsNextTest,
|
| },
|
| 'web-animations-next-lite': {
|
| scopeSrc: scopeSrc,
|
| sharedSrc: sharedSrc,
|
| - minifillSrc: liteMinifillSrc,
|
| - maxifillSrc: maxifillSrc,
|
| - src: scopeSrc.concat(sharedSrc).concat(liteMinifillSrc).concat(maxifillSrc),
|
| + webAnimations1Src: liteWebAnimations1Src,
|
| + webAnimationsNextSrc: webAnimationsNextSrc,
|
| + src: scopeSrc.concat(sharedSrc).concat(liteWebAnimations1Src).concat(webAnimationsNextSrc),
|
| test: [],
|
| },
|
| };
|
|
|