Skip to content

Commit

Permalink
Moved to docs folder for github publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
SpencerPark committed Jan 2, 2017
1 parent fe9ecdf commit d29d93f
Show file tree
Hide file tree
Showing 10 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@

node_modules/
.idea/
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ gulp.task("build", ["install assets", "compile wiki"], function () {
.pipe(tsProject())
.js
.pipe(webpack(require('./webpack.config.js')(false)))
.pipe(gulp.dest("dist/"));
.pipe(gulp.dest("docs/"));
});

gulp.task("install assets", function () {
return gulp.src('assets/**/*')
.pipe(gulp.dest('dist/public/'));
.pipe(gulp.dest('docs/public/'));
});

gulp.task("compile wiki", function () {
return gulp.src('src/Wiki/pages/**/*.md')
.pipe(loadWiki())
.pipe(gulp.dest("dist/wiki/"));
.pipe(gulp.dest("docs/wiki/"));
});

0 comments on commit d29d93f

Please sign in to comment.