Skip to content

Commit

Permalink
Put source files from top level dir to dir ./src
Browse files Browse the repository at this point in the history
  • Loading branch information
nakupanda committed Jul 10, 2014
1 parent 80ffe19 commit feb324e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ var gulp = require("gulp"),


gulp.task("less", function() {
gulp.src("less/bootstrap-dialog.less")
gulp.src("src/less/bootstrap-dialog.less")
.pipe(gulp.dest("dist/less"))
.pipe(less({
paths: [path.join(__dirname, "less", "includes")]
Expand All @@ -28,13 +28,13 @@ gulp.task("less", function() {
});

gulp.task("lint", function() {
gulp.src(["js/bootstrap-dialog.js"])
gulp.src(["src/js/bootstrap-dialog.js"])
.pipe(eslint())
.pipe(eslint.format());
});

gulp.task("dist", ["clean", "less"], function() {
gulp.src(["js/bootstrap-dialog.js"])
gulp.src(["src/js/bootstrap-dialog.js"])
.pipe(gulp.dest("dist/js"))
.pipe(gulp.dest("examples/assets/bootstrap-dialog/js"))
.pipe(rename("bootstrap-dialog.min.js"))
Expand Down

0 comments on commit feb324e

Please sign in to comment.