Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
glen-84 committed Feb 6, 2017
1 parent fe328dc commit 5746f68
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
11 changes: 6 additions & 5 deletions gulpfile.babel.js → gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import gulp from "gulp";
import sourcemaps from "gulp-sourcemaps";
import sass from "gulp-sass";
import autoprefixer from "gulp-autoprefixer";
import browserSync from "browser-sync";
const gulp = require("gulp");
const sourcemaps = require("gulp-sourcemaps");
const sass = require("gulp-sass");
const autoprefixer = require("gulp-autoprefixer");
const browserSync = require("browser-sync");

let bs = browserSync.create("bs-server");

Expand All @@ -28,6 +28,7 @@ gulp.task("build-css", () => {

gulp.task("serve", ["build-css"], () => {
bs.init({
open: false,
server: {
baseDir: "dist"
}
Expand Down
13 changes: 6 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
{
"devDependencies": {
"babel": "^5.8.23",
"bootstrap": "git://github.com/twbs/bootstrap.git#v4.0.0-alpha",
"browser-sync": "^2.9.3",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^3.0.2",
"gulp-sass": "^2.1.0-beta",
"gulp-sourcemaps": "^1.5.2"
"bootstrap": "^4.0.0-alpha.6",
"browser-sync": "^2.18.7",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.1",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.4.1"
}
}

0 comments on commit 5746f68

Please sign in to comment.