Update deps, change SCSS task

This commit is contained in:
Matthew Ross 2017-01-08 11:58:12 -05:00
parent 824c968c5b
commit 8866895570
2 changed files with 18 additions and 15 deletions

View File

@ -31,6 +31,7 @@ let gulp = require('gulp'),
neat: 'node_modules/bourbon-neat/app/assets/stylesheets', neat: 'node_modules/bourbon-neat/app/assets/stylesheets',
scss_base: 'node_modules/scss-base/src', scss_base: 'node_modules/scss-base/src',
chartist: 'node_modules/chartist/dist/scss', chartist: 'node_modules/chartist/dist/scss',
normalize: require('node-normalize-scss').includePaths,
tests_app: 'test/app/**/*.spec.js', tests_app: 'test/app/**/*.spec.js',
tests_api: 'test/api/**/*.php', tests_api: 'test/api/**/*.php',
@ -92,7 +93,8 @@ gulp.task('scss', () => {
paths.bourbon, paths.bourbon,
paths.neat, paths.neat,
paths.scss_base, paths.scss_base,
paths.chartist paths.chartist,
paths.normalize
] ]
})) }))
.pipe(concat('styles.css')) .pipe(concat('styles.css'))

View File

@ -27,14 +27,14 @@
}, },
"homepage": "https://github.com/kiswa/TaskBoard#readme", "homepage": "https://github.com/kiswa/TaskBoard#readme",
"devDependencies": { "devDependencies": {
"@angular/common": "2.4.1", "@angular/common": "2.4.2",
"@angular/compiler": "2.4.1", "@angular/compiler": "2.4.2",
"@angular/core": "2.4.1", "@angular/core": "2.4.2",
"@angular/forms": "2.4.1", "@angular/forms": "2.4.2",
"@angular/http": "2.4.1", "@angular/http": "2.4.2",
"@angular/platform-browser": "2.4.1", "@angular/platform-browser": "2.4.2",
"@angular/platform-browser-dynamic": "2.4.1", "@angular/platform-browser-dynamic": "2.4.2",
"@angular/router": "3.4.1", "@angular/router": "3.4.2",
"@types/chartist": "^0.9.34", "@types/chartist": "^0.9.34",
"@types/core-js": "^0.9.35", "@types/core-js": "^0.9.35",
"bourbon": "^4.2.7", "bourbon": "^4.2.7",
@ -60,20 +60,21 @@
"gulp-sass": "^3.0.0", "gulp-sass": "^3.0.0",
"gulp-scss-lint": "^0.4.0", "gulp-scss-lint": "^0.4.0",
"gulp-tslint": "^7.0.1", "gulp-tslint": "^7.0.1",
"gulp-typescript": "^3.1.3", "gulp-typescript": "^3.1.4",
"gulp-uglify": "^2.0.0", "gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.8", "gulp-util": "^3.0.8",
"merge-stream": "^1.0.0", "merge-stream": "^1.0.1",
"mock-browser": "^0.92.12", "mock-browser": "^0.92.12",
"ng2-dragula": "^1.2.2", "ng2-dragula": "^1.2.2",
"node-normalize-scss": "^1.4.0",
"reflect-metadata": "^0.1.9", "reflect-metadata": "^0.1.9",
"rxjs": "5.0.2", "rxjs": "5.0.3",
"scss-base": "^1.1.7", "scss-base": "^1.2.2",
"systemjs": "0.19.41", "systemjs": "0.19.41",
"systemjs-builder": "0.15.34", "systemjs-builder": "0.15.34",
"touch": "^1.0.0", "touch": "^1.0.0",
"tslint": "^4.2.0", "tslint": "^4.3.1",
"typescript": "^2.1.4", "typescript": "^2.1.4",
"zone.js": "^0.7.2" "zone.js": "^0.7.4"
} }
} }