@@ -77,7 +77,7 @@ module.exports = (src, dest, preview) => () => {
77
77
. pipe ( concat ( 'js/site.js' ) )
78
78
. pipe ( gulpif (
79
79
! preview ,
80
- hash ( { template : '<%= name %>-<%= hash %><%= ext %>' , hashLength : 10 , version : 'prod-35' } ) ) )
80
+ hash ( { template : '<%= name %>-<%= hash %><%= ext %>' } ) ) )
81
81
. pipe ( vfs . dest ( dest ) )
82
82
. pipe ( gulpif ( ! preview , hash . manifest ( 'assets-manifest.json' , { append : true } ) ) )
83
83
. pipe ( vfs . dest ( dest ) ) ,
@@ -89,7 +89,7 @@ module.exports = (src, dest, preview) => () => {
89
89
? through ( ) : uglify ( { output : { comments : / ^ ! / } } ) )
90
90
. pipe ( gulpif (
91
91
! preview ,
92
- hash ( { template : '<%= name %>-<%= hash %><%= ext %>' , hashLength : 10 , version : 'prod-35' } ) ) )
92
+ hash ( { template : '<%= name %>-<%= hash %><%= ext %>' } ) ) )
93
93
. pipe ( vfs . dest ( dest ) )
94
94
. pipe ( gulpif ( ! preview , hash . manifest ( 'assets-manifest.json' , { append : true } ) ) )
95
95
. pipe ( vfs . dest ( dest ) ) ,
@@ -98,7 +98,7 @@ module.exports = (src, dest, preview) => () => {
98
98
. pipe ( map ( ( file , enc , next ) => next ( null , Object . assign ( file , { extname : '' } , { extname : '.js' } ) ) ) )
99
99
. pipe ( gulpif (
100
100
! preview ,
101
- hash ( { template : '<%= name %>-<%= hash %><%= ext %>' , hashLength : 10 , version : 'prod-35' } ) ) )
101
+ hash ( { template : '<%= name %>-<%= hash %><%= ext %>' } ) ) )
102
102
. pipe ( vfs . dest ( dest ) )
103
103
. pipe ( gulpif ( ! preview , hash . manifest ( 'assets-manifest.json' , { append : true } ) ) )
104
104
. pipe ( vfs . dest ( dest ) ) ,
@@ -110,7 +110,7 @@ module.exports = (src, dest, preview) => () => {
110
110
. pipe ( postcss ( ( file ) => ( { plugins : postcssPlugins , options : { file } } ) ) )
111
111
. pipe ( gulpif (
112
112
! preview ,
113
- hash ( { template : '<%= name %>-<%= hash %><%= ext %>' , hashLength : 10 , version : 'prod-35' } ) ) )
113
+ hash ( { template : '<%= name %>-<%= hash %><%= ext %>' } ) ) )
114
114
. pipe ( vfs . dest ( dest ) )
115
115
. pipe ( gulpif ( ! preview , hash . manifest ( 'assets-manifest.json' , { append : true } ) ) )
116
116
. pipe ( vfs . dest ( dest ) ) ,
0 commit comments