Created
October 24, 2016 04:03
-
-
Save eghojansu/cb67d125f26de702edca75b430491570 to your computer and use it in GitHub Desktop.
Init dev config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root = true | |
[*] | |
indent_style = space | |
indent_size = 4 | |
end_of_line = lf | |
charset = utf-8 | |
trim_trailing_whitespace = true | |
insert_final_newline = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp') | |
var browserSync = require('browser-sync').create() | |
var $ = require('gulp-load-plugins')({ | |
pattern: ['gulp-*', 'gulp.*', 'main-bower-files', 'stream-series'] | |
}) | |
var assetInjector = function(filepath) { | |
if (filepath.slice(-4) === '.css') { | |
return '<link rel="stylesheet" href="{{ \''+filepath.substr(1)+'\'|path }}">' | |
} | |
if (filepath.slice(-3) === '.js') { | |
return '<script src="{{ \''+filepath.substr(1)+'\'|path }}"></script>' | |
} | |
// Use the default transform as fallback: | |
return $.inject.transform.apply($.inject.transform, arguments); | |
} | |
/* configuration ----------------------------------------------------------- */ | |
var browserSyncProxy = 'http://localhost/www/fa/fatfree-bootstrap' | |
/* tasks ------------------------------------------------------------------- */ | |
gulp.task('inject-asset', function() { | |
console.log('injecting asset...') | |
var vendorStyleStream = gulp.src($.mainBowerFiles('**/*.css')) | |
.pipe($.concat('vendor.css')) | |
.pipe(gulp.dest('asset/css')) | |
var vendorScriptStream = gulp.src($.mainBowerFiles('**/*.js')) | |
.pipe($.concat('vendor.js')) | |
.pipe(gulp.dest('asset/js')) | |
var appStream = gulp.src([ | |
'asset/js/*.js', | |
'asset/css/*.css', | |
'!asset/**/vendor.{css,js}', | |
], {read: false}) | |
gulp.src('app/view/layout/*.html') | |
.pipe($.inject($.streamSeries(vendorScriptStream, vendorStyleStream), {name:'bower', transform: assetInjector})) | |
.pipe($.inject($.streamSeries(appStream), {transform: assetInjector})) | |
.pipe(gulp.dest('app/view/layout')) | |
}) | |
gulp.task('copy-fonts', function() { | |
console.log('copying fonts...') | |
gulp.src('bower_components/**/*.{eot,svg,ttf,woff,woff2}') | |
.pipe($.flatten()) | |
.pipe(gulp.dest('asset/fonts')) | |
}) | |
gulp.task('compile-sass', ['copy-fonts'], function() { | |
console.log('compiling sass...') | |
gulp.src('dev/sass/bootstrap.scss') | |
.pipe($.sass({outputStyle: 'compressed'})) | |
.pipe(gulp.dest('asset/css')) | |
gulp.src('dev/sass/style.scss') | |
.pipe($.sass({outputStyle: 'nested'})) | |
.pipe(gulp.dest('asset/css')) | |
}) | |
gulp.task('watch-changes', function() { | |
console.log('watching changes...') | |
browserSync.init({ | |
proxy: browserSyncProxy, | |
browser: ["chrome"], | |
ghostMode: false, | |
notify: false | |
}) | |
gulp.watch('dev/sass/**/*.scss', ['compile-sass']) | |
gulp.watch('bower.json', ['inject-asset']) | |
gulp.watch('app/view/**/*.html').on('change', browserSync.reload) | |
}) | |
gulp.task('default', ['compile-sass', 'inject-asset', 'watch-changes']) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "fatfree-bootstrap", | |
"repository": "https://github.com/eghojansu/fatfree-bootstrap", | |
"license": "MIT", | |
"devDependencies": { | |
"browser-sync": "^2.17.5", | |
"gulp": "^3.9.1", | |
"gulp-concat": "^2.6.0", | |
"gulp-flatten": "^0.3.1", | |
"gulp-inject": "^4.1.0", | |
"gulp-load-plugins": "^1.2.4", | |
"gulp-sass": "^2.3.2", | |
"main-bower-files": "^2.13.1", | |
"stream-series": "^0.1.1" | |
}, | |
"dependencies": {} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment