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
/** | |
* unobstrusive browser width detection | |
* | |
* Originally inspired by: http://designedbythomas.co.uk/blog/how-detect-width-web-browser-using-jquery | |
* Original source by https://gist.github.com/highrockmedia/3710930 | |
* Contribution https://gist.github.com/RyanBrackett/6107983 | |
* | |
* Copyright (c) 2013 Sven Schüring | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to deal |
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
<?xml version="1.0" encoding="UTF-8" ?> | |
<project name="sunlix" default="usage" basedir="."> | |
<description> | |
Build file for sunlix.de | |
Content: | |
1. Compile related tasks | |
2. Deploy related tasks | |
3. Clean related tasks |
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
/** | |
* Used modules | |
*/ | |
var gulp = require('gulp'), | |
plugins = require('gulp-load-plugins')(), | |
del = require('del'), | |
vinylPaths = require('vinyl-paths'), | |
merge = require('merge-stream'); |