diff --git a/gulpfile.js b/gulpfile.js index c41f72a..39d16a6 100755 --- a/gulpfile.js +++ b/gulpfile.js @@ -76,7 +76,12 @@ gulp.task('demo', function() { .pipe(gulp.dest('build/demo')) }); -gulp.task('build', ['clean', 'styles', 'scripts', 'images', 'demo'], function() { +gulp.task('dapps', function() { + gulp.src(['src/dapps/**/*']) + .pipe(gulp.dest('build/dapps')) +}); + +gulp.task('build', ['clean', 'styles', 'scripts', 'images', 'demo', 'dapps'], function() { gulp.src([ 'src/css/main.css' diff --git a/src/dapps/wallet/index.html b/src/dapps/wallet/index.html new file mode 100644 index 0000000..1e9ad3d --- /dev/null +++ b/src/dapps/wallet/index.html @@ -0,0 +1 @@ +wallet \ No newline at end of file