Skip to content

Commit

Permalink
Merge 1af5268 into 75baee3
Browse files Browse the repository at this point in the history
  • Loading branch information
diogenes committed Mar 15, 2019
2 parents 75baee3 + 1af5268 commit 10e2900
Show file tree
Hide file tree
Showing 5 changed files with 392 additions and 123 deletions.
8 changes: 5 additions & 3 deletions gulpfile.js
Expand Up @@ -2,7 +2,7 @@ var gulp = require("gulp"),
include = require('gulp-include'),
coffee = require('gulp-coffee');

gulp.task("default", function() {
gulp.task("default", function(done) {
gulp.src([
'src/widgets/build/widgets.coffee',
'src/support/index.coffee'
Expand All @@ -18,15 +18,15 @@ gulp.task("default", function() {
'src/custom_formatter.coffee',
'src/config_builder.coffee',
'src/scaffold_builder.coffee'
])
], { allowEmpty: true })
.pipe(coffee())
.pipe(gulp.dest("lib/"))

gulp.src([
'src/config.json',
'src/pioneerformat.js',
'src/pioneersummaryformat.js'
])
], { allowEmpty: true })
.pipe(gulp.dest("lib/"))

gulp.src([
Expand All @@ -35,6 +35,8 @@ gulp.task("default", function() {
'src/scaffold/example.json'
])
.pipe(gulp.dest("lib/scaffold"))

done()
});

gulp.task("watch", function() {
Expand Down

0 comments on commit 10e2900

Please sign in to comment.