Added Fetch Image from URL feature + Storm filelocks fixes + bulma inclusion into core

This commit is contained in:
NGPixel
2016-10-16 19:09:43 -04:00
parent 91d524eb06
commit 741a6674af
55 changed files with 3119 additions and 102 deletions
+1 -6
View File
@@ -55,9 +55,6 @@ var paths = {
cssapps_watch: [
'./client/scss/**/*.scss'
],
cssapps_imports: [
'./node_modules/bulma/'
],
fonts: [
'./node_modules/font-awesome/fonts/*-webfont.*',
'!./node_modules/font-awesome/fonts/*-webfont.svg'
@@ -150,9 +147,7 @@ gulp.task("css-libs", function () {
gulp.task("css-app", function () {
return gulp.src(paths.cssapps)
.pipe(plumber())
.pipe(sass({
includePaths: paths.cssapps_imports
}))
.pipe(sass())
.pipe(concat('app.css'))
.pipe(cleanCSS({ keepSpecialComments: 0 }))
.pipe(plumber.stop())