location of sheetWorkers

This commit is contained in:
Mark
2016-03-06 14:38:33 +01:00
parent 69d6e7f233
commit ceedd970a7
+2 -2
View File
@@ -159,11 +159,11 @@ gulp.task('compileJS', ['lint'], function() {
header: '<script type="text/worker">',
footer: '</script>'
}))
.pipe(gulp.dest('../'));
.pipe(gulp.dest('./'));
});
gulp.task('compile', ['preCompile', 'lint', 'compileJS'], function () {
return gulp.src(['../D&D_5e.html', '../sheetWorkers.js', './components/rollTemplate.html'])
return gulp.src(['../D&D_5e.html', './sheetWorkers.js', './components/rollTemplate.html'])
.pipe(concat('D&D_5e.html'))
.pipe(gulp.dest('../'));
});