@@ -102,31 +102,31 @@ module.exports = function(grunt) {
102102 WEB_ANIMATIONS_TESTING : false
103103 } ;
104104
105- function buildMinifill ( target ) {
105+ function buildWebAnimations1 ( target ) {
106106 var config = targetConfig [ target ] ;
107107 return genTarget ( target ) . concat ( [
108- concat ( config . scopeSrc . concat ( config . sharedSrc ) . concat ( config . minifillSrc ) , 'inter-raw-' + target + '.js' , concatDefines ) ,
108+ concat ( config . scopeSrc . concat ( config . sharedSrc ) . concat ( config . webAnimations1Src ) , 'inter-raw-' + target + '.js' , concatDefines ) ,
109109 guard ( 'inter-raw-' + target + '.js' , 'inter-' + target + '.js' ) ,
110110 compress ( 'inter-' + target + '.js' , target + '.min.js' , concatDefines )
111111 ] ) ;
112112 }
113113
114- function buildMaxifill ( target ) {
114+ function buildWebAnimationsNext ( target ) {
115115 var config = targetConfig [ target ] ;
116116 return genTarget ( target ) . concat ( [
117117 concat ( config . scopeSrc . concat ( config . sharedSrc ) , 'inter-' + target + '-preamble.js' , concatDefines ) ,
118- concat ( config . minifillSrc , 'inter-component-' + target + 'minifill .js' , concatDefines ) ,
119- guard ( 'inter-component-' + target + 'minifill .js' , 'inter-guarded-' + target + '-minifill .js' ) ,
120- concat ( config . maxifillSrc , 'inter-component-' + target + '.js' , concatDefines ) ,
121- concatWithMaps ( [ 'inter-' + target + '-preamble.js' , 'inter-guarded-' + target + '-minifill .js' , 'inter-component-' + target + '.js' ] ,
118+ concat ( config . webAnimations1Src , 'inter-component-' + target + 'web-animations-1 .js' , concatDefines ) ,
119+ guard ( 'inter-component-' + target + 'web-animations-1 .js' , 'inter-guarded-' + target + '-web-animations-1 .js' ) ,
120+ concat ( config . webAnimationsNextSrc , 'inter-component-' + target + '.js' , concatDefines ) ,
121+ concatWithMaps ( [ 'inter-' + target + '-preamble.js' , 'inter-guarded-' + target + '-web-animations-1 .js' , 'inter-component-' + target + '.js' ] ,
122122 'inter-' + target + '.js' ) ,
123123 compress ( 'inter-' + target + '.js' , target + '.min.js' , concatDefines )
124124 ] ) ;
125125 }
126126
127- grunt . registerTask ( 'web-animations' , buildMinifill ( 'web-animations' ) ) ;
128- grunt . registerTask ( 'web-animations-next' , buildMaxifill ( 'web-animations-next' ) ) ;
129- grunt . registerTask ( 'web-animations-next-lite' , buildMaxifill ( 'web-animations-next-lite' ) ) ;
127+ grunt . registerTask ( 'web-animations' , buildWebAnimations1 ( 'web-animations' ) ) ;
128+ grunt . registerTask ( 'web-animations-next' , buildWebAnimationsNext ( 'web-animations-next' ) ) ;
129+ grunt . registerTask ( 'web-animations-next-lite' , buildWebAnimationsNext ( 'web-animations-next-lite' ) ) ;
130130
131131 var testTargets = { 'web-animations' : { } , 'web-animations-next' : { } } ;
132132
0 commit comments