Skip to content

Commit 580338b

Browse files
committed
#119 fix in grunt
1 parent c6eb2ba commit 580338b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Gruntfile.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@ module.exports = function(grunt) {
66
dist: {
77
options: {
88
patterns: [
9-
{
10-
match: 'VERSION',
11-
replacement: '<%= pkg.version %>'
12-
},
139
{
1410
match: 'HEAD',
15-
replacement: grunt.file.read(buildDir + '/_head.html')
11+
replacement: grunt.file.read('html/_head.html')
1612
},
1713
{
1814
match: 'TAIL',
19-
replacement: grunt.file.read(buildDir + '/_tail.html')
20-
}
15+
replacement: grunt.file.read('html/_tail.html')
16+
},
17+
{
18+
match: 'VERSION',
19+
replacement: '<%= pkg.version %>'
20+
},
2121
]
2222
},
2323
files: [

0 commit comments

Comments
 (0)