| Index: gulpfile.js |
| =================================================================== |
| --- a/gulpfile.js |
| +++ b/gulpfile.js |
| @@ -13,30 +13,17 @@ |
| * GNU General Public License for more details. |
| * |
| * You should have received a copy of the GNU General Public License |
| * along with website-defaults. If not, see <http://www.gnu.org/licenses/>. |
| */ |
| const gulp = require("gulp"); |
| const sass = require("gulp-sass"); |
| -const connect = require("gulp-connect"); |
| - |
| -gulp.task("connect", function() |
| -{ |
| - connect.server({ |
| - root: "./demo/" |
| - }); |
| -}); |
| gulp.task("scss", function () |
| { |
| return gulp.src("./scss/main.scss") |
| .pipe(sass().on("error", sass.logError)) |
| - .pipe(gulp.dest("./demo/css/")); |
| + .pipe(gulp.dest("./static/css/")); |
| }); |
| -gulp.task("watch", function () |
| -{ |
| - gulp.watch("scss/*.scss", ["scss"]); |
| -}); |
| - |
| -gulp.task("default", ["scss", "connect", "watch"]); |
| +gulp.task("default", ["scss"]); |