@@ -77,7 +77,7 @@ module.exports = (src, dest, preview) => () => {
7777 . pipe ( concat ( 'js/site.js' ) )
7878 . pipe ( gulpif (
7979 ! preview ,
80- hash ( { template : '<%= name %>-<%= hash %><%= ext %>' , hashLength : 10 , version : 'prod-35' } ) ) )
80+ hash ( { template : '<%= name %>-<%= hash %><%= ext %>' } ) ) )
8181 . pipe ( vfs . dest ( dest ) )
8282 . pipe ( gulpif ( ! preview , hash . manifest ( 'assets-manifest.json' , { append : true } ) ) )
8383 . pipe ( vfs . dest ( dest ) ) ,
@@ -89,7 +89,7 @@ module.exports = (src, dest, preview) => () => {
8989 ? through ( ) : uglify ( { output : { comments : / ^ ! / } } ) )
9090 . pipe ( gulpif (
9191 ! preview ,
92- hash ( { template : '<%= name %>-<%= hash %><%= ext %>' , hashLength : 10 , version : 'prod-35' } ) ) )
92+ hash ( { template : '<%= name %>-<%= hash %><%= ext %>' } ) ) )
9393 . pipe ( vfs . dest ( dest ) )
9494 . pipe ( gulpif ( ! preview , hash . manifest ( 'assets-manifest.json' , { append : true } ) ) )
9595 . pipe ( vfs . dest ( dest ) ) ,
@@ -98,7 +98,7 @@ module.exports = (src, dest, preview) => () => {
9898 . pipe ( map ( ( file , enc , next ) => next ( null , Object . assign ( file , { extname : '' } , { extname : '.js' } ) ) ) )
9999 . pipe ( gulpif (
100100 ! preview ,
101- hash ( { template : '<%= name %>-<%= hash %><%= ext %>' , hashLength : 10 , version : 'prod-35' } ) ) )
101+ hash ( { template : '<%= name %>-<%= hash %><%= ext %>' } ) ) )
102102 . pipe ( vfs . dest ( dest ) )
103103 . pipe ( gulpif ( ! preview , hash . manifest ( 'assets-manifest.json' , { append : true } ) ) )
104104 . pipe ( vfs . dest ( dest ) ) ,
@@ -110,7 +110,7 @@ module.exports = (src, dest, preview) => () => {
110110 . pipe ( postcss ( ( file ) => ( { plugins : postcssPlugins , options : { file } } ) ) )
111111 . pipe ( gulpif (
112112 ! preview ,
113- hash ( { template : '<%= name %>-<%= hash %><%= ext %>' , hashLength : 10 , version : 'prod-35' } ) ) )
113+ hash ( { template : '<%= name %>-<%= hash %><%= ext %>' } ) ) )
114114 . pipe ( vfs . dest ( dest ) )
115115 . pipe ( gulpif ( ! preview , hash . manifest ( 'assets-manifest.json' , { append : true } ) ) )
116116 . pipe ( vfs . dest ( dest ) ) ,
0 commit comments