diff --git a/gulpfile.js b/gulpfile.js index ff0b264..f6729de 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -31,6 +31,7 @@ let gulp = require('gulp'), neat: 'node_modules/bourbon-neat/app/assets/stylesheets', scss_base: 'node_modules/scss-base/src', chartist: 'node_modules/chartist/dist/scss', + normalize: require('node-normalize-scss').includePaths, tests_app: 'test/app/**/*.spec.js', tests_api: 'test/api/**/*.php', @@ -92,7 +93,8 @@ gulp.task('scss', () => { paths.bourbon, paths.neat, paths.scss_base, - paths.chartist + paths.chartist, + paths.normalize ] })) .pipe(concat('styles.css')) diff --git a/package.json b/package.json index e535324..d14cc09 100644 --- a/package.json +++ b/package.json @@ -27,14 +27,14 @@ }, "homepage": "https://github.com/kiswa/TaskBoard#readme", "devDependencies": { - "@angular/common": "2.4.1", - "@angular/compiler": "2.4.1", - "@angular/core": "2.4.1", - "@angular/forms": "2.4.1", - "@angular/http": "2.4.1", - "@angular/platform-browser": "2.4.1", - "@angular/platform-browser-dynamic": "2.4.1", - "@angular/router": "3.4.1", + "@angular/common": "2.4.2", + "@angular/compiler": "2.4.2", + "@angular/core": "2.4.2", + "@angular/forms": "2.4.2", + "@angular/http": "2.4.2", + "@angular/platform-browser": "2.4.2", + "@angular/platform-browser-dynamic": "2.4.2", + "@angular/router": "3.4.2", "@types/chartist": "^0.9.34", "@types/core-js": "^0.9.35", "bourbon": "^4.2.7", @@ -60,20 +60,21 @@ "gulp-sass": "^3.0.0", "gulp-scss-lint": "^0.4.0", "gulp-tslint": "^7.0.1", - "gulp-typescript": "^3.1.3", + "gulp-typescript": "^3.1.4", "gulp-uglify": "^2.0.0", "gulp-util": "^3.0.8", - "merge-stream": "^1.0.0", + "merge-stream": "^1.0.1", "mock-browser": "^0.92.12", "ng2-dragula": "^1.2.2", + "node-normalize-scss": "^1.4.0", "reflect-metadata": "^0.1.9", - "rxjs": "5.0.2", - "scss-base": "^1.1.7", + "rxjs": "5.0.3", + "scss-base": "^1.2.2", "systemjs": "0.19.41", "systemjs-builder": "0.15.34", "touch": "^1.0.0", - "tslint": "^4.2.0", + "tslint": "^4.3.1", "typescript": "^2.1.4", - "zone.js": "^0.7.2" + "zone.js": "^0.7.4" } }